HomeSort by relevance Sort by last modified time
    Searched refs:closure (Results 176 - 200 of 365) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 40 inline void closure (hb_closure_context_t *c) const function in struct:OT::SingleSubstFormat1
118 inline void closure (hb_closure_context_t *c) const function in struct:OT::SingleSubstFormat2
254 inline void closure (hb_closure_context_t *c) const function in struct:OT::Sequence
318 inline void closure (hb_closure_context_t *c) const function in struct:OT::MultipleSubstFormat1
324 (this+sequence[iter.get_coverage ()]).closure (c);
443 inline void closure (hb_closure_context_t *c) const function in struct:OT::AlternateSubstFormat1
591 inline void closure (hb_closure_context_t *c) const function in struct:OT::Ligature
687 inline void closure (hb_closure_context_t *c) const function in struct:OT::LigatureSet
692 (this+ligature[i]).closure (c);
763 inline void closure (hb_closure_context_t *c) cons function in struct:OT::LigatureSubstFormat1
911 inline void closure (hb_closure_context_t *c) const function in struct:OT::ReverseChainSingleSubstFormat1
1148 inline hb_closure_context_t::return_t closure (hb_closure_context_t *c) const function in struct:OT::SubstLookup
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 40 inline void closure (hb_closure_context_t *c) const function in struct:OT::SingleSubstFormat1
118 inline void closure (hb_closure_context_t *c) const function in struct:OT::SingleSubstFormat2
254 inline void closure (hb_closure_context_t *c) const function in struct:OT::Sequence
311 inline void closure (hb_closure_context_t *c) const function in struct:OT::MultipleSubstFormat1
317 (this+sequence[iter.get_coverage ()]).closure (c);
436 inline void closure (hb_closure_context_t *c) const function in struct:OT::AlternateSubstFormat1
584 inline void closure (hb_closure_context_t *c) const function in struct:OT::Ligature
680 inline void closure (hb_closure_context_t *c) const function in struct:OT::LigatureSet
685 (this+ligature[i]).closure (c);
756 inline void closure (hb_closure_context_t *c) cons function in struct:OT::LigatureSubstFormat1
904 inline void closure (hb_closure_context_t *c) const function in struct:OT::ReverseChainSingleSubstFormat1
1141 inline hb_closure_context_t::return_t closure (hb_closure_context_t *c) const function in struct:OT::SubstLookup
    [all...]
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 68 void GpuVideoDecoder::Reset(const base::Closure& closure) {
74 &GpuVideoDecoder::Reset, weak_this_, closure));
86 gvd_loop_proxy_->PostTask(FROM_HERE, closure);
94 pending_reset_cb_ = BindToCurrentLoop(closure);
99 void GpuVideoDecoder::Stop(const base::Closure& closure) {
107 BindToCurrentLoop(closure).Run();
443 base::Closure()));
video_frame_stream.cc 83 void VideoFrameStream::Reset(const base::Closure& closure) {
89 reset_cb_ = closure;
115 void VideoFrameStream::Stop(const base::Closure& closure) {
120 stop_cb_ = closure;
  /external/chromium_org/chrome/browser/chromeos/policy/
power_policy_browsertest.cc 115 // Runs |closure| and waits for |profile|'s user policy to be updated as a
117 void RunClosureAndWaitForUserPolicyUpdate(const base::Closure& closure,
226 const base::Closure& closure,
237 closure.Run();
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.cc 169 void DiskCacheTestWithCache::RunTaskForTest(const base::Closure& closure) {
171 closure.Run();
176 int rv = cache_impl_->RunTaskForTest(closure, cb.callback());
disk_cache_test_base.h 122 void RunTaskForTest(const base::Closure& closure);
  /external/v8/src/
contexts.h 175 // [ closure ] This is the current function. It is the same for all
305 JSFunction* closure() { return JSFunction::cast(get(CLOSURE_INDEX)); } function in class:v8::internal::Context
306 void set_closure(JSFunction* closure) { set(CLOSURE_INDEX, closure); }
lithium.h 444 LEnvironment(Handle<JSFunction> closure,
451 : closure_(closure),
460 is_tagged_(value_count, closure->GetHeap()->isolate()->zone()),
465 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::LEnvironment
  /cts/tools/signature-tools/src/signature/compare/
ApiComparator.java 342 Set<ITypeReference> closure = new HashSet<ITypeReference>(); local
344 closure); local
345 return closure;
349 Set<ITypeReference> closure) {
357 closure.add(interfaze);
364 .getRawType(), closure);
366 collectInterfaceClosure(superclass, closure);
372 .getRawType(), closure);
374 collectInterfaceClosure(interfaze, closure);
512 Set<IMethod> closure = new HashSet<IMethod>()
    [all...]
  /external/chromium_org/content/public/test/
mock_render_thread.h 72 virtual int PostTaskToAllWebWorkers(const base::Closure& closure) OVERRIDE;
  /external/chromium_org/content/renderer/media/
buffered_data_source.h 79 virtual void Stop(const base::Closure& closure) OVERRIDE;
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/private/
pprthred.h 238 void** baseAddr, PRUword count, void* closure);
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-literals.js 92 var closure = function(b, c) { return b + c; }
94 return closure;
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-2.js 62 // New instance of closure is patched.
65 // Old instance of closure is not patched.
debug-referenced-by.js 60 // Simple closure.
72 // Use closure with eval - creates arguments array.
debug-scopes.js 108 scopes[i] == debug.ScopeType.Closure) {
138 // 'arguments' and might be exposed in the local and closure scope. Just
175 scope.scopeType() == debug.ScopeType.Closure) {
461 // Simple closure formed by returning an inner function referering the outer
463 BeginTest("Closure 1");
475 debug.ScopeType.Closure,
483 // Simple closure formed by returning an inner function referering the outer
484 // functions arguments. Due to VM optimizations parts of the actual closure is
486 BeginTest("Closure 2");
500 debug.ScopeType.Closure,
    [all...]
  /external/v8/test/mjsunit/
debug-liveedit-2.js 62 // New instance of closure is patched.
65 // Old instance of closure is not patched.
debug-referenced-by.js 60 // Simple closure.
72 // Use closure with eval - creates arguments array.
debug-scopes.js 108 scopes[i] == debug.ScopeType.Closure) {
138 // 'arguments' and might be exposed in the local and closure scope. Just
175 scope.scopeType() == debug.ScopeType.Closure) {
461 // Simple closure formed by returning an inner function referering the outer
463 BeginTest("Closure 1");
475 debug.ScopeType.Closure,
483 // Simple closure formed by returning an inner function referering the outer
484 // functions arguments. Due to VM optimizations parts of the actual closure is
486 BeginTest("Closure 2");
500 debug.ScopeType.Closure,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pprint.py 256 closure = '"'
259 closure = "'"
269 return ("%s%s%s" % (closure, sio.getvalue(), closure)), True, False
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pprint.py 256 closure = '"'
259 closure = "'"
269 return ("%s%s%s" % (closure, sio.getvalue(), closure)), True, False
  /external/chromium_org/chrome/browser/google_apis/
test_util.cc 53 void RunAndQuit(base::RunLoop* run_loop, const base::Closure& closure) {
54 closure.Run();
  /external/chromium_org/content/browser/web_contents/aura/
window_slider.cc 32 CallbackAnimationObserver(const base::Closure& closure)
33 : closure_(closure) {
46 const base::Closure closure_;
  /external/chromium_org/v8/test/webkit/
dfg-create-inlined-arguments-in-closure-inline.js 25 "Tests that if the DFG tries to create inlined arguments from within a inlined call frame corresponding to a closure call, then we don't crash."

Completed in 545 milliseconds

1 2 3 4 5 6 78 91011>>