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

<<1112131415

  /external/chromium_org/ppapi/shared_impl/
proxy_lock.h 134 void PPAPI_SHARED_EXPORT CallWhileUnlocked(const base::Closure& closure);
  /external/chromium_org/ui/compositor/
layer.cc 730 base::Closure closure;
732 closure = delegate_->PrepareForLayerBoundsChange();
739 if (!closure.is_null())
740 closure.Run();
  /external/openfst/src/include/fst/script/
fstscript.h 32 #include <fst/script/closure.h>
90 REGISTER_FST_OPERATION(Closure, Arc, ClosureArgs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 275 # The closure list is used to track the order of cell
279 self.closure = []
430 self.closure = self.cellvars + self.freevars
484 return self._lookupName(arg, self.closure)
490 return self._lookupName(arg, self.closure)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 275 # The closure list is used to track the order of cell
279 self.closure = []
430 self.closure = self.cellvars + self.freevars
484 return self._lookupName(arg, self.closure)
490 return self._lookupName(arg, self.closure)
  /external/libpcap/
optimize.c 328 * Find the backwards transitive closure of the flow graph. These sets
350 SET_INSERT(b->closure, b->id);
353 SET_UNION(JT(b)->closure, b->closure, nodewords);
354 SET_UNION(JF(b)->closure, b->closure, nodewords);
    [all...]
  /external/chromium_org/ash/wm/
lock_state_controller_impl2_unittest.cc 377 base::Closure closure = base::Bind(&CheckCalledCallback, call_flag); local
378 lock_state_controller_->OnLockScreenHide(closure);
    [all...]
  /external/chromium_org/media/filters/
video_renderer_base_unittest.cc 277 base::Closure closure = base::Bind( local
284 message_loop_.PostTask(FROM_HERE, closure);
332 void FlushRequested(const base::Closure& callback) {
343 void StopRequested(const base::Closure& callback) {
370 base::Closure wait_for_pending_read_cb_;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLDocumentParser.cpp 690 // We would like to ASSERT(closure.arg3()->hasOneRef()) but sadly the args are private.
691 Closure closure = bind(&BackgroundHTMLParser::append, m_backgroundParser, String(inputSource)); local
692 HTMLParserThread::shared()->postTask(closure);
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-function-scopes.js 49 Closure: 3,
73 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
75 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
76 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
104 CheckScope(mirror.scope(0), { visible2: 20 }, ScopeType.Closure);
105 CheckScope(mirror.scope(1), { visible1: 10 }, ScopeType.Closure);
146 CheckScope(mirror.scope(0), { p4: 20, p6: 22 }, ScopeType.Closure);
147 CheckScope(mirror.scope(1), { p1: 1 }, ScopeType.Closure);
160 // This getter is known to be implemented as closure.
debug-stepin-positions.js 125 // Local function call, closure function call,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 176 def closure(state): function in function:ParserGenerator.make_dfa
188 states = [DFAState(closure(start), finish)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 176 def closure(state): function in function:ParserGenerator.make_dfa
188 states = [DFAState(closure(start), finish)]
  /external/chromium_org/chrome/browser/google_apis/
test_util.h 40 // Runs the closure, and then quits the |run_loop|.
41 void RunAndQuit(base::RunLoop* run_loop, const base::Closure& closure);
  /external/chromium_org/content/renderer/
render_thread_impl.h 156 virtual int PostTaskToAllWebWorkers(const base::Closure& closure) OVERRIDE;
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 112 scopes[i] == debug.ScopeType.Closure) {
144 // 'arguments' and might be exposed in the local and closure scope. Just
185 scope.scopeType() == debug.ScopeType.Closure) {
335 // Simple closure formed by returning an inner function referering to an outer
337 BeginTest("Closure 1");
355 debug.ScopeType.Closure,
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 112 scopes[i] == debug.ScopeType.Closure) {
144 // 'arguments' and might be exposed in the local and closure scope. Just
185 scope.scopeType() == debug.ScopeType.Closure) {
335 // Simple closure formed by returning an inner function referering to an outer
337 BeginTest("Closure 1");
355 debug.ScopeType.Closure,
  /external/v8/src/
scopes.cc 204 // Reconstruct the outer scope chain from a closure's context chain.
220 ScopeInfo* scope_info = context->closure()->shared()->scope_info();
238 if (context->previous()->closure() != context->closure()) {
    [all...]
hydrogen.h 394 Handle<JSFunction> closure);
408 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::HEnvironment
522 Handle<JSFunction> closure,
    [all...]
  /external/chromium_org/v8/src/
hydrogen.h 530 Handle<JSFunction> closure,
540 Handle<JSFunction> closure() const { return closure_; } function in class:v8::internal::HEnvironment
641 static bool UseUndefinedReceiver(Handle<JSFunction> closure,
645 return (closure->shared()->native() || !function->is_classic_mode()) &&
694 Handle<JSFunction> closure,
    [all...]
hydrogen.cc 167 environment->closure()->shared()->VerifyBailoutId(ast_id));
175 instr->set_closure(environment->closure());
259 (predecessor->last_environment()->closure().is_null() ||
260 predecessor->last_environment()->closure()->shared()
3953 Handle<JSFunction> closure = function_state()->compilation_info()->closure(); local
4130 Handle<JSFunction> closure = function_state()->compilation_info()->closure(); local
    [all...]
hydrogen-instructions.h 1655 Handle<JSFunction> closure() const { return closure_; } function in class:v8::HSimulate
1718 Handle<JSFunction> closure() const { return closure_; } function in class:v8::HEnvironmentMarker
1805 Handle<JSFunction> closure() const { return closure_; } function in class:v8::HEnterInlined
    [all...]
scopes.cc 219 // Reconstruct the outer scope chain from a closure's context chain.
248 ScopeInfo* scope_info = context->closure()->shared()->scope_info();
269 if (context->previous()->closure() != context->closure()) {
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 
  /external/chromium_org/chrome/browser/download/
download_target_determiner_unittest.cc 218 // |closure| to the current message loop when done.
219 void DownloadTargetVerifier(const base::Closure& closure,
377 const base::Closure& closure,
417 base::MessageLoop::current()->PostTask(FROM_HERE, closure);
    [all...]

Completed in 395 milliseconds

<<1112131415