/external/chromium_org/v8/src/ |
debug.cc | 409 HandleScope scope(debug_info_->GetIsolate()); 423 HandleScope scope(isolate); 772 HandleScope scope(isolate); 859 HandleScope scope(isolate_); 945 HandleScope scope(isolate_); [all...] |
typing.cc | 58 Scope* scope = info->scope(); local 62 if (scope->is_function_scope() && scope->function() != NULL) { 63 RECURSE(visitor->VisitVariableDeclaration(scope->function())); 65 RECURSE(visitor->VisitDeclarations(scope->declarations()));
|
ic.cc | 153 HandleScope scope(isolate()); 316 HandleScope scope(isolate()); 325 HandleScope scope(isolate()); [all...] |
/external/chromium_org/v8/src/ia32/ |
deoptimizer-ia32.cc | 50 HandleScope scope(isolate); 520 CpuFeatureScope scope(masm(), SSE2); 555 AllowExternalCallThatCantCauseGC scope(masm()); 571 CpuFeatureScope scope(masm(), SSE2); 613 AllowExternalCallThatCantCauseGC scope(masm()); 668 CpuFeatureScope scope(masm(), SSE2);
|
full-codegen-ia32.cc | 145 int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize; 155 // Open a frame scope to indicate that there is a frame on the stack. The 156 // MANUAL indicates that the scope shouldn't actually generate code to set up 168 int locals_count = info->scope()->num_stack_slots(); 184 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 189 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) { 190 __ Push(info->scope()->GetScopeInfo()); 204 int num_parameters = info->scope()->num_parameters(); 206 Variable* var = scope()->parameter(i); 225 Variable* arguments = scope()->arguments() [all...] |
lithium-codegen-ia32.cc | 81 // Open a frame scope to indicate that there is a frame on the stack. The 82 // MANUAL indicates that the scope shouldn't actually generate code to set up 132 // issues when the stack allocated buffer goes out of scope. 172 int receiver_offset = (scope()->num_parameters() + 1) * kPointerSize; 191 __ mov(ecx, Immediate(scope()->num_parameters() + 2)); 272 CpuFeatureScope scope(masm(), SSE2); 303 int num_parameters = scope()->num_parameters(); 305 Variable* var = scope()->parameter(i); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
ClientRulesEngine.java | 418 // Compute a search scope: We need to merge all the subclasses 420 IJavaSearchScope scope = SearchEngine.createWorkspaceScope(); 454 // class, if any) and merge the two arrays - then create a scope from these 473 scope = SearchEngine.createJavaSearchScope(subTypes, IJavaSearchScope.SOURCES); 484 scope, 551 IJavaSearchScope scope = SearchEngine.createWorkspaceScope(); 556 // class, if any) and merge the two arrays - then create a scope from these 565 scope = SearchEngine.createJavaSearchScope(viewTypes, IJavaSearchScope.SOURCES); 576 scope,
|
/external/chromium/chrome/common/extensions/docs/js/ |
api_page_generator.js | 474 function getFullyQualifiedFunctionName(scope, func) { 475 return (getObjectName(scope) || getModuleName()) + "." + func.name; 496 function getAnchorName(type, name, scope) { 497 return type + "-" + (scope ? scope + "-" : "") + name;
|
/external/chromium_org/v8/test/cctest/ |
test-strings.cc | 573 v8::HandleScope scope(CcTest::isolate()); 864 v8::HandleScope scope(CcTest::isolate()); [all...] |
/external/iproute2/ip/ |
iproute.c | 69 fprintf(stderr, " [ type TYPE ] [ scope SCOPE ]\n"); 73 fprintf(stderr, " [ scope SCOPE ] [ metric METRIC ]\n"); 84 fprintf(stderr, "SCOPE := [ host | link | global | NUMBER ]\n"); 102 int scope, scopemask; member in struct:__anon21159 163 if ((filter.scope^r->rtm_scope)&filter.scopemask) 394 fprintf(fp, " scope %s ", rtnl_rtscope_n2a(r->rtm_scope, b1, sizeof(b1))); 775 } else if (strcmp(*argv, "scope") == 0) { 776 __u32 scope = 0 local 1156 __u32 scope = 0; local [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
CodeGenTreeWalker.g | 339 : ^( 'scope' ID ( ^(AMPERSAND .*) )* ACTION ) 526 : ^( 'scope' ( ^(AMPERSAND .*) )* (ACTION)? ( ID )* ) 940 atom[GrammarAST scope, GrammarAST label, GrammarAST astSuffix] 970 grammar.checkRuleReference(scope, $r, $rarg, currentRuleName); 972 if ( scope!=null ) { 973 scopeName = scope.getText(); 982 if ( scope!=null ) { // scoped rule ref 983 Grammar scopeG = grammar.composite.getGrammar(scope.getText()); 984 $code.add("scope", scopeG); 990 $code.add("scope", rdef.grammar) [all...] |
/external/v8/src/ |
debug.cc | 389 HandleScope scope; local 736 HandleScope scope(isolate); 815 HandleScope scope(isolate_); 897 HandleScope scope(isolate_); 3366 v8::HandleScope scope; local [all...] |
ic.cc | 143 HandleScope scope; local 283 HandleScope scope(isolate()); 292 HandleScope scope(isolate()); 1997 HandleScope scope; local [all...] |
isolate.cc | 760 HandleScope scope; 833 HandleScope scope(this); 876 HandleScope scope(this); 898 HandleScope scope; local 965 HandleScope scope; local 1060 HandleScope scope; local 1201 HandleScope scope; local 1212 HandleScope scope; local 1855 HandleScope scope; local [all...] |
/external/chromium_org/v8/src/arm/ |
full-codegen-arm.cc | 154 int receiver_offset = info->scope()->num_parameters() * kPointerSize; 160 // Open a frame scope to indicate that there is a frame on the stack. The 161 // MANUAL indicates that the scope shouldn't actually generate code to set up 179 int locals_count = info->scope()->num_stack_slots(); 193 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 198 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) { 199 __ Push(info->scope()->GetScopeInfo()); 212 int num_parameters = info->scope()->num_parameters(); 214 Variable* var = scope()->parameter(i); 231 Variable* arguments = scope()->arguments() [all...] |
/external/chromium_org/v8/src/mips/ |
full-codegen-mips.cc | 162 int receiver_offset = info->scope()->num_parameters() * kPointerSize; 168 // Open a frame scope to indicate that there is a frame on the stack. The 169 // MANUAL indicates that the scope shouldn't actually generate code to set up 183 int locals_count = info->scope()->num_stack_slots(); 197 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 202 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) { 203 __ Push(info->scope()->GetScopeInfo()); 216 int num_parameters = info->scope()->num_parameters(); 218 Variable* var = scope()->parameter(i); 235 Variable* arguments = scope()->arguments() [all...] |
/external/chromium_org/v8/src/x64/ |
full-codegen-x64.cc | 144 int receiver_offset = (info->scope()->num_parameters() + 1) * kPointerSize; 150 // Open a frame scope to indicate that there is a frame on the stack. The 151 // MANUAL indicates that the scope shouldn't actually generate code to set up 163 int locals_count = info->scope()->num_stack_slots(); 179 int heap_slots = info->scope()->num_heap_slots() - Context::MIN_CONTEXT_SLOTS; 184 if (FLAG_harmony_scoping && info->scope()->is_global_scope()) { 185 __ Push(info->scope()->GetScopeInfo()); 199 int num_parameters = info->scope()->num_parameters(); 201 Variable* var = scope()->parameter(i); 218 Variable* arguments = scope()->arguments() [all...] |
/external/chromium_org/remoting/webapp/ |
client_plugin_async.js | 46 * @param {string} scope OAuth scope to request the token for. 49 tokenUrl, hostPublicKey, scope) {}; 299 typeof message.data['scope'] != 'string') { 306 var scope = /** @type {string} */ message.data['scope']; 307 this.fetchThirdPartyTokenHandler(tokenUrl, hostPublicKey, scope);
|
/external/v8/test/cctest/ |
test-parsing.cc | 178 v8::Context::Scope context_scope(context); 548 v8::Context::Scope context_scope(context); 817 // of a scope. We check the scope positions of exactly one scope 818 // nested in the global scope of a program. 'inner source' is the 820 // to the nested scope. 'outer_prefix' and 'outer_suffix' are 821 // parts of the source that belong to the global scope. 1027 i::Scope* scope = function->scope(); local [all...] |
/external/chromium_org/base/debug/ |
trace_event_unittest.cc | 413 } // Scope close causes TRACE_EVENT0 etc to send their END events. 463 std::string scope; local 464 EXPECT_TRUE((item && item->GetString("s", &scope))); 465 EXPECT_EQ("g", scope); 469 std::string scope; local 470 EXPECT_TRUE((item && item->GetString("s", &scope))); 471 EXPECT_EQ("p", scope); 477 std::string scope; local 478 EXPECT_TRUE((item && item->GetString("s", &scope))); 479 EXPECT_EQ("t", scope); [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptController.cpp | 355 v8::Context::Scope scope(v8Context); 465 v8::Context::Scope scope(v8Context); 502 v8::Context::Scope scope(v8Context); 550 v8::HandleScope scope; 675 v8::Context::Scope scope(v8Context); 701 v8::Context::Scope contextScope(context) [all...] |
/external/v8/src/ia32/ |
deoptimizer-ia32.cc | 50 HandleScope scope(isolate); 121 HandleScope scope(isolate); [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/third_party/libjingle/source/talk/base/ |
win32socketserver.cc | 749 CritScope scope(&cs_); 763 CritScope scope(&cs_); 776 CritScope scope(&cs_);
|
/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_);
|