/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
backtracking.rb | 17 scope Symbols { 23 @Symbols_stack.reverse_each do |scope| 24 scope.types.include?(name) and return true 36 scope Symbols; // entire file is a scope 64 scope Symbols; // put parameters and locals into same scope for now 72 scope {
|
/external/chromium_org/chrome/browser/extensions/api/preference/ |
preference_helpers.cc | 40 ExtensionPrefsScope* scope) { 42 *scope = kExtensionPrefsScopeRegular; 44 *scope = kExtensionPrefsScopeRegularOnly; 46 *scope = kExtensionPrefsScopeIncognitoPersistent; 48 *scope = kExtensionPrefsScopeIncognitoSessionOnly;
|
preference_helpers.h | 23 extensions::ExtensionPrefsScope* scope);
|
/external/chromium_org/tools/gn/ |
function_get_target_outputs.cc | 123 Value RunGetTargetOutputs(Scope* scope, 133 Label label = Label::Resolve(scope->GetSourceDir(), 134 ToolchainLabelForScope(scope), args[0], err); 139 // scope will have been stashed in the item collector (they'll be dispatched 142 Scope::ItemVector* collector = scope->GetItemCollector(); 172 GetOutputsForTarget(scope->settings(), target, &files);
|
function_rebase_path.cc | 9 #include "tools/gn/scope.h" 54 Value ConvertOnePath(const Scope* scope, 73 system_path = scope->settings()->build_settings()->GetFullPath( 76 system_path = scope->settings()->build_settings()->GetFullPath( 210 Value RunRebasePath(Scope* scope, 231 const SourceDir& current_dir = scope->GetSourceDir(); 258 return ConvertOnePath(scope, function, inputs, 267 ConvertOnePath(scope, function, inputs.list_value()[i] [all...] |
parse_tree.cc | 13 #include "tools/gn/scope.h" 55 Value AccessorNode::Execute(Scope* scope, Err* err) const { 57 return ExecuteArrayAccess(scope, err); 59 return ExecuteScopeAccess(scope, err); 87 Value AccessorNode::ExecuteArrayAccess(Scope* scope, Err* err) const { 88 Value index_value = index_->Execute(scope, err); 94 const Value* base_value = scope->GetValue(base_.value(), true); 126 Value AccessorNode::ExecuteScopeAccess(Scope* scope, Err* err) const [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
debug-function-scopes.js | 47 // A copy of the scope types from mirror-debugger.js. 77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure); 78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure); 79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure); 80 CheckScope(mirror.scope(3), {}, ScopeType.Global); 110 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block); 112 CheckScope(mirror.scope(1), { l3: 9 }, ScopeType.Block); 113 CheckScope(mirror.scope(2), { l1: 6, l2: 7 }, ScopeType.Block); 114 CheckScope(mirror.scope(3), { v1:3, l0: 0, v3: 5, v6: 11 }, ScopeType.Closure); 115 CheckScope(mirror.scope(4), {}, ScopeType.Global) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SelectorChecker.h | 68 , scope(0) 83 const ContainerNode* scope; member in struct:WebCore::SelectorChecker::SelectorCheckingContext 122 static bool isHostInItsShadowTree(const Element&, BehaviorAtBoundary, const ContainerNode* scope); 180 inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, BehaviorAtBoundary behaviorAtBoundary, const ContainerNode* scope) 182 return scope && scope->isInShadowTree() && scope->shadowHost() == element;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
ScopeChainSidebarPane.js | 33 WebInspector.SidebarPane.call(this, WebInspector.UIString("Scope Variables")); 70 var scope = scopeChain[i]; 72 var subtitle = scope.object.description; 77 switch (scope.type) { 125 var scopeObject = runtimeModel.createScopeRemoteObject(scope.object, new WebInspector.ScopeRef(i, callFrame.id, undefined)); 127 var scopeObject = runtimeModel.createRemoteObject(scope.object); 133 if (scope.type === DebuggerAgent.ScopeType.Global) 135 else if (!foundLocalScope || scope.type === DebuggerAgent.ScopeType.Local || title in this._expandedSections)
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
symbol_table.c | 32 * The linked list of symbols with the same name is ordered by scope 39 * Link to the next symbol in the table with the same scope 41 * The linked list of symbols with the same scope is unordered. Symbols 57 * exist in the same name space at the same scope level. 61 /** Scope depth where this symbol was defined. */ 86 * Element of the scope stack. 89 /** Link to next (inner) scope level. */ 92 /** Linked list of symbols with the same scope. */ 104 /** Top of scope stack. */ 110 /** Current scope depth. * 137 struct scope_level *scope; local 161 struct scope_level *const scope = table->current_scope; local 189 struct scope_level *const scope = calloc(1, sizeof(*scope)); local [all...] |
/external/mesa3d/src/mesa/program/ |
symbol_table.c | 32 * The linked list of symbols with the same name is ordered by scope 39 * Link to the next symbol in the table with the same scope 41 * The linked list of symbols with the same scope is unordered. Symbols 57 * exist in the same name space at the same scope level. 61 /** Scope depth where this symbol was defined. */ 86 * Element of the scope stack. 89 /** Link to next (inner) scope level. */ 92 /** Linked list of symbols with the same scope. */ 104 /** Top of scope stack. */ 110 /** Current scope depth. * 137 struct scope_level *scope; local 161 struct scope_level *const scope = table->current_scope; local 189 struct scope_level *const scope = calloc(1, sizeof(*scope)); local [all...] |
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
ActionTranslator.g | 149 AttributeScope scope = r.getLocalAttributeScope(attrName); 150 if ( scope!=null && !scope.isParameterScope ) { 151 return scope.getAttribute(attrName); 164 return null; // not a valid dynamic scope 191 AttributeScope scope = enclosingRule.getLocalAttributeScope($y.text); 192 if ( scope.isPredefinedRuleScope ) { 196 st.add("scope", $x.text); 207 else if ( scope.isPredefinedLexerRuleScope ) { 215 else if ( scope.isParameterScope ) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
global-load-from-eval-in-with.js | 38 // Test shadowing in eval scope. 42 // Test shadowing in local scope inside an eval scope. 46 // Test shadowing in local scope inside an eval scope. Deeper nesting 51 // Test shadowing in local scope inside an eval scope with eval calls in the eval scopes. 55 // Test shadowing in local scope inside an eval scope with eval calls
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestCallbackInterface.cpp | 41 ScriptState::Scope scope(m_scriptState.get()); 56 ScriptState::Scope scope(m_scriptState.get()); 71 ScriptState::Scope scope(m_scriptState.get()); 92 ScriptState::Scope scope(m_scriptState.get()); 113 ScriptState::Scope scope(m_scriptState.get()) [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptFunctionCall.cpp | 57 ScriptState::Scope scope(m_scriptState.get()); 64 ScriptState::Scope scope(m_scriptState.get()); 71 ScriptState::Scope scope(m_scriptState.get()); 78 ScriptState::Scope scope(m_scriptState.get()); 85 ScriptState::Scope scope(m_scriptState.get()) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/ |
ASTParser.stg | 124 ruleRef(rule,label,elementIndex,args,scope) ::= << 130 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 133 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 139 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 145 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 151 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/ |
ASTParser.stg | 123 ruleRef(rule,label,elementIndex,args,scope) ::= << 129 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 132 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 138 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 144 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 150 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/ |
ASTParser.stg | 95 ruleRef(rule,label,elementIndex,args,scope) ::= << 101 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 104 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 110 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 116 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 122 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/ |
ASTParser.stg | 131 ruleRef(rule,label,elementIndex,args,scope) ::= << 137 ruleRefBang(rule,label,elementIndex,args,scope) ::= "<super.ruleRef(...)>" 140 ruleRefRuleRoot(rule,label,elementIndex,args,scope) ::= << 146 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= << 152 ruleRefBangAndListLabel(rule,label,elementIndex,args,scope) ::= << 158 ruleRefRuleRootAndListLabel(rule,label,elementIndex,args,scope) ::= <<
|
/external/chromium_org/chrome/common/extensions/api/identity/ |
oauth2_manifest_handler.cc | 82 std::string scope; local 83 if (!list->GetString(i, &scope)) { 87 info->scopes.push_back(scope);
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
CustomEventTest.cpp | 67 ScriptState::Scope scope(scriptState()); 109 V8TestingScope scope(isolate); 111 RefPtr<EventListener> listener = TestListener::create(scope.scriptState());
|
/external/chromium_org/v8/test/cctest/ |
test-mementos.cc | 59 v8::HandleScope scope(CcTest::isolate()); 74 v8::HandleScope scope(CcTest::isolate()); 88 v8::HandleScope scope(CcTest::isolate());
|
/external/clang/test/CodeGenCXX/ |
blocks.cpp | 49 struct scope { int x; ~scope(); }; struct in namespace:test1 51 const scope obj = { 5 };
|
/external/chromium_org/build/ |
gypi_to_gn.py | 5 """Converts a given gypi file to a python scope and writes the result to stdout. 8 will return that dictionary as a GN "scope" (see example below). This script 26 "scope", 34 - The "scope" parameter tells GN to interpret the result as a series of GN 67 "scope",
|
/external/chromium_org/gin/ |
shell_runner_unittest.cc | 27 Runner::Scope scope(&runner);
|