HomeSort by relevance Sort by last modified time
    Searched defs:callback (Results 476 - 500 of 1863) sorted by null

<<11121314151617181920>>

  /external/harfbuzz_ng/util/
helper-cairo.cc 171 void (*callback)(finalize_closure_t *); member in struct:finalize_closure_t
220 ansi_closure->callback = finalize_ansi;
278 png_closure->callback = finalize_png;
455 closure->callback (closure);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
SourceRoot.java 30 import static com.github.javaparser.utils.SourceRoot.Callback.Result.SAVE;
46 public interface Callback {
83 * might want to use the parse method with a callback.
98 * might want to use the parse method with a callback.
123 * might want to use the parse method with a callback.
135 * times (where the cache is useful) you might want to use the parse method with a callback.
175 * files multiple times (where the cache is useful) you might want to use the parse method with a callback.
188 * useful) you might want to use the parse method with a callback.
222 * cache is useful) you might want to use the parse method with a callback.
232 * want to use the parse method with a callback
532 private final VisitFileCallback callback; field in class:SourceRoot.ParallelParse
    [all...]
  /external/libchrome/base/message_loop/
message_pump_glib_unittest.cc 15 #include "base/callback.h"
65 if (!event.callback.is_null())
66 event.callback.Run();
71 // Adds an event to the queue. When "handled", executes |callback|.
73 void AddEvent(int delay_ms, const Closure& callback) {
74 AddEventHelper(delay_ms, callback, Closure());
95 Closure callback; member in struct:base::__anon24228::EventInjector::Event
104 int delay_ms, const Closure& callback, const Closure& task) {
112 EventInjector::Event event = {future, callback, task};
  /external/libmojo/base/android/linker/
legacy_linker_jni.cc 263 crazy_callback_t* callback = reinterpret_cast<crazy_callback_t*>(arg); local
266 callback->handler, callback->opaque);
268 crazy_callback_run(callback);
269 delete callback;
272 // Request a callback from Java. The supplied crazy_callback_t is valid only
279 // Returns true if the callback request succeeds.
298 // Copy the callback; the one passed as an argument may be temporary.
299 crazy_callback_t* callback = new crazy_callback_t(); local
300 *callback = *callback_request
    [all...]
  /external/libunwind/src/ia64/
Gtables.c 472 callback (struct dl_phdr_info *info, size_t size, void *ptr) function
658 ret = dl_iterate_phdr (callback, &di);
  /external/libxml2/doc/
index.py 47 def callback(ctx, str): function
49 libxml2.registerErrorHandler(callback, None)
    [all...]
  /external/nanopb-c/
pb_encode.c 73 stream.callback = (void*)1; /* Just a marker value */
75 stream.callback = &buf_write;
88 if (stream->callback != NULL)
97 if (!stream->callback(stream, buf, count))
155 if (stream->callback == NULL)
259 /* Encode a field with callback semantics. This means that a user function is
264 const pb_callback_t *callback = (const pb_callback_t*)pData; local
267 const void *arg = callback->arg;
269 void * const *arg = &(callback->arg);
272 if (callback->funcs.encode != NULL
    [all...]
  /external/oj-libjdwp/src/share/back/
transport.c 45 static struct jdwpTransportCallback callback = {jvmtiAllocate, jvmtiDeallocate}; variable in typeref:struct:jdwpTransportCallback
197 ver = (*onLoad)(jvm, &callback, JDWPTRANSPORT_VERSION_1_0, &t);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DispatcherTest.java 18 RecordingCallback callback = new RecordingCallback(); field in class:DispatcherTest
44 client.newCall(newRequest("http://a/1")).enqueue(callback);
50 client.newCall(newRequest("http://a/1")).enqueue(callback);
51 client.newCall(newRequest("http://a/2")).enqueue(callback);
52 client.newCall(newRequest("http://b/1")).enqueue(callback);
53 client.newCall(newRequest("http://b/2")).enqueue(callback);
59 client.newCall(newRequest("http://a/1")).enqueue(callback);
60 client.newCall(newRequest("http://a/2")).enqueue(callback);
61 client.newCall(newRequest("http://a/3")).enqueue(callback);
67 client.newCall(newRequest("http://a/1")).enqueue(callback);
    [all...]
  /external/perfetto/src/tracing/core/
service_impl.h 203 ConsumerEndpoint::FlushCallback callback; member in struct:perfetto::ServiceImpl::PendingFlush
204 explicit PendingFlush(decltype(callback) cb) : callback(std::move(cb)) {}
  /external/python/cpython2/Lib/ctypes/test/
test_callbacks.py 14 def callback(self, *args): member in class:Callbacks
20 result = PROTO(self.callback)(arg)
28 result = PROTO(self.callback)(-3, arg)
97 # a memory leak. A callback function cannot return a non-integral
118 # Only "fundamental" result types are supported for callback
170 CALLBACK = CFUNCTYPE(c_double, c_double)
174 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
180 result = integrate(0.0, 1.0, CALLBACK(func), 10)
216 # Issue #8275: buggy handling of callback args under Win64
219 CALLBACK = CFUNCTYPE(c_int, c_int, c_int, c_int, c_int, c_int
225 def callback(a, b, c, d, e): function in function:SampleCallbacksTestCase.test_callback_register_int
243 def callback(a, b, c, d, e): function in function:SampleCallbacksTestCase.test_callback_register_double
260 def callback(check, s): function in function:SampleCallbacksTestCase.test_callback_large_struct
    [all...]
  /external/python/cpython2/Lib/test/
test_gc.py 518 def callback(ignored): function in function:GCTests.test_bug1055820b
522 WRs = [weakref.ref(c, callback) for c in Cs]
528 # the callback materialized a strong reference to an instance, but gc
534 # If the callback resurrected one of these guys, the instance
558 c2wr = weakref.ref(c2) # no callback!
561 def callback(ignored): function in function:GCTogglingTests.test_bug1055820c
564 # The callback gets associated with a wr on an object in generation 2.
565 c0wr = weakref.ref(c0, callback)
572 # global weakref to c2 (c2wr), but that weakref has no callback.
574 # callback, and that callback references c2 via c2wr()
    [all...]
test_sys_setprofile.py 30 def callback(self, frame, event, arg): member in class:HookWatcher
63 def callback(self, frame, event, arg): member in class:ProfileSimulator
64 # Callback registered with sys.setprofile()/sys.settrace()
363 sys.setprofile(p.callback)
  /external/python/cpython3/Lib/ctypes/test/
test_callbacks.py 14 def callback(self, *args): member in class:Callbacks
20 result = PROTO(self.callback)(arg)
28 result = PROTO(self.callback)(-3, arg)
91 # a memory leak. A callback function cannot return a non-integral
112 # Only "fundamental" result types are supported for callback
164 CALLBACK = CFUNCTYPE(c_double, c_double)
168 integrate.argtypes = (c_double, c_double, CALLBACK, c_long)
174 result = integrate(0.0, 1.0, CALLBACK(func), 10)
210 # Issue #8275: buggy handling of callback args under Win64
213 CALLBACK = CFUNCTYPE(c_int, c_int, c_int, c_int, c_int, c_int
219 def callback(a, b, c, d, e): function in function:SampleCallbacksTestCase.test_callback_register_int
237 def callback(a, b, c, d, e): function in function:SampleCallbacksTestCase.test_callback_register_double
255 def callback(check, s): function in function:SampleCallbacksTestCase.test_callback_large_struct
    [all...]
  /external/python/cpython3/Lib/test/
test_capi.py 249 def callback(): function in function:TestPendingCalls.pendingcalls_submit
256 #try submitting callback until successful.
260 if _testcapi._pending_threadfunc(callback):
284 #do every callback on a separate thread
565 def callback(): function in function:TestThreadState.test_thread_state.target
568 _testcapi._test_thread_state(callback)
569 a = b = callback
test_memoryview.py 348 def callback(wr, b=b): function in function:AbstractMemoryTests.test_weakref
350 wr = weakref.ref(m, callback)
test_sys_setprofile.py 29 def callback(self, frame, event, arg): member in class:HookWatcher
62 def callback(self, frame, event, arg): member in class:ProfileSimulator
63 # Callback registered with sys.setprofile()/sys.settrace()
361 sys.setprofile(p.callback)
test_timeit.py 357 def autorange(self, callback=None):
360 return t.autorange(callback)
368 def callback(a, b): function in function:TestTimeit.test_autorange_with_callback
371 num_loops, time_taken = self.autorange(callback)
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowPackageInstaller.java 33 PackageInstaller.SessionCallback callback; field in class:ShadowPackageInstaller.CallbackInfo
43 public void registerSessionCallback(@NonNull PackageInstaller.SessionCallback callback, @NonNull Handler handler) {
45 callbackInfo.callback = callback;
68 callbackInfo.callback.onCreated(sessionInfo.sessionId);
85 callbackInfo.callback.onFinished(sessionId, false);
109 callbackInfo.callback.onProgressChanged(sessionId, progress);
133 callbackInfo.callback.onFinished(sessionId, success);
  /external/selinux/libsemanage/src/
seusers_local.c 123 void *callback = (void *) handle->msg_callback; local
159 handle->msg_callback = callback;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiRtt2ManagerFacade.java 115 RangingResultCallback callback = new RangingResultCallbackFacade(id); local
119 mService.getMainExecutor(), callback); local
132 RangingResultCallback callback = new RangingResultCallbackFacade(id); local
137 callback); local
150 RangingResultCallback callback = new RangingResultCallbackFacade(id); local
153 new PeerHandle(peerId)).build(), mService.getMainExecutor(), callback); local
WifiRttManagerFacade.java 148 // A monotonic increasing counter for responder callback ids.
273 @Rpc(description = "Enable responder", returns = "Id of the callback associated with enabling")
275 RttResponderCallback callback = new RttResponderCallback(mEventFacade); local
276 mResponderCallbacks.put(callback.mId, callback);
277 mRtt.enableResponder(callback);
278 return callback.mId;
  /external/sonivox/arm-wt-22k/lib_src/
eas_parser.h 39 /* metadata callback */
42 EAS_METADATA_CBFUNC callback; member in struct:s_metadata_cb_tag
  /external/swiftshader/third_party/LLVM/tools/gold/
gold-plugin.cpp 47 // callback in the transfer vector. This should never be called.
173 ld_plugin_register_claim_file callback; local
174 callback = tv->tv_u.tv_register_claim_file;
176 if ((*callback)(claim_file_hook) != LDPS_OK)
182 ld_plugin_register_all_symbols_read callback; local
183 callback = tv->tv_u.tv_register_all_symbols_read;
185 if ((*callback)(all_symbols_read_hook) != LDPS_OK)
191 ld_plugin_register_cleanup callback; local
192 callback = tv->tv_u.tv_register_cleanup;
194 if ((*callback)(cleanup_hook) != LDPS_OK
    [all...]
  /external/tensorflow/tensorflow/contrib/data/kernels/
prefetching_kernels.cc 105 // If the buffer has anything, runs `callback` on the first element in the
106 // buffer, else schedules the `callback` to be called. Requires `args` and
108 void MaybeGet(FunctionBufferCallback callback) LOCKS_EXCLUDED(mu_) {
123 requests_.push_back(std::move(callback));
127 callback(buffer_element);
187 FunctionBufferCallback callback = nullptr;
205 callback = std::move(requests_.front());
214 if (callback != nullptr) {
215 callback(buffer_front);
345 FunctionBufferCallback callback variable
    [all...]

Completed in 876 milliseconds

<<11121314151617181920>>