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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/mjsunit/compiler/
regress-serialized-slots.js 29 // accessible from the inner closure.
  /ndk/build/core/
import-locals.mk 21 # to use the exported definitions of the closure of all modules
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 109 scopes[i] == debug.ScopeType.Closure) {
141 // 'arguments' and might be exposed in the local and closure scope. Just
182 scope.scopeType() == debug.ScopeType.Closure) {
195 // Simple closure formed by returning an inner function referering to an outer
197 // optimizations parts of the actual closure is missing from the debugger
199 BeginTest("Closure 1");
217 debug.ScopeType.Closure,
  /external/chromium_org/v8/test/mjsunit/
debug-set-variable-value.js 33 // Accepts a function/closure 'fun' that must have a debugger statement inside.
80 // Accepts a closure 'fun' that returns a variable from it's outer scope.
261 // is referenced from an inner closure.
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 109 scopes[i] == debug.ScopeType.Closure) {
141 // 'arguments' and might be exposed in the local and closure scope. Just
182 scope.scopeType() == debug.ScopeType.Closure) {
195 // Simple closure formed by returning an inner function referering to an outer
197 // optimizations parts of the actual closure is missing from the debugger
199 BeginTest("Closure 1");
217 debug.ScopeType.Closure,
  /external/chromium_org/third_party/icu/source/common/
ucase.c 201 * Hardcode the case closure of i and its relatives and ignore the
205 * This code matches their closure behavior to their case folding behavior.
243 const UChar *closure; local
258 /* get the closure string pointer & length */
263 closure=(const UChar *)pe+1; /* behind this slot, unless there are full case mappings */
266 closure=NULL;
296 closure=(const UChar *)pe; /* behind full case mappings */
299 /* add each code point in the closure string */
301 U16_NEXT_UNSAFE(closure, idx, c);
375 /* found the string: add each code point, and its case closure */
    [all...]
  /external/icu4c/common/
ucase.cpp 204 * 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 323 closure = 1
324 def f(): return closure
325 def f(x=1): return closure
326 def f(*, k=1): return closure
327 def f() -> int: return closure
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
py3_test_grammar.py 323 closure = 1
324 def f(): return closure
325 def f(x=1): return closure
326 def f(*, k=1): return closure
327 def f() -> int: return closure
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 91 const base::Closure& completion_callback);
100 const base::Closure& c)
105 closure(c) {
119 base::Closure closure; member in struct:content::__anon10096::XSyncHandler::BackingStoreEvents
148 const base::Closure& completion_callback) {
231 // Dispatch the closure we were given.
232 data->closure.Run();
350 const base::Closure& completion_callback,
  /external/bison/
Android.mk 156 src/closure.c \
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 54 // Use a closure to bind the url into the callback's args.
  /external/chromium_org/chrome/browser/chromeos/cros/
network_library_unittest.cc 40 // Have to do a stub here because MOCK can't handle closure arguments.
48 const base::Closure& closure) OVERRIDE {
56 closure.Run();
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 58 // Use a closure to bind the url into the callback's args.
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_audio_input_stream_unittest.cc 358 void RunOnAudioThread(const base::Closure& closure) {
359 audio_thread_.message_loop()->PostTask(FROM_HERE, closure);
  /external/chromium_org/content/renderer/media/
buffered_data_source.cc 197 void BufferedDataSource::Stop(const base::Closure& closure) {
202 closure.Run();
  /external/chromium_org/media/filters/
decrypting_audio_decoder.cc 111 void DecryptingAudioDecoder::Reset(const base::Closure& closure) {
123 reset_cb_ = closure;
ffmpeg_audio_decoder.cc 149 void FFmpegAudioDecoder::Reset(const base::Closure& closure) {
151 base::Closure reset_cb = BindToCurrentLoop(closure);
opus_audio_decoder.cc 307 void OpusAudioDecoder::Reset(const base::Closure& closure) {
309 base::Closure reset_cb = BindToCurrentLoop(closure);
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-function-scopes.js 51 Closure: 3,
77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure);
79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure);
109 // Implementation artifact: l4 isn't used in closure, but still it is saved.
114 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure);
  /external/bison/src/
LR0.c 31 #include "closure.h"
359 closure (s->items, s->nitems);
  /external/chromium_org/base/
bind_helpers.h 48 // Closure foo_callback =
61 // Closure foo_callback = Bind(&foo, Owned(pn));
80 // Closure no_ref = Bind(&foo, n);
81 // Closure has_ref = Bind(&foo, ConstRef(n));
115 // Closure cb = Bind(&TakesOwnership, Passed(&f));
137 // DoNothing() - Useful for creating a Closure that does nothing when called.
138 // DeletePointer<T>() - Useful for creating a Closure that will delete a
142 // ScopedClosureRunner - Scoper object that runs the wrapped closure when it
547 // Closure is executed and deleted no matter how the current scope exits.
550 explicit ScopedClosureRunner(const Closure& closure)
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc 475 const base::Closure& closure) {
478 closure.Run();
482 closure.Run();
487 new prerender::PrerenderMediaLoadDeferrer(render_view, closure);
    [all...]
chrome_content_renderer_client.h 91 const base::Closure& closure) OVERRIDE;
  /external/chromium_org/content/public/test/
mock_render_thread.cc 184 int MockRenderThread::PostTaskToAllWebWorkers(const base::Closure& closure) {

Completed in 3127 milliseconds

1 2 3 4 5 6 7 8 91011>>