reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/AST/DataCollection.h
   54     std::is_integral<Type>::value || std::is_enum<Type>::value ||
   54     std::is_integral<Type>::value || std::is_enum<Type>::value ||
   55     std::is_convertible<Type, size_t>::value // for llvm::hash_code
   57 addDataToConsumer(T &DataConsumer, Type Data) {
tools/clang/include/clang/AST/Expr.h
 2025   typedef UnaryOperatorKind Opcode;
tools/clang/include/clang/Sema/Sema.h
 3304                                      UnaryOperatorKind Opc,
 4645   ExprResult CreateBuiltinUnaryOp(SourceLocation OpLoc, UnaryOperatorKind Opc,
 4648                           UnaryOperatorKind Opc, Expr *Input);
10421                                      UnaryOperatorKind Opcode, Expr *Op);
tools/clang/lib/AST/Expr.cpp
 1299 UnaryOperatorKind
tools/clang/lib/AST/StmtProfile.cpp
 1328                                           UnaryOperatorKind &UnaryOp,
 1538     UnaryOperatorKind UnaryOp = UO_Extension;
tools/clang/lib/Analysis/CloneDetection.cpp
  186   template <class Ty> void addData(const Ty &Data) {
tools/clang/lib/Sema/SemaExpr.cpp
 4290   UnaryOperatorKind Opc;
11181       UnaryOperatorKind Opc = UO->getOpcode();
12622 static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
12624   UnaryOperatorKind Opc;
tools/clang/lib/Sema/SemaOverload.cpp
12532 Sema::CreateOverloadedUnaryOp(SourceLocation OpLoc, UnaryOperatorKind Opc,
tools/clang/lib/Sema/SemaPseudoObject.cpp
  221                                     UnaryOperatorKind opcode,
  294                                     UnaryOperatorKind opcode,
  497                                       UnaryOperatorKind opcode,
  940                                             UnaryOperatorKind opcode,
 1561                                          UnaryOperatorKind opcode, Expr *op) {
tools/clang/lib/Sema/SemaTemplate.cpp
 5934     UnaryOperatorKind FirstOpKind;
 5937       UnaryOperatorKind UnOpKind = UnOp->getOpcode();
tools/clang/lib/Sema/TreeTransform.h
13230       UnaryOperatorKind Opc
13277     UnaryOperatorKind Opc
tools/clang/unittests/AST/DataCollectionTest.cpp
   32   template <class T> void addData(const T &Data) {
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>