/art/test/105-invoke/ |
info.txt | 1 Tests simple method dispatch.
|
/external/clang/test/CodeGen/ |
2007-01-06-KNR-Proto.c | 4 int svc_register (void (*dispatch) (int)); 6 int svc_register (dispatch) 7 void (*dispatch) ();
|
/frameworks/rs/cpp/ |
RenderScript.cpp | 37 dispatchTable* RS::dispatch = NULL; member in class:RS 57 RS::dispatch->ContextDeinitToClient(mContext); 62 RS::dispatch->ContextDestroy(mContext); 64 RS::dispatch->DeviceDestroy(mDev); 75 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType"); 76 if (RS::dispatch->AllocationGetType == NULL) { 77 ALOGE("Couldn't initialize RS::dispatch->AllocationGetType"); 80 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData"); 81 if (RS::dispatch->TypeGetNativeData == NULL) { 82 ALOGE("Couldn't initialize RS::dispatch->TypeGetNativeData") 440 RS::dispatch = new dispatchTable; member in class:RS [all...] |
rsCppInternal.h | 22 #define tryDispatch(rs, dispatch) \ 24 dispatch; \ 27 #define createDispatch(rs, dispatch) \ 28 rs->getError() == RS_SUCCESS ? dispatch : 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...] |
/external/chromium_org/base/message_loop/ |
message_pump_dispatcher.h | 13 // Dispatcher is used during a nested invocation of Run to dispatch events when 15 // MessageLoop does not dispatch events (or invoke TranslateMessage), rather 16 // every message is passed to Dispatcher's Dispatch method for dispatch. It is 17 // up to the Dispatcher whether or not to dispatch the event. 20 // from Dispatch. 27 virtual bool Dispatch(const NativeEvent& event) = 0;
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
.gitignore | 2 dispatch.h
|
/external/mesa3d/src/mesa/main/ |
.gitignore | 2 dispatch.h
|
/external/e2fsprogs/ext2ed/ |
ext2_com.c | 38 sprintf (buffer,"setoffset %ld",file_system_info.super_block_offset);dispatch (buffer); 39 sprintf (buffer,"settype ext2_super_block");dispatch (buffer); 67 dispatch ("super");dispatch ("group");dispatch ("inode");dispatch ("next");dispatch ("dir"); 69 sprintf (temp,"cd %s",buffer+1);dispatch (temp); 94 sprintf (buffer,"setoffset %ld",file_system_info.first_group_desc_offset);dispatch (buffer); 95 sprintf (buffer,"settype ext2_group_desc");dispatch (buffer) [all...] |
group_com.c | 34 dispatch (buffer); 50 dispatch (buffer); 73 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer); 74 strcpy (buffer,"show");dispatch (buffer); 102 sprintf (buffer,"setoffset %ld",device_offset);dispatch (buffer); 103 strcpy (buffer,"show");dispatch (buffer); 141 sprintf (buffer,"setoffset block %ld",inode_offset);dispatch (buffer); 142 sprintf (buffer,"settype ext2_inode");dispatch (buffer); 155 sprintf (buffer,"setoffset block %ld",block_bitmap_offset);dispatch (buffer); 156 sprintf (buffer,"settype block_bitmap");dispatch (buffer) [all...] |
/external/guava/guava/src/com/google/common/eventbus/ |
AsyncEventBus.java | 25 * dispatch events, allowing dispatch to occur asynchronously. 39 * Creates a new AsyncEventBus that will use {@code executor} to dispatch 43 * @param executor Executor to use to dispatch events. It is the caller's 53 * Creates a new AsyncEventBus that will use {@code executor} to dispatch 56 * @param executor Executor to use to dispatch events. It is the caller's 70 * Dispatch {@code events} in the order they were posted, regardless of 81 dispatch(eventWithHandler.event, eventWithHandler.handler); method 86 * Calls the {@link #executor} to dispatch {@code event} to {@code handler}. 89 protected void dispatch(final Object event, final EventHandler handler) method in class:AsyncEventBus [all...] |
/external/clang/lib/AST/ |
DumpXML.cpp | 62 #define DISPATCH(NAME, CLASS) \ 65 void dispatch(Decl *D) { function in struct:__anon18424::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:__anon18424::XMLTypeVisitor 308 void dispatch(const TemplateArgument &A) { function in struct:__anon18424::XMLDumper 349 void dispatch(const TemplateArgumentLoc &A) { function in struct:__anon18424::XMLDumper 382 void dispatch(Decl *D) { function in struct:__anon18424::XMLDumper 515 void dispatch(CXXCtorInitializer *Init) { function in struct:__anon18424::XMLDumper 884 void dispatch(TypeLoc TL) { function in struct:__anon18424::XMLDumper 888 void dispatch(QualType T) { function in struct:__anon18424::XMLDumper 1028 void dispatch(Stmt *S) { function in struct:__anon18424::XMLDumper [all...] |
/external/clang/test/CodeGenObjC/ |
next-objc-dispatch.m | 2 // RUN: -fobjc-dispatch-method=legacy | \ 6 // RUN: -fobjc-dispatch-method=legacy | \ 10 // RUN: -fobjc-dispatch-method=non-legacy | \ 14 // RUN: -fobjc-dispatch-method=mixed | \ 19 // There are basically four ways that we end up doing message dispatch for the 21 // (1) fragile ABI, legacy dispatch 22 // (2) non-fragile ABI, legacy dispatch 23 // (2) non-fragile ABI, non-legacy dispatch 24 // (2) non-fragile ABI, mixed dispatch 26 // Note that fragile ABI and non-fragile ABI legacy dispatch are not the same [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_dispatch.py | 33 """Tests for dispatch module.""" 41 from mod_pywebsocket import dispatch namespace 53 """A unittest for dispatch module.""" 57 dispatch._normalize_path('/a/b')) 59 dispatch._normalize_path('\\a\\b')) 61 dispatch._normalize_path('/a/c/../b')) 63 dispatch._normalize_path('abc')) 66 converter = dispatch._create_path_to_resource_converter('/a/b') 76 converter = dispatch._create_path_to_resource_converter('a/b') 77 self.assertEqual('/h', converter(dispatch._normalize_path [all...] |
/external/chromium_org/base/mac/ |
libdispatch_task_runner.h | 8 #include <dispatch/dispatch.h> 18 // to PostTask() and friends to a dispatch queue, while being reusable as a 22 // needs a dispatch_queue_t for use in a system API. This ensures all dispatch 26 // underlying dispatch queue are released. 37 // Starts a new serial dispatch queue with a given name. 52 // This blocks the calling thread until all work on the dispatch queue has 58 // Returns the dispatch queue associated with this task runner, for use with 59 // system APIs that take dispatch queues. The caller is responsible for
|
/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/chrome/renderer/resources/extensions/ |
tts_engine_custom_bindings.js | 12 function(args, dispatch) { 19 dispatch([text, options, sendTtsEvent]);
|
file_browser_handler_custom_bindings.js | 16 function(args, dispatch) { 18 dispatch(args); 23 dispatch(args); 31 dispatch(args);
|
/external/chromium_org/content/renderer/pepper/ |
renderer_restrict_dispatch_group.h | 12 // This represents all dispatch groups used in the renderer. Dispatch groups
|
/external/compiler-rt/BlocksRuntime/tests/ |
rdar6405500.c | 11 #import <dispatch/dispatch.h>
|
/external/openssh/ |
dispatch.c | 1 /* $OpenBSD: dispatch.c,v 1.22 2008/10/31 15:05:34 stevesk Exp $ */ 36 #include "dispatch.h" 42 dispatch_fn *dispatch[DISPATCH_MAX]; variable 65 dispatch[i] = dflt; 75 dispatch[i] = fn; 81 dispatch[type] = fn; 97 if (type > 0 && type < DISPATCH_MAX && dispatch[type] != NULL) 98 (*dispatch[type])(type, seqnr, ctxt);
|
/frameworks/base/core/java/android/nfc/tech/ |
package.html | 9 <a href="{@docRoot}guide/topics/nfc/index.html#dispatch">The Tag Dispatch System</a>.
|
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/ |
log_reader.js | 148 * Returns whether a particular dispatch must be skipped. 150 * @param {!Object} dispatch Dispatch record. 151 * @return {boolean} True if dispatch must be skipped. 153 LogReader.prototype.skipDispatch = function(dispatch) { 159 * Does a dispatch of a log record. 165 // Obtain the dispatch. 169 var dispatch = this.dispatchTable_[command]; 171 if (dispatch === null || this.skipDispatch(dispatch)) { [all...] |
/external/chromium_org/v8/tools/ |
logreader.js | 118 * Returns whether a particular dispatch must be skipped. 120 * @param {!Object} dispatch Dispatch record. 121 * @return {boolean} True if dispatch must be skipped. 123 LogReader.prototype.skipDispatch = function(dispatch) { 129 * Does a dispatch of a log record. 135 // Obtain the dispatch. 139 var dispatch = this.dispatchTable_[command]; 141 if (dispatch === null || this.skipDispatch(dispatch)) { [all...] |
/external/v8/tools/ |
logreader.js | 118 * Returns whether a particular dispatch must be skipped. 120 * @param {!Object} dispatch Dispatch record. 121 * @return {boolean} True if dispatch must be skipped. 123 LogReader.prototype.skipDispatch = function(dispatch) { 129 * Does a dispatch of a log record. 135 // Obtain the dispatch. 139 var dispatch = this.dispatchTable_[command]; 141 if (dispatch === null || this.skipDispatch(dispatch)) { [all...] |