/external/chromium_org/tools/gn/ |
function_toolchain.cc | 109 Scope block_scope(scope); 110 block_scope.SetProperty(&kToolchainPropertyKey, toolchain.get()); 111 block->ExecuteBlockInScope(&block_scope, err); 112 block_scope.SetProperty(&kToolchainPropertyKey, NULL); 118 block_scope.GetValue(variables::kGypHeader, true); 125 if (!block_scope.CheckForUnusedVars(err)) 211 Scope block_scope(scope); 212 block->ExecuteBlockInScope(&block_scope, err); 218 if (!ReadString(block_scope, "command", &t.command, err) || 219 !ReadString(block_scope, "depfile", &t.depfile, err) | [all...] |
function_set_defaults.cc | 77 Scope block_scope(scope); 78 block->ExecuteBlockInScope(&block_scope, err); 85 block_scope.NonRecursiveMergeTo(dest, function, "<SHOULD NOT FAIL>", err);
|
functions.h | 45 // resulting block_scope to the function. 48 Scope* block_scope, 76 Scope* block_scope, 83 Scope* block_scope, 306 // Sets up the |block_scope| for executing a target (or something like it). 308 // parent for the |block_scope| when the |block_scope| was created. 320 Scope* block_scope,
|
functions.cc | 34 Scope block_scope(scope); 37 block, args, &block_scope, err)) 41 block->ExecuteBlockInScope(&block_scope, err); 46 rule->block()->ExecuteBlockInScope(&block_scope, err); 50 block_scope.CheckForUnusedVars(err); 88 Scope* block_scope, 99 if (!default_scope->NonRecursiveMergeTo(block_scope, function, 111 block_scope->SetValue(target_name, Value(function, args[0].string_value()), 113 block_scope->MarkUsed(target_name); 309 Scope block_scope(scope) [all...] |
functions_target.cc | 35 Scope block_scope(scope); 37 args, &block_scope, err)) 40 block->ExecuteBlockInScope(&block_scope, err); 44 TargetGenerator::GenerateTarget(&block_scope, function, args, 49 block_scope.CheckForUnusedVars(err); 103 Scope block_scope(scope); 105 args, &block_scope, err)) 108 block->ExecuteBlockInScope(&block_scope, err); 112 TargetGenerator::GenerateTarget(&block_scope, function, args,
|
/external/chromium_org/v8/test/cctest/ |
test-parsing.cc | 857 " ", "{ let block; }", " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 859 " ", "{ let block; }", "; more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 864 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 876 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 878 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 882 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 884 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 886 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 889 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 891 i::BLOCK_SCOPE, i::EXTENDED_MODE } [all...] |
/external/v8/test/cctest/ |
test-parsing.cc | 854 " ", "{ let block; }", " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 856 " ", "{ let block; }", "; more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 861 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 873 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 875 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 879 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 881 i::BLOCK_SCOPE, i::EXTENDED_MODE }, 883 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 886 " more;", i::BLOCK_SCOPE, i::EXTENDED_MODE }, 888 i::BLOCK_SCOPE, i::EXTENDED_MODE } [all...] |
/external/v8/src/ |
full-codegen.cc | 919 if (stmt->block_scope() != NULL) { 921 scope_ = stmt->block_scope(); 948 if (stmt->block_scope() != NULL) { [all...] |
scopes.cc | 227 BLOCK_SCOPE, 725 case BLOCK_SCOPE: return "block"; [all...] |
parser.cc | 1996 Scope* block_scope = NewScope(top_scope_, BLOCK_SCOPE); local [all...] |
ast.h | 423 Scope* block_scope() const { return block_scope_; } function in class:v8::internal::Block 424 void set_block_scope(Scope* block_scope) { block_scope_ = block_scope; } [all...] |
full-codegen.h | 210 if (statement()->AsBlock()->block_scope() != NULL) {
|
scopes.h | 273 bool is_block_scope() const { return type_ == BLOCK_SCOPE; }
|
v8globals.h | 467 BLOCK_SCOPE, // The scope introduced by a new block.
|
runtime.cc | [all...] |
hydrogen.cc | [all...] |
/external/chromium_org/v8/src/ |
parser.cc | 1739 Scope* block_scope = NewScope(top_scope_, BLOCK_SCOPE); local [all...] |
scopes.cc | 254 BLOCK_SCOPE, 788 case BLOCK_SCOPE: return "block"; [all...] |
scopes.h | 290 bool is_block_scope() const { return scope_type_ == BLOCK_SCOPE; }
|
v8globals.h | 461 BLOCK_SCOPE, // The scope introduced by a new block.
|
runtime.cc | [all...] |