HomeSort by relevance Sort by last modified time
    Searched refs:DISPATCH (Results 1 - 20 of 20) sorted by null

  /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
DataRecursiveASTVisitor.h 204 /// \brief Recursively visit a template name and dispatch to the
210 /// \brief Recursively visit a template argument and dispatch to the
217 /// \brief Recursively visit a template argument location and dispatch to the
465 #define DISPATCH(NAME, CLASS, VAR) \
488 // If we have a binary expr, dispatch to the subcode of the binop. A smart
521 // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt.
553 DISPATCH(CLASS##Type, CLASS##Type, const_cast<Type *>(T.getTypePtr()));
610 #undef DISPATCH
    [all...]
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
494 // Dispatch to the corresponding WalkUpFrom* function only if the derived
533 // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt.
549 #define DISPATCH(NAME, CLASS, VAR) \
557 #define DISPATCH_STMT(NAME, CLASS, VAR) DISPATCH(NAME, CLASS, VAR)
562 // If we have a binary expr, dispatch to the subcode of the binop. A smart
595 // Top switch stmt: dispatch to TraverseFooStmt for each concrete FooStmt.
620 DISPATCH(CLASS##Type, CLASS##Type, const_cast<Type *>(T.getTypePtr()))
    [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/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...]

Completed in 1494 milliseconds