/external/clang/include/clang/AST/ |
StmtVisitor.h | 36 #define DISPATCH(NAME, CLASS) \ 41 // If we have a binary expr, dispatch to the subcode of the binop. A smart 46 case BO_PtrMemD: DISPATCH(BinPtrMemD, BinaryOperator); 47 case BO_PtrMemI: DISPATCH(BinPtrMemI, BinaryOperator); 48 case BO_Mul: DISPATCH(BinMul, BinaryOperator); 49 case BO_Div: DISPATCH(BinDiv, BinaryOperator); 50 case BO_Rem: DISPATCH(BinRem, BinaryOperator); 51 case BO_Add: DISPATCH(BinAdd, BinaryOperator); 52 case BO_Sub: DISPATCH(BinSub, BinaryOperator); 53 case BO_Shl: DISPATCH(BinShl, BinaryOperator) [all...] |
TypeVisitor.h | 21 #define DISPATCH(CLASS) \ 70 // Top switch stmt: dispatch to VisitFooType for each FooType. 73 #define TYPE(CLASS, PARENT) case Type::CLASS: DISPATCH(CLASS##Type); 82 DISPATCH(PARENT); \ 91 #undef DISPATCH
|
TypeLocVisitor.h | 22 #define DISPATCH(CLASSNAME) \ 33 case TypeLoc::CLASS: DISPATCH(CLASS##TypeLoc); 43 case TypeLoc::CLASS: DISPATCH(CLASS##TypeLoc); 51 DISPATCH(PARENT); \ 58 #undef DISPATCH
|
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
|
RecursiveASTVisitor.h | 208 /// \brief Recursively visit a template name and dispatch to the 214 /// \brief Recursively visit a template argument and dispatch to the 221 /// \brief Recursively visit a template argument location and dispatch to the 482 // Dispatch to the corresponding WalkUpFrom* function only if the derived 519 // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt. 533 #define DISPATCH(NAME, CLASS, VAR) \ 544 // If we have a binary expr, dispatch to the subcode of the binop. A smart 550 case BO_##NAME: DISPATCH(Bin##NAME, BinaryOperator, S); 558 DISPATCH(Bin##NAME##Assign, CompoundAssignOperator, S); 567 case UO_##NAME: DISPATCH(Unary##NAME, UnaryOperator, S) [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/ |
glapitemp.h | 43 * DISPATCH(func, args, msg) - code to do dispatch of named function. 45 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value 51 * #define DISPATCH(func, args, msg) \ 52 * struct _glapi_table *dispatch = CurrentDispatch; \ 53 * (*dispatch->func) args 54 * #define RETURN DISPATCH(func, args, msg) \ 55 * struct _glapi_table *dispatch = CurrentDispatch; \ 56 * return (*dispatch->func) args 74 #ifndef DISPATCH [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
compute_resource.def | 38 DECL_COMPUTE_RESOURCE(DISPATCH, 1)
|
/external/mesa3d/src/gallium/drivers/r600/ |
compute_resource.def | 38 DECL_COMPUTE_RESOURCE(DISPATCH, 1)
|
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/ |
glapi_dispatch.c | 63 #define DISPATCH(FUNC, ARGS, MESSAGE) \ 73 #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
glapi_nop.c | 28 * No-op dispatch table. 30 * This file defines a special dispatch table which is loaded with no-op 77 * This is called if the user somehow calls an unassigned GL dispatch function. 92 #define DISPATCH(func, args, msg) Warn(#func);
|
/external/mesa3d/src/mapi/glapi/ |
glapi_dispatch.c | 63 #define DISPATCH(FUNC, ARGS, MESSAGE) \ 73 #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
glapi_nop.c | 28 * No-op dispatch table. 30 * This file defines a special dispatch table which is loaded with no-op 77 * This is called if the user somehow calls an unassigned GL dispatch function. 92 #define DISPATCH(func, args, msg) Warn(#func);
|
/external/chromium_org/third_party/mesa/src/src/gallium/targets/libgl-xlib/ |
xlib.c | 127 #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
/external/mesa3d/src/gallium/targets/libgl-xlib/ |
xlib.c | 127 #define DISPATCH(FUNC, ARGS, MESSAGE) \
|
/external/clang/lib/AST/ |
DumpXML.cpp | 62 #define DISPATCH(NAME, CLASS) \ 65 void dispatch(Decl *D) { function in struct:__anon15708::XMLDeclVisitor 71 DISPATCH(dispatch##DERIVED##DeclAttrs, DERIVED##Decl); \ 73 DISPATCH(dispatch##DERIVED##DeclChildren, DERIVED##Decl); \ 74 DISPATCH(dispatch##DERIVED##DeclAsContext, DERIVED##Decl); \ 82 void dispatch##DERIVED##DeclAttrs(DERIVED##Decl *D) { \ 83 DISPATCH(dispatch##BASE##Attrs, BASE); 121 void dispatch(Type *T) { function in struct:__anon15708::XMLTypeVisitor 308 void dispatch(const TemplateArgument &A) { function in struct:__anon15708::XMLDumper 349 void dispatch(const TemplateArgumentLoc &A) { function in struct:__anon15708::XMLDumper 382 void dispatch(Decl *D) { function in struct:__anon15708::XMLDumper 515 void dispatch(CXXCtorInitializer *Init) { function in struct:__anon15708::XMLDumper 884 void dispatch(TypeLoc TL) { function in struct:__anon15708::XMLDumper 888 void dispatch(QualType T) { function in struct:__anon15708::XMLDumper 1028 void dispatch(Stmt *S) { function in struct:__anon15708::XMLDumper [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
GraphicsContextTest.cpp | [all...] |
/external/clang/tools/libclang/ |
RecursiveASTVisitor.h | 201 /// \brief Recursively visit a template name and dispatch to the 207 /// \brief Recursively visit a template argument and dispatch to the 214 /// \brief Recursively visit a template argument location and dispatch to the 448 #define DISPATCH(NAME, CLASS, VAR) \ 470 // If we have a binary expr, dispatch to the subcode of the binop. A smart 501 // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt. 528 case Type::CLASS: DISPATCH(CLASS##Type, CLASS##Type, \ 567 case Decl::CLASS: DISPATCH(CLASS##Decl, CLASS##Decl, D); 574 #undef DISPATCH [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/ |
osmesa.c | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
glxapi.c | 70 #define DISPATCH(FUNC, ARGS, MESSAGE) \ 86 /* Display -> Dispatch caching */ 97 /* search list of display/dispatch pairs for this display */ 1191 * Return size of the GLX dispatch table, in entries, not bytes. 1208 * Initialize all functions in given dispatch table to be no-ops 1214 nop_func *dispatch = (nop_func *) t; local 1218 dispatch[i] = generic_no_op_func; [all...] |
/external/mesa3d/src/mesa/drivers/osmesa/ |
osmesa.c | [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
glxapi.c | 70 #define DISPATCH(FUNC, ARGS, MESSAGE) \ 86 /* Display -> Dispatch caching */ 97 /* search list of display/dispatch pairs for this display */ 1191 * Return size of the GLX dispatch table, in entries, not bytes. 1208 * Initialize all functions in given dispatch table to be no-ops 1214 nop_func *dispatch = (nop_func *) t; local 1218 dispatch[i] = generic_no_op_func; [all...] |