|
reference, declaration → definition
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/ExprObjC.h 1651 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind,
1665 ObjCBridgeCastKind getBridgeKind() const {
tools/clang/include/clang/Sema/Sema.h 1385 const SemaDiagnosticBuilder &Diag, const T &Value) {
8855 ObjCBridgeCastKind Kind,
8862 ObjCBridgeCastKind Kind,
tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp 199 void rewriteToBridgedCast(CastExpr *E, ObjCBridgeCastKind Kind) {
204 void rewriteToBridgedCast(CastExpr *E, ObjCBridgeCastKind Kind,
tools/clang/lib/Analysis/CloneDetection.cpp 186 template <class Ty> void addData(const Ty &Data) {
tools/clang/lib/Parse/ParseExpr.cpp 2453 ObjCBridgeCastKind Kind;
tools/clang/lib/Sema/SemaExprObjC.cpp 4434 ObjCBridgeCastKind Kind,
4546 ObjCBridgeCastKind Kind,
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>