/external/chromium_org/v8/test/mjsunit/ |
debug-evaluate-locals-optimized.js | 84 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType()); 85 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType()); 89 frame.scope(0).scopeObject().value()[name]); 96 frame.scope(0).scopeObject().value()[arg_name]); 127 // The bottom frame only have the global scope. 129 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
|
/external/v8/src/ |
compiler.h | 62 Scope* scope() const { return scope_; } function in class:v8::internal::BASE_EMBEDDED 63 Scope* global_scope() const { return global_scope_; } 101 void SetScope(Scope* scope) { 103 scope_ = scope; 105 void SetGlobalScope(Scope* global_scope) { 232 // The scope of the function literal as a convenience. Set to indicate 234 Scope* scope_; 235 // The global scope provided as a convenience [all...] |
parser.cc | 410 Scope* Parser::NewScope(Scope* parent, ScopeType type) { 411 Scope* result = new(zone()) Scope(parent, type); 462 // FunctionState and BlockState together implement the parser's scope stack. 463 // The parser's current scope is in top_scope_. The BlockState and 464 // FunctionState constructors push on the scope stack and the destructors 470 BlockState(Parser* parser, Scope* scope) 473 parser->top_scope_ = scope; 605 { Scope* scope = NewScope(top_scope_, GLOBAL_SCOPE); local 707 Scope* scope = NewScope(top_scope_, GLOBAL_SCOPE); local 1152 Scope* scope = NewScope(top_scope_, EVAL_SCOPE); local 1312 Scope* scope = NewScope(top_scope_, MODULE_SCOPE); local 4396 Scope* scope = (type == FunctionLiteral::DECLARATION && !is_extended_mode()) local [all...] |
/external/v8/test/mjsunit/ |
debug-evaluate-locals-optimized-double.js | 86 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType()); 87 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType()); 90 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]); 96 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]); 126 // The bottom frame only have the global scope. 128 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
|
debug-evaluate-locals-optimized.js | 76 assertEquals(debug.ScopeType.Local, frame.scope(0).scopeType()); 77 assertEquals(debug.ScopeType.Global, frame.scope(1).scopeType()); 80 assertEquals(expected_locals[name], frame.scope(0).scopeObject().value()[name]); 86 assertEquals(arg_value, frame.scope(0).scopeObject().value()[arg_name]); 116 // The bottom frame only have the global scope. 118 assertEquals(debug.ScopeType.Global, frame.scope(0).scopeType());
|
/external/doclava/src/com/google/doclava/ |
Stubs.java | 346 stream.print(cl.scope() + " "); 520 stream.print(method.scope() + " "); 584 stream.print(field.scope() + " "); 832 String scope = cl.scope(); local 848 + "\"\n" + " visibility=\"" + scope + "\"\n" 885 String scope = mi.scope(); local 925 String scope = mi.scope(); local 964 String scope = fi.scope(); local [all...] |
/external/chromium_org/v8/src/x64/ |
builtins-x64.cc | 94 FrameScope scope(masm, StackFrame::INTERNAL); 120 FrameScope scope(masm, StackFrame::INTERNAL); 155 FrameScope scope(masm, StackFrame::CONSTRUCT); 469 // Open a C++ scope for the FrameScope. 487 FrameScope scope(masm, StackFrame::INTERNAL); 517 FrameScope scope(masm, StackFrame::INTERNAL); 591 FrameScope scope(masm, StackFrame::INTERNAL); 618 FrameScope scope(masm, StackFrame::INTERNAL); 655 FrameScope scope(masm, StackFrame::MANUAL); 681 FrameScope scope(masm, StackFrame::INTERNAL) [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBDatabase.cpp | 258 PassRefPtr<IDBTransaction> IDBDatabase::transaction(ScriptExecutionContext* context, const Vector<String>& scope, const String& modeString, ExceptionState& es) 262 if (!scope.size()) { 282 for (size_t i = 0; i < scope.size(); ++i) { 283 int64_t objectStoreId = findObjectStoreId(scope[i]); 294 RefPtr<IDBTransaction> transaction = IDBTransaction::create(context, transactionId, scope, mode, this);
|
IDBRequest.cpp | 267 DOMRequestState::Scope scope(m_requestState); 293 DOMRequestState::Scope scope(m_requestState); 311 DOMRequestState::Scope scope(m_requestState); 338 DOMRequestState::Scope scope(m_requestState); 370 DOMRequestState::Scope scope(m_requestState) [all...] |
/external/chromium_org/v8/src/ |
parser.cc | 414 Scope* Parser::NewScope(Scope* parent, ScopeType scope_type) { 415 Scope* result = new(zone()) Scope(parent, scope_type, zone()); 466 // FunctionState and BlockState together implement the parser's scope stack. 467 // The parser's current scope is in top_scope_. The BlockState and 468 // FunctionState constructors push on the scope stack and the destructors 474 BlockState(Parser* parser, Scope* scope) 477 parser->top_scope_ = scope; 620 { Scope* scope = NewScope(top_scope_, GLOBAL_SCOPE); local 746 Scope* scope = NewScope(top_scope_, GLOBAL_SCOPE); local 899 Scope* scope = NewScope(top_scope_, EVAL_SCOPE); local 1043 Scope* scope = NewScope(top_scope_, MODULE_SCOPE); local 1154 Scope* scope = NewScope(top_scope_, MODULE_SCOPE); local 4282 Scope* scope = local [all...] |
/external/chromium/chrome/browser/history/ |
history_unittest.cc | 466 // to have a non-NULL page ID scope. 607 static const void* scope = static_cast<void*>(this); local 611 history->AddPage(existing_url, scope, 0, GURL(), 630 history->AddPage(link_url, scope, 0, GURL(), 648 history->AddPage(GURL("http://www.google.com/foo"), scope, 3, existing_url, 680 static const void* scope = static_cast<void*>(this); local 683 history->AddPage(url0, scope, 0, GURL(), 686 history->AddPage(url1, scope, 0, GURL(), 699 history->AddPage(url2, scope, 0, GURL(), 713 history->AddPage(url2, scope, 0, GURL() [all...] |
/external/chromium_org/v8/test/cctest/ |
test-thread-termination.cc | 118 v8::HandleScope scope(v8::Isolate::GetCurrent()); 123 v8::Context::Scope context_scope(context); 138 v8::HandleScope scope(v8::Isolate::GetCurrent()); 143 v8::Context::Scope context_scope(context); 178 v8::HandleScope scope(v8::Isolate::GetCurrent()); 182 v8::Context::Scope context_scope(context); 200 v8::HandleScope scope(CcTest::default_isolate()); 206 v8::Context::Scope context_scope(context); 302 v8::HandleScope scope(v8::Isolate::GetCurrent()); 312 v8::Context::Scope context_scope(context) 394 v8::HandleScope scope; local [all...] |
test-cpu-profiler.cc | 129 i::HandleScope scope(isolate); 195 i::HandleScope scope(isolate); 266 i::HandleScope scope(isolate); 348 v8::HandleScope scope(env->GetIsolate()); 399 v8::Isolate::Scope isolateScope(isolate); 401 v8::HandleScope scope(isolate); 415 v8::HandleScope scope(env->GetIsolate()); 562 v8::HandleScope scope(env->GetIsolate()); 623 v8::HandleScope scope(env->GetIsolate()); 725 v8::HandleScope scope(env->GetIsolate()) [all...] |
test-assembler-arm.cc | 51 HandleScope scope(isolate); 78 HandleScope scope(isolate); 116 HandleScope scope(isolate); 163 HandleScope scope(isolate); 219 HandleScope scope(isolate); 246 CpuFeatureScope scope(&assm, VFP3); variable 367 HandleScope scope(isolate); 372 CpuFeatureScope scope(&assm, ARMv7); variable 404 HandleScope scope(isolate); 409 CpuFeatureScope scope(&assm, ARMv7) variable 1064 CpuFeatureScope scope(&assm, VFP3); variable 1278 CpuFeatureScope scope(&assm, NEON); variable [all...] |
/external/v8/test/cctest/ |
test-serialize.cc | 277 v8::HandleScope scope; local 293 v8::HandleScope scope; local 306 v8::HandleScope scope; local 319 v8::HandleScope scope; local 336 v8::HandleScope scope; local 358 { HandleScope scope; local 481 { HandleScope scope; local 659 // but using an always-allocate scope is fine for now.
|
/external/chromium_org/chrome_frame/ |
CFInstall.js | 11 (function(scope) { 13 if (scope['CFInstall']) { 19 * specify the scope to search in. If a node is passed, it's returned as-is. 38 if (scope.CFInstall._force) { 39 return scope.CFInstall._forceValue; 353 // expose CFInstall to the external scope. We've already checked to make 355 scope.CFInstall = CFInstall;
|
/external/chromium_org/v8/src/ia32/ |
builtins-ia32.cc | 92 FrameScope scope(masm, StackFrame::INTERNAL); 118 FrameScope scope(masm, StackFrame::INTERNAL); 153 FrameScope scope(masm, StackFrame::CONSTRUCT); 456 FrameScope scope(masm, StackFrame::INTERNAL); 523 FrameScope scope(masm, StackFrame::INTERNAL); 549 FrameScope scope(masm, StackFrame::INTERNAL); 586 FrameScope scope(masm, StackFrame::MANUAL); 612 FrameScope scope(masm, StackFrame::INTERNAL); 631 FrameScope scope(masm, StackFrame::INTERNAL); 687 FrameScope scope(masm, StackFrame::INTERNAL) [all...] |
lithium-gap-resolver-ia32.cc | 322 CpuFeatureScope scope(cgen_->masm(), SSE2); 355 CpuFeatureScope scope(cgen_->masm(), SSE2); 375 CpuFeatureScope scope(cgen_->masm(), SSE2); 471 CpuFeatureScope scope(cgen_->masm(), SSE2); 480 CpuFeatureScope scope(cgen_->masm(), SSE2); 493 CpuFeatureScope scope(cgen_->masm(), SSE2);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
pcm.h | 393 /** #SND_PCM_TYPE_METER scope handle */ [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
pcm.h | 393 /** #SND_PCM_TYPE_METER scope handle */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
pcm.h | 393 /** #SND_PCM_TYPE_METER scope handle */ [all...] |
/external/chromium_org/remoting/webapp/ |
third_party_token_fetcher.js | 32 * @param {string} scope OAuth scope to request the token for. 38 tokenUrl, hostPublicKey, scope, tokenUrlPatterns, 41 this.tokenScope_ = scope; 138 'scope': this.tokenScope_,
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
Grammar.java | 284 /** Map a scope to a map of name:action pairs. 1530 String scope = getDefaultActionScope(type); local 1672 Grammar scope = composite.getGrammar(scopeName); local 1723 AttributeScope scope = new AttributeScope(this, name, scopeAction); local 1729 AttributeScope scope = new AttributeScope(this, ruleName, retAction); local 1735 AttributeScope scope = new AttributeScope(this, ruleName, scopeAction); local 1741 AttributeScope scope = new AttributeScope(this, ruleName, argAction); local [all...] |
/external/chromium_org/chrome_frame/cfinstall/src/stub/ |
cfinstall.js | 109 // receives the outer scope as its only parameter. In non-compiled mode, the 110 // outer scope is window. 112 // Create a single instance of CFInstall and place it in the outer scope
|
/external/chromium_org/third_party/mesa/src/bin/ |
mklib | 497 # Make the 'mapfile.scope' linker mapfile 498 echo "{" > mapfile.scope 499 echo "global:" >> mapfile.scope 500 sed 's/$/;/' ${EXPORTS} >> mapfile.scope 501 echo "local:" >> mapfile.scope 502 echo " *;" >> mapfile.scope 503 echo "};" >> mapfile.scope 504 OPTS="${OPTS} -Wl,-Mmapfile.scope"
|