HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 101 - 125 of 1184) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
extension_pref_value_map.h 88 extensions::ExtensionPrefsScope scope,
95 extensions::ExtensionPrefsScope scope);
158 extensions::ExtensionPrefsScope scope) const;
162 extensions::ExtensionPrefsScope scope);
  /external/chromium_org/components/policy/core/common/
policy_loader_win.h 75 // Loads and parses GPO policy in |policy_object_list| for scope |scope|. If
79 bool LoadGPOPolicy(PolicyScope scope,
87 bool ReadPolicyFromGPO(PolicyScope scope,
91 // Parses Chrome policy from |gpo_dict| for the given |scope| and |level| and
95 PolicyScope scope,
100 PolicyScope scope,
policy_map.h 27 PolicyScope scope; member in struct:policy::PolicyMap::Entry
65 PolicyScope scope,
88 // will have |level| and |scope| in their entries. Existing entries are
92 PolicyScope scope);
  /external/chromium_org/media/webm/
webm_content_encodings.h 23 enum Scope {
58 Scope scope() const { return scope_; } function in class:media::ContentEncoding
59 void set_scope(Scope scope) { scope_ = scope; }
77 Scope scope_;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowLifecycleNotifier.cpp 64 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDOMWindowObservers);
71 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDOMWindowObservers);
78 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDOMWindowObservers);
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.cc 50 BeginOperationScoper scope; local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
72 BeginOperationScoper scope; local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
95 BeginOperationScoper scope; local
96 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
122 BeginOperationScoper scope; local
123 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
143 BeginOperationScoper scope; local
144 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr())
163 BeginOperationScoper scope; local
183 BeginOperationScoper scope; local
203 BeginOperationScoper scope; local
224 BeginOperationScoper scope; local
248 BeginOperationScoper scope; local
286 BeginOperationScoper scope; local
325 BeginOperationScoper scope; local
346 BeginOperationScoper scope; local
376 BeginOperationScoper scope; local
398 BeginOperationScoper scope; local
417 BeginOperationScoper scope; local
436 BeginOperationScoper scope; local
458 BeginOperationScoper scope; local
479 BeginOperationScoper scope; local
    [all...]
  /external/chromium_org/
PRESUBMIT_test.py 78 scope = [(1, '#include <csystem.h>'),
81 all_linenums = [linenum for (linenum, _) in scope]
83 warnings = PRESUBMIT._CheckIncludeOrderForScope(scope, mock_input_api,
88 scope = [(10, '#include <cppsystem>'),
91 all_linenums = [linenum for (linenum, _) in scope]
93 warnings = PRESUBMIT._CheckIncludeOrderForScope(scope, mock_input_api,
99 scope = [(10, '#include <cppsystem>'),
102 all_linenums = [linenum for (linenum, _) in scope]
104 warnings = PRESUBMIT._CheckIncludeOrderForScope(scope, mock_input_api,
110 scope = [(10, '#include "acustom.h"')
    [all...]
  /external/chromium_org/tools/gn/
parse_tree.cc 13 #include "tools/gn/scope.h"
55 Value AccessorNode::Execute(Scope* scope, Err* err) const {
56 Value index_value = index_->Execute(scope, err);
62 const Value* base_value = scope->GetValue(base_.value(), true);
121 Value BinaryOpNode::Execute(Scope* scope, Err* err) const {
122 return ExecuteBinaryOperator(scope, this, left_.get(), right_.get(), err);
153 Value BlockNode::Execute(Scope* containing_scope, Err* err) const {
155 Scope our_scope(containing_scope)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 135 <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.attributes)
    [all...]
  /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 39 ExtensionPrefsScope* scope) {
41 *scope = kExtensionPrefsScopeRegular;
43 *scope = kExtensionPrefsScopeRegularOnly;
45 *scope = kExtensionPrefsScopeIncognitoPersistent;
47 *scope = kExtensionPrefsScopeIncognitoSessionOnly;
  /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/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/v8/src/
scopeinfo.cc 41 Handle<ScopeInfo> ScopeInfo::Create(Scope* scope) {
43 ZoneList<Variable*> stack_locals(scope->StackLocalCount());
44 ZoneList<Variable*> context_locals(scope->ContextLocalCount());
45 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
49 ASSERT(scope->StackLocalCount() == stack_local_count);
50 ASSERT(scope->ContextLocalCount() == context_local_count);
55 if (scope->is_function_scope() && scope->function() != NULL) {
56 Variable* var = scope->function()->var()
    [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/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/core/events/
EventRetargeter.cpp 132 TreeScope* scope = &eventPath[i].node()->treeScope(); local
133 if (scope == lastTreeScope) {
137 adjustedTarget = findRelatedNode(scope, relatedNodeMap);
140 lastTreeScope = scope;
169 EventTarget* EventRetargeter::findRelatedNode(TreeScope* scope, RelatedTargetMap& relatedTargetMap)
173 while (scope) {
174 parentTreeScopes.append(scope);
175 RelatedTargetMap::const_iterator found = relatedTargetMap.find(scope);
180 scope = scope->parentTreeScope()
    [all...]
  /external/chromium_org/chrome/browser/signin/
fake_profile_oauth2_token_service.cc 58 const ScopeSet& scope,
62 scope,
69 const ScopeSet& scope,
71 CompleteRequests(false, scope, error, std::string(), base::Time());
91 const ScopeSet& scope,
101 if (it->request && (all_scopes || it->scopes == scope))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
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) {
122 var scopeObject = WebInspector.ScopeRemoteObject.fromPayload(scope.object, scopeRef);
127 if (scope.type === DebuggerAgent.ScopeType.Global)
129 else if (!foundLocalScope || scope.type === DebuggerAgent.ScopeType.Local || title in this._expandedSections)
  /external/v8/test/cctest/
test-weakmaps.cc 69 v8::HandleScope scope; local
76 v8::HandleScope scope; local
85 v8::HandleScope scope; local
99 v8::HandleScope scope; local
124 v8::HandleScope scope; local
132 v8::HandleScope scope; local
  /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) ::= <<

Completed in 802 milliseconds

1 2 3 45 6 7 8 91011>>