HomeSort by relevance Sort by last modified time
    Searched refs:closure (Results 1 - 25 of 455) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/
named-function-expression.js 65 (function closure() { return closure == arguments.callee && !this.closure; })(),
66 "(function closure() { return closure == arguments.callee && !this.closure; })()"
71 (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })(),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Task.h 41 explicit Task(const Closure& closure)
42 : m_closure(closure)
52 Closure m_closure;
  /external/chromium_org/ui/compositor/
closure_animation_observer.cc 9 ClosureAnimationObserver::ClosureAnimationObserver(const base::Closure& closure)
10 : closure_(closure) {
closure_animation_observer.h 20 explicit ClosureAnimationObserver(const base::Closure& closure);
28 const base::Closure closure_;
  /external/compiler-rt/test/BlocksRuntime/
byrefaccess.c 19 void callVoidVoid(void (^closure)(void)) {
20 closure();
byrefcopy.c 20 void callVoidVoid(void (^closure)(void)) {
21 closure();
nestedimport.c 23 void callVoidVoid(void (^closure)(void)) {
24 closure();
  /external/chromium_org/mojo/public/c/gles2/
gles2_types.h 19 typedef void (*MojoGLES2ContextLost)(void* closure);
  /external/chromium_org/base/
critical_closure.h 23 // This class wraps a closure so it can continue to run for a period of time
29 explicit CriticalClosure(const Callback<R(void)>& closure)
30 : closure_(closure) {}
48 // Returns a closure (which may return a result, but must not require any extra
59 // Note new closures might be posted in this closure. If the new closures need
64 Callback<R(void)> MakeCriticalClosure(const Callback<R(void)>& closure) {
67 Owned(new internal::CriticalClosure<R>(closure)));
71 inline Callback<R(void)> MakeCriticalClosure(const Callback<R(void)>& closure) {
74 return closure;
callback_helpers.cc 14 ScopedClosureRunner::ScopedClosureRunner(const Closure& closure)
15 : closure_(closure) {
24 Closure old_closure = Release();
29 void ScopedClosureRunner::Reset(const Closure& closure) {
30 Closure old_closure = Release();
31 closure_ = closure;
36 Closure ScopedClosureRunner::Release() {
37 Closure result = closure_
    [all...]
callback_helpers.h 31 // Closure is executed and deleted no matter how the current scope exits.
35 explicit ScopedClosureRunner(const Closure& closure);
39 void Reset(const Closure& closure);
40 Closure Release() WARN_UNUSED_RESULT;
43 Closure closure_;
  /external/bison/src/
closure.h 27 data so that closure can be called. n is the number of elements to
38 RULESET contains a bit for each rule. CLOSURE sets the bits for
44 significant). CLOSURE places there the indices of all items which
47 void closure (item_number *items, size_t n);
  /external/harfbuzz_ng/util/
helper-cairo-ansi.hh 36 void *closure);
  /external/chromium_org/athena/env/public/
athena_env.h 38 virtual void AddTerminatingCallback(const base::Closure& closure) = 0;
39 virtual void RemoveTerminatingCallback(const base::Closure& closure) = 0;
  /external/chromium_org/mojo/public/c/environment/
async_waiter.h 12 typedef void (*MojoAsyncWaitCallback)(void* closure, MojoResult result);
33 // only, e.g., from some run loop. |callback| is provided with the |closure|
50 void* closure);
  /external/chromium_org/mojo/public/cpp/test_support/
test_utils.h 31 typedef void (*PerfTestSingleIteration)(void* closure);
34 void* closure);
  /external/chromium_org/ppapi/shared_impl/
thread_aware_callback.cc 21 void RunIfNotAborted(const base::Closure& closure) {
23 CallWhileUnlocked(closure);
47 const base::Closure& closure) {
51 RunWhileLocked(base::Bind(&Core::RunIfNotAborted, core_, closure)),
54 CallWhileUnlocked(closure);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common_unittest.cc 195 Closure* permanent_closure_;
203 Closure* closure = NewCallback(&SetA123Function); local
205 closure->Run();
210 Closure* closure = NewCallback(current_instance_, local
213 closure->Run();
218 Closure* closure = NewCallback(&SetAFunction, 456); local
220 closure->Run()
225 Closure* closure = NewCallback(current_instance_, local
233 Closure* closure = NewCallback(&SetCFunction, string("test")); local
240 Closure* closure = NewCallback(current_instance_, local
249 Closure* closure = NewCallback(&SetABFunction, 789, cstr); local
259 Closure* closure = NewCallback(current_instance_, local
271 Closure* closure = NewPermanentCallback(&SetA123Function); local
282 Closure* closure = NewPermanentCallback(current_instance_, local
294 Closure* closure = NewPermanentCallback(&SetAFunction, 456); local
305 Closure* closure = NewPermanentCallback(current_instance_, local
318 Closure* closure = NewPermanentCallback(&SetABFunction, 789, cstr); local
334 Closure* closure = NewPermanentCallback(current_instance_, local
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 197 Closure* closure = NewCallback(&SetA123Function); local
199 closure->Run();
204 Closure* closure = NewCallback(current_instance_, local
207 closure->Run();
212 Closure* closure = NewCallback(&SetAFunction, 456); local
214 closure->Run();
219 Closure* closure = NewCallback(current_instance_ local
227 Closure* closure = NewCallback(&SetCFunction, string("test")); local
234 Closure* closure = NewCallback(current_instance_, local
243 Closure* closure = NewCallback(&SetABFunction, 789, cstr); local
253 Closure* closure = NewCallback(current_instance_, local
265 Closure* closure = NewPermanentCallback(&SetA123Function); local
276 Closure* closure = NewPermanentCallback(current_instance_, local
288 Closure* closure = NewPermanentCallback(&SetAFunction, 456); local
299 Closure* closure = NewPermanentCallback(current_instance_, local
312 Closure* closure = NewPermanentCallback(&SetABFunction, 789, cstr); local
328 Closure* closure = NewPermanentCallback(current_instance_, local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
asyncinvoker.h 80 AsyncClosure* closure = local
82 DoInvoke(thread, closure, id);
92 AsyncClosure* closure = local
95 DoInvoke(thread, closure, id);
106 AsyncClosure* closure = local
109 DoInvoke(thread, closure, id);
124 void DoInvoke(Thread* thread, AsyncClosure* closure, uint32 id);
  /external/chromium_org/mojo/environment/
default_async_waiter_impl.cc 16 void* closure,
19 callback(closure, result);
26 void* closure) {
30 base::Bind(&OnHandleReady, watcher, callback, closure));
  /external/chromium_org/cc/base/
unique_notifier.cc 15 const base::Closure& closure)
17 closure_(closure),
36 // Note that the order here is important in case closure schedules another
  /external/chromium_org/third_party/closure_compiler/
bump_compiler_version 6 # Download the newest version of Closure Compiler, build it and put into Chrome
19 echo "Cloning Closure Compiler repo"
20 git clone https://github.com/google/closure-compiler.git
22 cd closure-compiler
23 echo "Building Closure Compiler"
  /external/chromium_org/mojo/public/cpp/environment/lib/
default_async_waiter.cc 25 void* closure)
28 closure_(closure) {
50 void* closure = closure_; local
53 callback(closure, result);
67 void* closure) {
74 new RunLoopHandlerImpl(Handle(handle), callback, closure);
  /external/chromium_org/components/domain_reliability/
dispatcher.cc 17 Task(const base::Closure& closure,
23 base::Closure closure; member in struct:domain_reliability::DomainReliabilityDispatcher::Task
30 DomainReliabilityDispatcher::Task::Task(const base::Closure& closure,
34 : closure(closure),
51 const base::Closure& closure,
    [all...]

Completed in 932 milliseconds

1 2 3 4 5 6 7 8 91011>>