HomeSort by relevance Sort by last modified time
    Searched full:dispatch (Results 1 - 25 of 2104) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 41 dispatchTable* RS::dispatch = NULL; member in class:RS
62 RS::dispatch->ContextDeinitToClient(mContext);
67 RS::dispatch->ContextDestroy(mContext);
71 RS::dispatch->DeviceDestroy(mDev);
83 RS::dispatch->AllocationGetType = (AllocationGetTypeFnPtr)dlsym(handle, "rsaAllocationGetType");
84 if (RS::dispatch->AllocationGetType == NULL) {
85 ALOGV("Couldn't initialize RS::dispatch->AllocationGetType");
88 RS::dispatch->TypeGetNativeData = (TypeGetNativeDataFnPtr)dlsym(handle, "rsaTypeGetNativeData");
89 if (RS::dispatch->TypeGetNativeData == NULL) {
90 ALOGV("Couldn't initialize RS::dispatch->TypeGetNativeData")
453 RS::dispatch = new dispatchTable; member in class:RS
    [all...]
rsCppInternal.h 23 #define tryDispatch(rs, dispatch) \
25 dispatch; \
28 #define createDispatch(rs, dispatch) \
29 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 15 // Dispatcher is used during a nested invocation of Run to dispatch events when
17 // MessageLoop does not dispatch events (or invoke TranslateMessage), rather
18 // every message is passed to Dispatcher's Dispatch method for dispatch. It is
19 // up to the Dispatcher whether or not to dispatch the event.
22 // POST_DISPATCH_QUIT_LOOP flag on the return value from Dispatch.
38 virtual uint32_t Dispatch(const NativeEvent& event) = 0;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
.gitignore 2 dispatch.h
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
finalize_after_dispatch.txt 2 ./finalize_after_dispatch.h:12:1: warning: [blink-gc] Class 'NeedsFinalize' is missing manual finalize dispatch.
5 ./finalize_after_dispatch.h:19:1: warning: [blink-gc] Class 'NeedsDispatch' is missing manual trace dispatch.
14 finalize_after_dispatch.cpp:30:1: warning: [blink-gc] Missing dispatch to class 'D' in manual finalize dispatch.
  /external/mesa3d/src/mesa/main/
.gitignore 2 dispatch.h
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
rsCppInternal.h 23 #define tryDispatch(rs, dispatch) \
25 dispatch; \
28 #define createDispatch(rs, dispatch) \
29 rs->getError() == RS_SUCCESS ? dispatch : NULL
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
rsCppInternal.h 23 #define tryDispatch(rs, dispatch) \
25 dispatch; \
28 #define createDispatch(rs, dispatch) \
29 rs->getError() == RS_SUCCESS ? dispatch : NULL
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/
rsCppInternal.h 23 #define tryDispatch(rs, dispatch) \
25 dispatch; \
28 #define createDispatch(rs, dispatch) \
29 rs->getError() == RS_SUCCESS ? dispatch : NULL
  /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...]
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
BroadcastDispatcher.java 16 package android.hardware.camera2.dispatch;
26 * Broadcast a single dispatch into multiple other dispatchables.
28 * <p>Every time {@link #dispatch} is invoked, all the broadcast targets will
29 * see the same dispatch as well. The first target's return value is returned.</p>
38 * Create a broadcast dispatcher from the supplied dispatch targets.
40 * @param dispatchTargets one or more targets to dispatch to
49 public Object dispatch(Method method, Object[] args) throws Throwable { method in class:BroadcastDispatcher
54 Object localResult = dispatchTarget.dispatch(method, args);
DuckTypingDispatcher.java 16 package android.hardware.camera2.dispatch;
24 * Duck typing dispatcher; converts dispatch methods calls from one class to another by
31 * @param <TFrom> source dispatch type, whose methods with {@link #dispatch} will be called
32 * @param <T> destination dispatch type, methods will be converted to the class of {@code T}
41 * @param target destination dispatch type, methods will be redirected to this dispatcher
42 * @param targetClass destination dispatch class, methods will be converted to this class's
52 public Object dispatch(Method method, Object[] args) { method in class:DuckTypingDispatcher
  /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]);
  /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/test/BlocksRuntime/
rdar6405500.c 11 #import <dispatch/dispatch.h>
  /frameworks/base/core/java/android/nfc/tech/
package.html 9 <a href="{@docRoot}guide/topics/nfc/index.html#dispatch">The Tag Dispatch System</a>.

Completed in 1861 milliseconds

1 2 3 4 5 6 7 8 91011>>