Searched refs:scope (Results 126 - 150 of 998) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cython/src/Cython/Compiler/Tests/
H A DTestVisitor.py18 scope = ModuleScope('test', None, None)
20 scope=scope, full_module_name='test',
/external/chromium_org/ui/keyboard/resources/
H A Dapi_adapter.js33 (function(scope) {
53 scope.keyboardLocked = keyboardLocked;
54 scope.lockKeyboard = lockKeyboard;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2073.js81 function inc(scope) {
82 scope.counter = scope.counter + 1;
/external/libnl/src/
H A Dnl-fib-lookup.c21 " -s, --scope <scope> Routing scope\n"
36 int table = RT_TABLE_UNSPEC, scope = RT_SCOPE_UNIVERSE; local
44 {"scope", 1, 0, 's'},
63 scope = strtoul(optarg, NULL, 0);
92 flnl_request_set_scope(request, scope);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg135 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
281 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
339 public void <ruleName>_fragment(<ruleDescriptor.parameterScope:parameterScope(scope=it)>) throws RecognitionException {
408 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
409 <returnScope(scope=ruleDescriptor.returnScope)>
413 public <returnType()> <ruleName>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>) throw(antlr3::BaseRecognitionException)
518 void m<ruleName>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>) throw(antlr3::BaseRecognitionException)
1082 * out of scope */
1152 globalAttributeScope(scope) ::= <<
1153 <if(scope
[all...]
/external/chromium_org/tools/gn/
H A Dtarget_generator.cc18 #include "tools/gn/scope.h"
25 Scope* scope,
29 scope_(scope),
59 void TargetGenerator::GenerateTarget(Scope* scope, argument
74 const Label& toolchain_label = ToolchainLabelForScope(scope);
75 Label label(scope->GetSourceDir(), args[0].string_value(),
81 scoped_ptr<Target> target(new Target(scope->settings(), label));
86 CopyTargetGenerator generator(target.get(), scope, function_call, err);
89 ActionTargetGenerator generator(target.get(), scope, function_call,
93 ActionTargetGenerator generator(target.get(), scope, function_cal
24 TargetGenerator(Target* target, Scope* scope, const FunctionCallNode* function_call, Err* err) argument
[all...]
H A Dfunction_rebase_path.cc9 #include "tools/gn/scope.h"
54 Value ConvertOnePath(const Scope* scope, argument
73 system_path = scope->settings()->build_settings()->GetFullPath(
76 system_path = scope->settings()->build_settings()->GetFullPath(
210 Value RunRebasePath(Scope* scope, argument
231 const SourceDir& current_dir = scope->GetSourceDir();
256 return ConvertOnePath(scope, function, inputs,
265 ConvertOnePath(scope, function, inputs.list_value()[i],
H A Dparse_tree.cc13 #include "tools/gn/scope.h"
91 Value AccessorNode::Execute(Scope* scope, Err* err) const { argument
93 return ExecuteArrayAccess(scope, err);
95 return ExecuteScopeAccess(scope, err);
124 Value AccessorNode::ExecuteArrayAccess(Scope* scope, Err* err) const { argument
125 Value index_value = index_->Execute(scope, err);
131 const Value* base_value = scope->GetValue(base_.value(), true);
163 Value AccessorNode::ExecuteScopeAccess(Scope* scope, Err* err) const { argument
165 // accessed in the given scope. The value "a" might be in some normal nested
166 // scope an
217 Execute(Scope* scope, Err* err) const argument
315 Execute(Scope* scope, Err* err) const argument
378 Execute(Scope* scope, Err* err) const argument
418 Execute(Scope* scope, Err* err) const argument
458 Execute(Scope* scope, Err* err) const argument
511 Execute(Scope* scope, Err* err) const argument
562 Execute(Scope* scope, Err* err) const argument
596 Execute(Scope* scope, Err* err) const argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-codegen-deopt.cc42 explicit DeoptCodegenTester(HandleAndZoneScope* scope, const char* src) argument
43 : scope_(scope),
45 info(function, scope->main_zone()),
111 explicit TrivialDeoptCodegenTester(HandleAndZoneScope* scope) argument
112 : DeoptCodegenTester(scope,
181 HandleAndZoneScope scope; local
187 TrivialDeoptCodegenTester t(&scope);
202 HandleAndZoneScope scope; local
208 TrivialDeoptCodegenTester t(&scope);
214 Isolate* isolate = scope
227 TrivialRuntimeDeoptCodegenTester(HandleAndZoneScope* scope) argument
291 HandleAndZoneScope scope; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dbacktracking.rb17 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/
H A Dpreference_helpers.cc40 ExtensionPrefsScope* scope) {
42 *scope = kExtensionPrefsScopeRegular;
44 *scope = kExtensionPrefsScopeRegularOnly;
46 *scope = kExtensionPrefsScopeIncognitoPersistent;
48 *scope = kExtensionPrefsScopeIncognitoSessionOnly;
39 StringToScope(const std::string& s, ExtensionPrefsScope* scope) argument
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DModuleNode.py33 module_node.scope.check_c_classes_pxd()
37 module_node.scope.check_c_classes()
38 module_node.scope.check_c_functions()
48 # scope The module scope.
55 def merge_in(self, tree, scope, merge_scope=False):
56 # Merges in the contents of another tree, and possibly scope. With the
70 self.scope.utility_code_list.extend(scope.utility_code_list)
77 extend_if_not_in(self.scope
[all...]
H A DMain.py90 def process_pxd(self, source_desc, scope, module_name):
98 pipeline = Pipeline.create_pxd_pipeline(self, scope, module_name)
107 # Finds and returns the module scope corresponding to
111 # If relative_to is not None, it must be a module scope,
119 scope = None
129 scope = relative_to.lookup_submodule(module_name)
130 if not scope:
134 scope = relative_to.find_submodule(module_name)
135 if not scope:
138 scope
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSelectorChecker.h65 , scope(nullptr)
82 RawPtrWillBeMember<const ContainerNode> scope; member in struct:blink::SelectorChecker::SelectorCheckingContext
124 static bool isHostInItsShadowTree(const Element&, const ContainerNode* scope);
177 inline bool SelectorChecker::isHostInItsShadowTree(const Element& element, const ContainerNode* scope) argument
179 return scope && scope->isInShadowTree() && scope->shadowHost() == element;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DScopeChainSidebarPane.js70 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/
H A Dsymbol_table.c32 * 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.
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/
H A Dsymbol_table.c32 * 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.
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/
H A DActionTranslator.g149 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
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Ddata.py56 def LookupKind(kinds, spec, scope):
57 """Tries to find which Kind a spec refers to, given the scope in which its
58 referenced. Starts checking from the narrowest scope to most general. For
64 |scope| is a tuple that looks like (namespace, struct/interface), referring
68 for i in xrange(len(scope), -1, -1):
71 test_spec += '.'.join(scope[:i]) + '.'
79 def LookupValue(values, name, scope, kind):
87 for i in reversed(xrange(len(scope) + 1)):
88 test_spec = '.'.join(scope[:i])
98 def FixupExpression(module, value, scope, kin
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptFunctionCall.cpp57 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());
92 ScriptState::Scope scope(m_scriptState.get());
99 ScriptState::Scope scope(m_scriptState.get());
112 ScriptState::Scope scope(m_scriptState.get());
138 ScriptState::Scope scope(m_scriptState.get());
175 ScriptState::Scope scope(m_scriptStat
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestCallbackInterface.cpp40 ScriptState::Scope scope(m_scriptState.get());
54 ScriptState::Scope scope(m_scriptState.get());
71 ScriptState::Scope scope(m_scriptState.get());
91 ScriptState::Scope scope(m_scriptState.get());
111 ScriptState::Scope scope(m_scriptState.get());
131 ScriptState::Scope scope(m_scriptState.get());
151 ScriptState::Scope scope(m_scriptState.get());
177 ScriptState::Scope scope(m_scriptState.get());
203 ScriptState::Scope scope(m_scriptState.get());
223 ScriptState::Scope scope(m_scriptStat
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLabelElement.cpp225 void HTMLLabelElement::updateLabel(TreeScope& scope, const AtomicString& oldForAttributeValue, const AtomicString& newForAttributeValue) argument
234 scope.removeLabel(oldForAttributeValue, this);
236 scope.addLabel(newForAttributeValue, this);
242 TreeScope& scope = treeScope(); local
243 if (scope.shouldCacheLabelsByForAttribute())
244 updateLabel(scope, oldValue, newValue);
254 TreeScope& scope = insertionPoint->treeScope(); local
255 if (scope == treeScope() && scope.shouldCacheLabelsByForAttribute())
256 updateLabel(scope, nullAto
[all...]
/external/chromium_org/native_client_sdk/src/tools/
H A Ddecode_dump.py161 for scope in frame['scopes']:
162 trace.append(scope)
172 for scope in trace:
174 scope['function'],
175 scope['filename'],
176 scope['lineno']))
/external/chromium_org/v8/src/
H A Dscopeinfo.cc16 Handle<ScopeInfo> ScopeInfo::Create(Scope* scope, Zone* zone) { argument
18 ZoneList<Variable*> stack_locals(scope->StackLocalCount(), zone);
19 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone);
20 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
24 DCHECK(scope->StackLocalCount() == stack_local_count);
25 DCHECK(scope->ContextLocalCount() == context_local_count);
30 if (scope->is_function_scope() && scope->function() != NULL) {
31 Variable* var = scope->function()->proxy()->var();
47 const int parameter_count = scope
549 Create( Isolate* isolate, Interface* interface, Scope* scope) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-set-variable-value.js47 var scope = exec_state.frame(0).scope(scope_number);
48 scope.setVariableValue(variable_name, new_value);
80 // Accepts a closure 'fun' that returns a variable from it's outer scope.
90 var scope = fun_mirror.scope(scope_number);
91 scope.setVariableValue(variable_name, new_value);
219 // Test local scope.

Completed in 2039 milliseconds

1234567891011>>