| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/ |
| CommentVisitor.h | 26 #define DISPATCH(NAME, CLASS) \ 37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS); 48 RetTy visit ## CLASS(PTR(CLASS) C) { DISPATCH(PARENT, PARENT); } 56 #undef DISPATCH
|
| DeclVisitor.h | 35 #define DISPATCH(NAME, CLASS) \ 41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 57 #undef DISPATCH
|
| /external/clang/include/clang/AST/ |
| StmtVisitor.h | 37 #define DISPATCH(NAME, CLASS) \ 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart 47 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator); 48 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator); 49 case BO_Mul: DISPATCH(BinMul, BinaryOperator); 50 case BO_Div: DISPATCH(BinDiv, BinaryOperator); 51 case BO_Rem: DISPATCH(BinRem, BinaryOperator); 52 case BO_Add: DISPATCH(BinAdd, BinaryOperator); 53 case BO_Sub: DISPATCH(BinSub, BinaryOperator); 54 case BO_Shl: DISPATCH(BinShl, BinaryOperator) [all...] |
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /external/mesa3d/src/mapi/glapi/ |
| glapi_nop.c | 28 * No-op dispatch table. 30 * This file defines a special dispatch table which is loaded with no-op 36 * In the past, the dispatch table was loaded with pointers to a single 92 * This is called if the user somehow calls an unassigned GL dispatch function. 108 #define DISPATCH(func, args, msg) nop(#func); 122 /** Return pointer to new dispatch table filled with no-op functions */
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/ |
| StmtVisitor.h | 37 #define DISPATCH(NAME, CLASS) \ 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart 47 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator); 48 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator); 49 case BO_Mul: DISPATCH(BinMul, BinaryOperator); 50 case BO_Div: DISPATCH(BinDiv, BinaryOperator); 51 case BO_Rem: DISPATCH(BinRem, BinaryOperator); 52 case BO_Add: DISPATCH(BinAdd, BinaryOperator); 53 case BO_Sub: DISPATCH(BinSub, BinaryOperator); 54 case BO_Shl: DISPATCH(BinShl, BinaryOperator) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/ |
| StmtVisitor.h | 37 #define DISPATCH(NAME, CLASS) \ 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart 47 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator); 48 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator); 49 case BO_Mul: DISPATCH(BinMul, BinaryOperator); 50 case BO_Div: DISPATCH(BinDiv, BinaryOperator); 51 case BO_Rem: DISPATCH(BinRem, BinaryOperator); 52 case BO_Add: DISPATCH(BinAdd, BinaryOperator); 53 case BO_Sub: DISPATCH(BinSub, BinaryOperator); 54 case BO_Shl: DISPATCH(BinShl, BinaryOperator) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/ |
| StmtVisitor.h | 37 #define DISPATCH(NAME, CLASS) \ 42 // If we have a binary expr, dispatch to the subcode of the binop. A smart 47 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator); 48 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator); 49 case BO_Mul: DISPATCH(BinMul, BinaryOperator); 50 case BO_Div: DISPATCH(BinDiv, BinaryOperator); 51 case BO_Rem: DISPATCH(BinRem, BinaryOperator); 52 case BO_Add: DISPATCH(BinAdd, BinaryOperator); 53 case BO_Sub: DISPATCH(BinSub, BinaryOperator); 54 case BO_Shl: DISPATCH(BinShl, BinaryOperator) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |
| /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| SValVisitor.h | 31 #define DISPATCH(NAME, CLASS) \ 35 // Dispatch to VisitFooVal for each FooVal. 38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); 43 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id); 50 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id); 59 RetTy Visit ## Id(Id V) { DISPATCH(Parent, Id); } 63 RetTy VisitLoc ## Id(loc::Id V) { DISPATCH(Parent, Parent); } 65 RetTy VisitNonLoc ## Id(nonloc::Id V) { DISPATCH(Parent, Parent); } 71 #undef DISPATCH 79 #define DISPATCH(CLASS) [all...] |