Searched refs:scope (Results 1 - 25 of 440) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLElementCustom.cpp36 ScopeChainNode* JSHTMLElement::pushEventHandlerScope(ExecState* exec, ScopeChainNode* scope) const
41 scope = scope->push(asObject(toJS(exec, globalObject(), element->ownerDocument())));
45 scope = scope->push(asObject(toJS(exec, globalObject(), form)));
48 return scope->push(asObject(toJS(exec, globalObject(), element)));
/external/iproute2/ip/
H A Droutef4 exec ip -4 ro flush scope global type unicast
H A Droutel24 scope=""
40 echo "$network $via $src $proto $scope $dev $table"
44 printf(format,"target","","gateway","source","proto","scope","dev","tbl");
55 scope=$5;
58 printf(format,network,mask,via,src,proto,scope,dev,table);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptObject.cpp62 ScriptScope scope(scriptState);
63 scope.global()->Set(v8::String::New(name), value.v8Value());
64 return scope.success();
70 ScriptScope scope(scriptState);
71 scope.global()->Set(v8::String::New(name), toV8(value));
72 return scope.success();
77 ScriptScope scope(scriptState);
78 scope.global()->Set(v8::String::New(name), toV8(value));
79 return scope.success();
85 ScriptScope scope(scriptStat
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCTarget.java81 /** Is scope in @scope::name {action} valid for this kind of grammar?
88 public boolean isValidActionScope(int grammarType, String scope) { argument
91 if (scope.equals("lexer")) {
94 if (scope.equals("header")) {
97 if (scope.equals("includes")) {
100 if (scope.equals("preincludes")) {
103 if (scope.equals("overrides")) {
108 if (scope.equals("parser")) {
111 if (scope
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DSignerStub.java52 * Constructor, sets given name and scope
55 * @param scope
58 public SignerStub(String name, IdentityScope scope) argument
60 super(name, scope);
H A DIdentityScopeStub.java55 * @param scope
58 public IdentityScopeStub(String name, IdentityScope scope) argument
60 super(name, scope);
116 * Sets the system's identity scope
117 * @param scope
119 public static void mySetSystemScope(IdentityScope scope) { argument
121 IdentityScope.setSystemScope(scope);
H A DIdentityStub.java56 * @param scope
59 public IdentityStub(String name, IdentityScope scope) argument
61 super(name, scope);
/external/libsepol/tests/
H A Dhelpers.c68 scope_datum_t *scope = (scope_datum_t *) hashtab_search(p->scope[symtab].table, sym); local
70 if (scope == NULL) {
73 if (scope->scope != SCOPE_DECL) {
76 if (scope->decl_ids_len != 1) {
80 return p->decl_val_to_struct[scope->decl_ids[0] - 1];
/external/libsepol/src/
H A Davrule_block.c4 * or global scope) for a policy module.
70 ebitmap_init(&decl->required.scope[i]);
71 ebitmap_init(&decl->declared.scope[i]);
78 static void scope_index_destroy(scope_index_t * scope) argument
81 if (scope == NULL) {
85 ebitmap_destroy(scope->scope + i);
87 for (i = 0; i < scope->class_perms_len; i++) {
88 ebitmap_destroy(scope->class_perms_map + i);
90 free(scope
156 scope_datum_t *scope = local
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DIdentityScopeTest.java70 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
73 IdentityScope scope = new IdentityScopeStub("my scope");
74 is = new IdentityScopeStub("Aleksei Semenov", scope);
77 assertEquals(scope.getName(), is.getScope().getName());
84 String name = Security.getProperty("system.scope");
86 IdentityScope scope = IdentityScope.getSystemScope();
87 assertNotNull(scope);
88 assertEquals(name, scope.getClass().getName());
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DObjC.stg252 <rule.ruleDescriptor:{ruleDescriptor | <returnScopeInterface(scope=ruleDescriptor.returnScope)>}>}>
306 <returnScopeImplementation(scope=ruleDescriptor.returnScope)>}>
562 <scopes:{it | <if(it.isDynamicGlobalScope)><globalAttributeScopeInterface(scope=it)><endif>}>
565 <rule.ruleDescriptor:{ ruleDescriptor | <ruleAttributeScopeInterface(scope=ruleDescriptor.ruleScope)>}>}>
567 <rules:{rule |<rule.ruleDescriptor:{ ruleDescriptor | <returnScopeInterface(scope=ruleDescriptor.returnScope)>}>}>
572 <rules:{rule | <rule.ruleDescriptor.ruleScope:ruleAttributeScopeDecl(scope=rule.ruleDescriptor.ruleScope)>}>
574 <scopes:{it | <if(it.isDynamicGlobalScope)><globalAttributeScopeMemVar(scope=it)><endif>}><\n>
670 <scopes:{it | <if(it.isDynamicGlobalScope)><globalAttributeScopeImplementation(scope=it)><endif>}>
674 <rule.ruleDescriptor:{ ruleDescriptor | <ruleAttributeScopeImplementation(scope=ruleDescriptor.ruleScope)>}>}>
677 <rules:{rule | <rule.ruleDescriptor:{ ruleDescriptor | <returnScopeImplementation(scope
[all...]
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DActionAnalysis.g76 AttributeScope scope = null;
81 scope = enclosingRule.getLocalAttributeScope($y.text);
90 scope = refdRule.getLocalAttributeScope($y.text);
98 scope = refdRule.getLocalAttributeScope($y.text);
101 if ( scope!=null &&
102 (scope.isPredefinedRuleScope||scope.isPredefinedLexerRuleScope) )
121 AttributeScope scope = enclosingRule.getLocalAttributeScope($ID.text);
122 if ( scope!=null &&
123 (scope
[all...]
/external/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp12 // Calls to NSAutoreleasePools will be rewritten as an @autorelease scope.
23 // - There is not a corresponding -release/-drain in the same scope
25 // - There is a variable that is declared inside the intended @autorelease scope
98 PoolScope &scope = *scpI; local
99 clearRefsIn(*scope.Begin, info.Refs);
100 clearRefsIn(*scope.End, info.Refs);
101 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
122 PoolScope &scope = *scpI; local
123 clearUnavailableDiags(*scope
153 PoolScope &scope = *scpI; local
208 PoolScope &scope = Scopes.back(); local
254 NameReferenceChecker(ASTContext &ctx, PoolScope &scope, SourceLocation &referenceLoc, SourceLocation &declarationLoc) argument
296 handlePoolScope(PoolScope &scope, CompoundStmt *compoundS) argument
[all...]
/external/v8/test/cctest/
H A Dtest-func-name-inference.cc54 v8::HandleScope scope; local
57 v8::HandleScope scope; local
113 v8::HandleScope scope; local
125 v8::HandleScope scope; local
137 v8::HandleScope scope; local
151 v8::HandleScope scope; local
165 v8::HandleScope scope; local
181 v8::HandleScope scope; local
199 v8::HandleScope scope; local
217 v8::HandleScope scope; local
231 v8::HandleScope scope; local
247 v8::HandleScope scope; local
260 v8::HandleScope scope; local
275 v8::HandleScope scope; local
288 v8::HandleScope scope; local
304 v8::HandleScope scope; local
318 v8::HandleScope scope; local
334 v8::HandleScope scope; local
353 v8::HandleScope scope; local
368 v8::HandleScope scope; local
386 v8::HandleScope scope; local
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
H A DC.stg191 #define SCOPE_TYPE(scope) p<name>_##scope##_SCOPE
192 #define SCOPE_STACK(scope) p<name>_##scope##Stack
193 #define SCOPE_TOP(scope) ctx->p<name>_##scope##Top
194 #define SCOPE_SIZE(scope) ctx->p<name>_##scope##Stack_limit
195 #define SCOPE_INSTANCE(scope, i) (ctx->SCOPE_STACK(scope)
[all...]
/external/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js80 // 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());
122 // Check that the content of the scope is as expected. For functions just check
125 var scope = exec_state.frame().scope(numbe
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocumentOrderedMap.cpp108 inline Element* DocumentOrderedMap::get(AtomicStringImpl* key, const TreeScope* scope) const
120 for (Node* node = scope->firstChild(); node; node = node->traverseNextNode()) {
136 Element* DocumentOrderedMap::getElementById(AtomicStringImpl* key, const TreeScope* scope) const
138 return get<keyMatchesId>(key, scope);
141 Element* DocumentOrderedMap::getElementByMapName(AtomicStringImpl* key, const TreeScope* scope) const
143 return get<keyMatchesMapName>(key, scope);
146 Element* DocumentOrderedMap::getElementByLowercasedMapName(AtomicStringImpl* key, const TreeScope* scope) const
148 return get<keyMatchesLowercasedMapName>(key, scope);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg366 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
367 <returnScope(scope=ruleDescriptor.returnScope)>
801 ruleRef(rule,label,elementIndex,args,scope) ::= <<
803 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name>(<args; separator=", ">);<\n>
809 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
810 <ruleRef(rule,label,elementIndex,args,scope)>
820 lexerRuleRef(rule,label,args,elementIndex,scope) ::= <<
825 <if(scope)><scope
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg113 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
233 <scopes:{it|<if(it.isDynamicGlobalScope)><globalAttributeScopeClass(scope=it)><endif>}>
238 <rules:{it|<ruleAttributeScopeClass(scope=it.ruleDescriptor.ruleScope)>}>
260 <scopes:{it | <if(it.isDynamicGlobalScope)><globalAttributeScopeStack(scope=it)><endif>}>
261 <rules:{it | <ruleAttributeScopeStack(scope=it.ruleDescriptor.ruleScope)>}>
403 <returnScope(scope=ruleDescriptor.returnScope)>
883 ruleRef(rule,label,elementIndex,args,scope) ::= <<
885 <if(label)><label> = <endif>self.<if(scope)><scope:delegateName()>.<endif><rule.name>(<args; separator=", ">)<\n>
890 ruleRefAndListLabel(rule,label,elementIndex,args,scope)
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg68 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
189 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
214 public function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>):<returnType()> \{ <if(ruleDescriptor.hasReturnValue)>return <endif><ruleDescriptor.grammar:delegateName()>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope.attributes:{a|<a.name>}; separator=", ">); \}}; separator="\n">
256 public final function <ruleName>_fragment(<ruleDescriptor.parameterScope:parameterScope(scope=it)>):void {
316 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
319 public final function <ruleName>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>):<returnType()> {
447 public final function m<ruleName>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>):void {
741 ruleRef(rule,label,elementIndex,args,scope) ::= <<
743 <if(label)><label>=<endif><if(scope)><scope
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg343 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
344 <returnScope(scope=ruleDescriptor.returnScope)>
787 ruleRef(rule,label,elementIndex,args,scope) ::= <<
789 <if(label)><label>=<endif><if(scope)><scope:delegateName()>.<endif><rule.name>(<args; separator=", ">)<\n>
795 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
806 lexerRuleRef(rule,label,args,elementIndex,scope) ::= <<
811 <if(scope)><scope:delegateName()>.<endif>m<rule.name>(<args; separator=", ">)
817 <if(scope)><scop
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg55 * actionScope (String): 'lexer', 'parser', 'tree_parser' or custom scope
133 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
228 procedure m<rule.ruleName>(<rule.ruleDescriptor.parameterScope:parameterScope(scope=rule)>);<\n>
337 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScopeDeclaration(scope=it)><endif>}>
400 <rules: {r | <ruleAttributeScopeInit(scope=r.ruleDescriptor.ruleScope)>}>
401 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
449 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n>
452 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): <returnType()>;<\n>
454 procedure <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>);<\n>
461 function T<grammar.recognizerName>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg80 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
214 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
272 # <ruleDescriptor.parameterScope:parameterScope(scope=it)>
337 <ruleAttributeScope(scope=ruleDescriptor.ruleScope)>
338 <returnScope(scope=ruleDescriptor.returnScope)>
343 my ($self, <ruleDescriptor.parameterScope:parameterScope(scope=it)>) = @_;
475 # <ruleDescriptor.parameterScope:parameterScope(scope=it)>
771 ruleRef(rule,label,elementIndex,args,scope) ::= <<
783 ruleRefAndListLabel(rule,label,elementIndex,args,scope) ::= <<
794 lexerRuleRef(rule,label,args,elementIndex,scope)
[all...]
/external/clang/lib/Sema/
H A DTargetAttributesSema.h22 virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,

Completed in 649 milliseconds

1234567891011>>