Searched refs:closure (Results 226 - 250 of 332) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_browsertest.cc53 void RunAndQuit(const base::Closure& closure, argument
56 closure.Run();
60 void RunOnIOThread(const base::Closure& closure) { argument
64 base::Bind(&RunAndQuit, closure, run_loop.QuitClosure(),
70 const base::Callback<void(const base::Closure& continuation)>& closure) {
79 base::Bind(closure, quit_on_original_thread));
69 RunOnIOThread( const base::Callback<void(const base::Closure& continuation)>& closure) argument
H A Dservice_worker_register_job.cc21 void RunSoon(const base::Closure& closure) { argument
22 base::MessageLoop::current()->PostTask(FROM_HERE, closure);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTable.h1159 static void process(typename Allocator::Visitor* visitor, void* closure) { } argument
1160 static void ephemeronIteration(typename Allocator::Visitor* visitor, void* closure) { } argument
1161 static void ephemeronIterationDone(typename Allocator::Visitor* visitor, void* closure) { } argument
1167 static void process(typename Allocator::Visitor* visitor, void* closure) argument
1170 HashTableType* table = reinterpret_cast<HashTableType*>(closure);
1200 static void ephemeronIteration(typename Allocator::Visitor* visitor, void* closure) argument
1203 HashTableType* table = reinterpret_cast<HashTableType*>(closure);
1218 static void ephemeronIterationDone(typename Allocator::Visitor* visitor, void* closure) argument
1221 HashTableType* table = reinterpret_cast<HashTableType*>(closure);
/external/chromium_org/media/audio/android/
H A Daudio_android_unittest.cc426 // Synchronously runs the provided callback/closure on the audio thread.
427 void RunOnAudioThread(const base::Closure& closure) { argument
434 closure,
438 closure.Run();
442 void RunOnAudioThreadImpl(const base::Closure& closure, argument
445 closure.Run();
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DCythonFunction.c76 __Pyx_CyFunction_get_doc(__pyx_CyFunctionObject *op, CYTHON_UNUSED void *closure) argument
174 __Pyx_CyFunction_get_self(__pyx_CyFunctionObject *m, CYTHON_UNUSED void *closure) argument
427 PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) {
435 Py_XINCREF(closure);
436 op->func_closure = closure;
426 __Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) argument
/external/chromium_org/third_party/icu/source/common/
H A Ducase.cpp204 * Hardcode the case closure of i and its relatives and ignore the
208 * This code matches their closure behavior to their case folding behavior.
246 const UChar *closure; local
261 /* get the closure string pointer & length */
266 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
269 closure=NULL;
299 closure=(const UChar *)pe; /* behind full case mappings */
302 /* add each code point in the closure string */
304 U16_NEXT_UNSAFE(closure, idx, c);
377 /* found the string: add each code point, and its case closure */
[all...]
/external/chromium_org/v8/src/
H A Dlithium.h390 LEnvironment(Handle<JSFunction> closure, argument
399 : closure_(closure),
417 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::FINAL
649 void AddInlinedClosure(Handle<JSFunction> closure) { argument
650 inlined_closures_.Add(closure, zone());
H A Dtyping.cc20 handle(info->closure()->shared()->code()),
21 handle(info->closure()->shared()->feedback_vector()),
22 handle(info->closure()->context()->native_context()),
79 DCHECK_EQ(*info_->closure(), frame->function());
351 expr->InitializeSharedInfo(Handle<Code>(info_->closure()->shared()->code()));
H A Dcontexts.h215 // [ closure ] This is the current function. It is the same for all
416 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); } function in class:v8::internal::Context
417 void set_closure(JSFunction* closure) { set(CLOSURE_INDEX, closure); } argument
/external/icu/icu4c/source/common/
H A Ducase.cpp204 * Hardcode the case closure of i and its relatives and ignore the
208 * This code matches their closure behavior to their case folding behavior.
246 const UChar *closure; local
261 /* get the closure string pointer & length */
266 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
269 closure=NULL;
299 closure=(const UChar *)pe; /* behind full case mappings */
302 /* add each code point in the closure string */
304 U16_NEXT_UNSAFE(closure, idx, c);
377 /* found the string: add each code point, and its case closure */
[all...]
/external/chromium_org/chrome/browser/local_discovery/wifi/
H A Dwifi_manager_nonchromeos.cc97 void PostClosure(const base::Closure& closure);
441 const base::Closure& closure) {
444 base::Bind(&WifiManagerNonChromeos::PostClosure, wifi_manager_, closure));
440 PostClosure( const base::Closure& closure) argument
/external/bison/
H A DAndroid.mk156 src/closure.c \
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_signer.cc368 base::Closure closure = base::Bind(&InstallSigner::ParseFetchResponse, local
371 delegate_.reset(new FetcherDelegate(closure));
/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_audio_input_stream_unittest.cc342 void RunOnAudioThread(const base::Closure& closure) { argument
343 audio_thread_.message_loop()->PostTask(FROM_HERE, closure);
/external/chromium_org/media/filters/
H A Ddecoder_stream.cc146 void DecoderStream<StreamType>::Reset(const base::Closure& closure) { argument
152 reset_cb_ = closure;
H A Dvideo_renderer_impl_unittest.cc37 ACTION_P(RunClosure, closure) {
38 closure.Run();
H A Dvpx_video_decoder.cc95 // Generates a "no_longer_needed" closure that holds a reference
326 void VpxVideoDecoder::Reset(const base::Closure& closure) { argument
331 task_runner_->PostTask(FROM_HERE, closure);
/external/bison/src/
H A DLR0.c31 #include "closure.h"
359 closure (s->items, s->nitems);
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_window.cc1220 void DevToolsWindow::SetLoadCompletedCallback(const base::Closure& closure) { argument
1222 if (!closure.is_null())
1223 closure.Run();
1226 load_completed_callback_ = closure;
H A Ddevtools_window.h96 // Sets closure to be called after load is done. If already loaded, calls
97 // closure immediately.
98 void SetLoadCompletedCallback(const base::Closure& closure);
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_handler.h110 // Sets |pdf_file_saved_closure_| to |closure|.
111 void SetPdfSavedClosureForTesting(const base::Closure& closure);
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.h104 const base::Closure& closure) OVERRIDE;
/external/chromium_org/content/public/renderer/
H A Dcontent_renderer_client.h136 // can run |closure| immediately if they don't wish to defer media resource
139 const base::Closure& closure);
/external/chromium_org/content/public/test/
H A Dmock_render_thread.cc170 int MockRenderThread::PostTaskToAllWebWorkers(const base::Closure& closure) { argument
/external/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
H A DRunner.java5 package org.chromium.closure.compiler;
33 * Prepares and executes several instances of the closure compiler.

Completed in 566 milliseconds

1234567891011>>