HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 201 - 225 of 386) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilitiesTest.cpp 102 v8::Context::Scope m_scope;
PageScriptDebugServer.cpp 85 v8::HandleScope scope(m_isolate);
87 v8::Context::Scope contextScope(debuggerContext);
166 v8::HandleScope scope(m_isolate);
175 v8::HandleScope scope(m_isolate);
ScriptPromiseResolverTest.cpp 89 v8::Context::Scope m_contextScope;
V8AbstractEventListener.cpp 61 v8::HandleScope scope(m_isolate);
86 v8::Context::Scope scope(v8Context);
V8LazyEventListener.cpp 130 // Use the outer scope to hold context.
137 v8::Context::Scope scope(v8Context);
142 // handlers push document, form, and the target node on the scope chain.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 624 v8::Context::Scope contextScope(context);
649 v8::Context::Scope contextScope(context);
677 v8::Context::Scope contextScope(context);
781 v8::Context::Scope contextScope(context);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequestTest.cpp 59 v8::Context::Scope m_scope;
IDBTransactionTest.cpp 62 v8::Context::Scope m_scope;
  /external/chromium_org/tools/gn/
function_exec_script.cc 175 Value RunExecScript(Scope* scope,
185 const Settings* settings = scope->settings();
  /external/chromium_org/v8/src/
rewriter.cc 254 Scope* scope = function->scope(); local
255 ASSERT(scope != NULL);
256 if (!scope->is_global_scope() && !scope->is_eval_scope()) return true;
260 Variable* result = scope->NewTemporary(
270 // of an immediate inner scope. For example in
273 // coincides with the end of the with scope which is the position of '1'.
v8globals.h 151 class Scope;
471 EVAL_SCOPE, // The top-level scope for an eval source.
472 FUNCTION_SCOPE, // The top-level scope for a function.
473 MODULE_SCOPE, // The scope introduced by a module literal
474 GLOBAL_SCOPE, // The top-level scope for a program or a top-level eval.
475 CATCH_SCOPE, // The scope introduced by catch.
476 BLOCK_SCOPE, // The scope introduced by a new block.
477 WITH_SCOPE // The scope introduced by with.
509 // unless the scope as a whole has forced context allocation
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // Check that the scope chain contains the expected types of scopes.
84 var scope = exec_state.frame().scope(i);
85 assertTrue(scope.isScope());
86 assertEquals(scopes[i], scope.scopeType());
88 // Check the global object when hitting the global scope.
92 assertPropertiesEqual(this, scope.scopeObject().value());
118 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(number)
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 85 // Construct a location that has a valid scope, but no line info.
87 llvm::DIDescriptor Scope(DI->LexicalBlockStack.back());
88 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(0, 0, Scope));
105 // If we've changed files in the middle of a lexical scope go ahead
106 // and create a new lexical scope with file node if it's different
107 // from the one in the scope.
119 llvm::DIScope Scope = llvm::DIScope(LB);
120 if (Scope.isLexicalBlockFile()) {
128 } else if (Scope.isLexicalBlock() || Scope.isSubprogram())
3003 llvm::MDNode *scope = LexicalBlockStack.back(); local
    [all...]
  /external/v8/src/mips/
assembler-mips.h 406 // Supported features must be enabled by a Scope before use.
436 // Enable a specified feature within a scope.
437 class Scope BASE_EMBEDDED {
441 explicit Scope(CpuFeature f) {
453 ~Scope() {
466 explicit Scope(CpuFeature f) {}
886 // This blocking scope is not nestable.
    [all...]
  /external/v8/src/
rewriter.cc 238 Scope* scope = function->scope(); local
239 ASSERT(scope != NULL);
240 if (!scope->is_global_scope() && !scope->is_eval_scope()) return true;
244 Variable* result = scope->NewTemporary(
254 // of an immediate inner scope. For example in
257 // coincides with the end of the with scope which is the position of '1'.
v8globals.h 151 class Scope;
462 EVAL_SCOPE, // The top-level scope for an eval source.
463 FUNCTION_SCOPE, // The top-level scope for a function.
464 MODULE_SCOPE, // The scope introduced by a module literal
465 GLOBAL_SCOPE, // The top-level scope for a program or a top-level eval.
466 CATCH_SCOPE, // The scope introduced by catch.
467 BLOCK_SCOPE, // The scope introduced by a new block.
468 WITH_SCOPE // The scope introduced by with.
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // Check that the scope chain contains the expected types of scopes.
84 var scope = exec_state.frame().scope(i);
85 assertTrue(scope.isScope());
86 assertEquals(scopes[i], scope.scopeType());
88 // Check the global object when hitting the global scope.
92 assertPropertiesEqual(this, scope.scopeObject().value());
118 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(number)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-parsing.cc 179 v8::Context::Scope context_scope(context);
549 v8::Context::Scope context_scope(context);
819 // of a scope. We check the scope positions of exactly one scope
820 // nested in the global scope of a program. 'inner source' is the
822 // to the nested scope. 'outer_prefix' and 'outer_suffix' are
823 // parts of the source that belong to the global scope.
1033 i::Scope* scope = function->scope(); local
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 172 // scope (compound statement), and/or before any break/continue statement that
173 // would resume outside the declared scope. We will not handle the case for
174 // goto statements that leave a local scope.
177 // correspond to scope exit points. It then uses an RSASTReplace visitor to
180 // the scope).
191 // corresponding loop scope.
198 // The destructor to execute for this scope/variable.
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 142 Decl *Sema::ActOnProperty(Scope *S, SourceLocation AtLoc,
325 Sema::HandlePropertyInClassExtension(Scope *S,
502 ObjCPropertyDecl *Sema::CreatePropertyDecl(Scope *S,
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp 278 DIScope Scope(curLoc.getScope(ctx));
280 assert((!Scope || Scope.isScope()) &&
281 "Scope of a DebugLoc should be null or a DIScope.");
282 if (!Scope)
285 StringRef fileName(Scope.getFilename());
286 StringRef dirName(Scope.getDirectory());
717 /* Find out if a global variable can be demoted to local scope.
719 * scope and global lifetime. So the conditions to check are :
884 OutStreamer.AddComment("Start of file scope inline assembly")
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 189 v8::HandleScope scope;
353 v8::HandleScope scope; local
355 v8::Context::Scope function_scope(v8_context_);
404 v8::HandleScope scope; local
448 v8::Context::Scope ctx(v8_context_);
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 202 v8::HandleScope scope;
373 v8::HandleScope scope; local
375 v8::Context::Scope function_scope(v8_context_);
421 v8::HandleScope scope; local
465 v8::Context::Scope ctx(v8_context_);
  /external/chromium_org/net/proxy/
proxy_resolver_v8.cc 191 v8::HandleScope scope;
355 v8::HandleScope scope(isolate_);
359 v8::Context::Scope function_scope(context);
408 v8::HandleScope scope(isolate_);
457 v8::Context::Scope ctx(context);

Completed in 1012 milliseconds

1 2 3 4 5 6 7 891011>>