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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.cpp 34 // if no attibutes, enclosed displayable is both scope & target
35 // only if both scope & target are specified, or if target and enclosed displayable, are scope and target different
47 SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
59 restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScope(NULL),*/
68 delete scope;
160 return fDeleteScope && scope == child;
164 SkDrawable* saveScope = scope;
165 scope = NULL;
167 result->scope = scope = saveScope
    [all...]
  /external/skia/src/animator/
SkDisplayApply.cpp 34 // if no attibutes, enclosed displayable is both scope & target
35 // only if both scope & target are specified, or if target and enclosed displayable, are scope and target different
47 SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
59 restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScope(NULL),*/
68 delete scope;
160 return fDeleteScope && scope == child;
164 SkDrawable* saveScope = scope;
165 scope = NULL;
167 result->scope = scope = saveScope
    [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
debug-blockscopes.js 82 // Check that the scope chain contains the expected types of scopes.
86 var scope = exec_state.frame().scope(i);
87 assertTrue(scope.isScope());
88 assertEquals(scopes[i], scope.scopeType());
90 // Check the global object when hitting the global scope.
94 assertPropertiesEqual(global_object, scope.scopeObject().value());
120 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
124 // Check that the content of the scope is as expected. For functions just check
127 var scope = exec_state.frame().scope(number)
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Pipeline.py 31 scope = context.find_module(full_module_name, pos = initial_pos, need_pxd = 0,
34 tree = context.parse(source_desc, scope, pxd = 0, full_module_name = full_module_name)
36 tree.scope = scope
41 def parse_pxd_stage_factory(context, scope, module_name):
43 tree = context.parse(source_desc, scope, pxd=True,
45 tree.scope = scope
61 for name, (statlistnode, scope) in context.pxds.iteritems():
62 module_node.merge_in(statlistnode, scope)
    [all...]
  /external/chromium_org/tools/gn/
function_toolchain.cc 12 #include "tools/gn/scope.h"
24 // the toolchain property on a scope.
27 bool ReadBool(Scope* scope,
32 const Value* v = scope->GetValue(var, true);
42 // Reads the given string from the scope (if present) and puts the result into
44 bool ReadString(Scope* scope,
49 const Value* v = scope->GetValue(var, true);
77 bool ReadPattern(Scope* scope
    [all...]
operators_unittest.cc 42 setup.scope()->SetValue(sources, Value(NULL, Value::LIST), NULL);
54 // Set up the filter on the scope to remove everything ending with "rm"
57 setup.scope()->set_sources_assignment_filter(pattern_list.Pass());
63 node.Execute(setup.scope(), &err);
70 node.Execute(setup.scope(), &err);
77 node.Execute(setup.scope(), &err);
84 ExecuteBinaryOperator(setup.scope(), &node, node.left(), &list, &err);
87 // The sources variable in the scope should now have: [ 5, "good", "good" ]
88 const Value* value = setup.scope()->GetValue(sources);
105 setup.scope()->SetValue(foo, Value(NULL, Value::LIST), NULL)
    [all...]
target_generator.h 20 class Scope;
23 // Fills the variables in a Target object from a Scope (the result of a script
30 Scope* scope,
39 static void GenerateTarget(Scope* scope,
65 Scope* scope_;
  /external/chromium_org/components/policy/core/common/
policy_map.cc 16 scope(POLICY_SCOPE_USER),
30 copy->scope = scope;
43 return scope > other.scope;
50 scope == other.scope &&
75 PolicyScope scope,
81 entry.scope = scope;
    [all...]
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,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentOrderedMap.cpp 110 inline Element* DocumentOrderedMap::get(const AtomicString& key, const TreeScope* scope) const
113 ASSERT(scope);
124 for (Element* element = ElementTraversal::firstWithin(scope->rootNode()); element; element = ElementTraversal::next(*element)) {
134 Element* DocumentOrderedMap::getElementById(const AtomicString& key, const TreeScope* scope) const
136 return get<keyMatchesId>(key, scope);
139 const WillBeHeapVector<RawPtrWillBeMember<Element> >& DocumentOrderedMap::getAllElementsById(const AtomicString& key, const TreeScope* scope) const
142 ASSERT(scope);
154 for (Element* element = entry->element ? entry->element.get() : ElementTraversal::firstWithin(scope->rootNode()); entry->orderedList.size() < entry->count; element = ElementTraversal::next(*element)) {
167 Element* DocumentOrderedMap::getElementByMapName(const AtomicString& key, const TreeScope* scope) const
169 return get<keyMatchesMapName>(key, scope);
    [all...]
DocumentLifecycleNotifier.h 63 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
71 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverDocumentObservers);
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
descriptor_pool.py 189 scope = {}
205 scope.update(symbols)
206 scope.update((_strip_package(k), v) for k, v in symbols)
209 scope.update(symbols)
210 scope.update((_strip_package(k), v) for k, v in symbols)
214 message_type, file_proto.package, file_descriptor, scope)
218 file_descriptor, None, scope)
220 self._SetFieldTypes(desc_proto, scope)
223 desc = scope[desc_proto.name]
231 scope=None)
    [all...]
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 80 // Check that the scope chain contains the expected types of scopes.
84 var scope = exec_state.frame().scope(i);
85 assertTrue(scope.isScope());
86 assertEquals(scopes[i], scope.scopeType());
88 // Check the global object when hitting the global scope.
92 assertPropertiesEqual(this, scope.scopeObject().value());
118 assertTrue(found, "Scope object " + response.body.scopes[i].object.ref + " not found");
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(number)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 108 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
294 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
370 // imported grammars are 'public' (can't be internal because their return scope classes must be accessible)
489 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
1021 ruleRef(rule,label,elementIndex,args,scope) ::= <<
1023 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name; format="id">(<args; separator=", ">);
1029 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
1040 lexerRuleRef(rule,label,args,elementIndex,scope) ::= <%
1045 <if(scope)><scope:delegateName()>.<endif>m<rule.name>(<args; separator=", ">); <checkRuleBacktrackFailure()> (…)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 109 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
299 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
388 // imported grammars are 'public' (can't be internal because their return scope classes must be accessible)
508 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
1041 ruleRef(rule,label,elementIndex,args,scope) ::= <<
1043 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name; format="id">(<args; separator=", ">);
1049 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
    [all...]
  /external/chromium_org/content/child/service_worker/
service_worker_handle_reference.h 38 const GURL& scope() const { return info_.scope; } function in class:content::ServiceWorkerHandleReference
  /external/chromium_org/remoting/client/
token_fetcher_proxy.h 20 const std::string& scope,
30 const std::string& scope,
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageLifecycleNotifier.h 63 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
70 TemporaryChange<IterationType> scope(this->m_iterating, IteratingOverPageObservers);
  /external/chromium_org/third_party/WebKit/Source/core/testing/v8/
WebCoreTestSupport.cpp 43 ScriptState::Scope scope(scriptState);
57 ScriptState::Scope scope(scriptState);
  /external/chromium_org/v8/test/mjsunit/
debug-function-scopes.js 45 // A copy of the scope types from mirror-debugger.js.
73 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
74 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
75 CheckScope(mirror.scope(2), { y: 17, z: 22 }, ScopeType.Closure);
76 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
77 CheckScope(mirror.scope(4), {}, ScopeType.Global);
85 CheckScope(mirror.scope(0), {}, ScopeType.Global);
104 CheckScope(mirror.scope(0), { visible2: 20 }, ScopeType.Closure);
105 CheckScope(mirror.scope(1), { visible1: 10 }, ScopeType.Closure);
106 CheckScope(mirror.scope(2), {}, ScopeType.Global)
    [all...]
  /libcore/luni/src/main/java/java/security/
Signer.java 52 * given scope.
56 * @param scope
57 * the scope of the signer.
60 * provided scope.
62 public Signer(String name, IdentityScope scope) throws KeyManagementException {
63 super(name, scope);
97 * {@code Signer} including its name and its scope if present.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/zoom/
background.js 12 ", scope:" + zoomChangeInfo.zoomSettings.scope;
  /external/chromium_org/extensions/browser/
extension_pref_value_map.h 88 extensions::ExtensionPrefsScope scope,
95 extensions::ExtensionPrefsScope scope);
165 extensions::ExtensionPrefsScope scope) const;
169 extensions::ExtensionPrefsScope scope);
pref_names.h 18 // If the given |scope| is persisted, return true and populate |result| with the
20 // |scope| is not persisted, return false, and leave |result| unchanged.
21 bool ScopeToPrefName(ExtensionPrefsScope scope, std::string* result);
  /external/chromium_org/third_party/WebKit/Source/platform/
TaskSynchronizer.cpp 46 ThreadState::SafePointScope scope(ThreadState::HeapPointersOnStack);
49 // If this thread is already detached, we no longer need to enter a safe point scope.

Completed in 2326 milliseconds

1 2 3 45 6 7 8 91011>>