HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 1 - 25 of 615) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSHTMLElementCustom.cpp 36 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/
routef 4 exec ip -4 ro flush scope global type unicast
routel 24 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/
ScriptObject.cpp 62 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(scriptState)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CTarget.java 81 /** Is scope in @scope::name {action} valid for this kind of grammar?
88 public boolean isValidActionScope(int grammarType, String scope) {
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.equals("header"))
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
SignerStub.java 52 * Constructor, sets given name and scope
55 * @param scope
58 public SignerStub(String name, IdentityScope scope)
60 super(name, scope);
IdentityScopeStub.java 55 * @param scope
58 public IdentityScopeStub(String name, IdentityScope scope)
60 super(name, scope);
116 * Sets the system's identity scope
117 * @param scope
119 public static void mySetSystemScope(IdentityScope scope) {
121 IdentityScope.setSystemScope(scope);
IdentityStub.java 56 * @param scope
59 public IdentityStub(String name, IdentityScope scope)
61 super(name, scope);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
SignerStub.java 53 * Constructor, sets given name and scope
56 * @param scope
59 public SignerStub(String name, IdentityScope scope)
61 super(name, scope);
IdentityScopeStub.java 56 * @param scope
59 public IdentityScopeStub(String name, IdentityScope scope)
61 super(name, scope);
117 * Sets the system's identity scope
118 * @param scope
120 public static void mySetSystemScope(IdentityScope scope) {
122 IdentityScope.setSystemScope(scope);
IdentityStub.java 59 * @param scope
63 public IdentityStub(String name, IdentityScope scope)
65 super(name, scope);
  /external/libsepol/tests/
helpers.c 68 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/clang/lib/Sema/
TargetAttributesSema.h 14 class Scope;
22 virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,
  /external/libsepol/src/
avrule_block.c 4 * 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)
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->class_perms_map)
156 scope_datum_t *scope = local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 70 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
73 IdentityScope scope = new IdentityScopeStub("my scope"); local
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(); local
87 assertNotNull(scope);
88 assertEquals(name, scope.getClass().getName());
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
IdentityScopeTest.java 75 * check that void IdentityScope(String, IdentityScope) creates instance with given name and within given scope
78 IdentityScope scope = new IdentityScopeStub("my scope"); local
79 is = new IdentityScopeStub("Aleksei Semenov", scope);
82 assertEquals(scope.getName(), is.getScope().getName());
89 String name = Security.getProperty("system.scope");
91 IdentityScope scope = IdentityScope.getSystemScope(); local
92 assertNotNull(scope);
93 assertEquals(name, scope.getClass().getName());
102 // default implementation is specified by security property system.scope
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg 252 <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=ruleDescriptor.returnScope)>}>}
    [all...]
  /libcore/luni/src/main/java/java/security/
Identity.java 42 private IdentityScope scope; field in class:Identity
64 * the scope of this {@code Identity}.
68 * @param scope
72 * in the specified scope.
74 public Identity(String name, IdentityScope scope)
77 if (scope != null) {
78 scope.addIdentity(this);
79 this.scope = scope;
222 return scope;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ActionAnalysis.g 76 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.isPredefinedRuleScope||scope.isPredefinedLexerRuleScope)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintJob.java 30 import com.android.tools.lint.detector.api.Scope;
87 EnumSet<Scope> scope = null; local
94 scope = Scope.ALL;
99 scope = EnumSet.of(Scope.MANIFEST);
101 scope = Scope.RESOURCE_FILE_SCOPE;
104 if (scope != null)
    [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 12 // 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.Begin)
153 PoolScope &scope = *scpI; local
208 PoolScope &scope = Scopes.back(); local
    [all...]
  /external/v8/test/cctest/
test-func-name-inference.cc 54 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/
C.stg 191 #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)->get(ctx->SCOPE_STACK(scope),i)
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentOrderedMap.cpp 108 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/
Java.stg 366 <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:delegateName()>.<endif>m<rule.name>(<args; separator=", ">); <checkRuleBacktrackFailure()
    [all...]

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>