HomeSort by relevance Sort by last modified time
    Searched refs:scope (Results 1 - 25 of 402) 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);
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Scope.java 20 * The scope of a detector is the set of files a detector must consider when
24 public enum Scope {
44 * Returns true if this scope is within the given scope. For example a file
45 * scope is within a project scope, but a project scope is not within a file
46 * scope.
48 * @param scope the scope to compare wit
    [all...]
  /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...]
ScriptControllerQt.cpp 40 v8::Context::Scope scope(v8Context);
ScriptFunctionCall.cpp 63 ScriptScope scope(m_scriptState);
69 ScriptScope scope(m_scriptState);
75 ScriptScope scope(m_scriptState);
81 ScriptScope scope(m_scriptState);
87 ScriptScope scope(m_scriptState);
93 ScriptScope scope(m_scriptState);
99 ScriptScope scope(m_scriptState);
117 ScriptScope scope(m_scriptState, reportExceptions);
121 if (!scope.success()) {
134 if (!scope.success())
    [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/clang/lib/Sema/
TargetAttributesSema.h 14 class Scope;
22 virtual bool ProcessDeclAttribute(Scope *scope, Decl *D,
  /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...]
  /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...]
IdentityScope.java 24 * {@code IdentityScope} represents a scope for {@link Identity} objects.
35 // systemScope holds reference to the current system scope
57 * name and the specified scope.
61 * @param scope
62 * the scope of this {@code IdentityScope}.
66 public IdentityScope(String name, IdentityScope scope)
68 super(name, scope);
72 * Returns the system's scope.
74 * @return the system's scope.
79 * "system.scope", and the class is only loaded from boot classpath. No defaul
    [all...]
Signer.java 53 * given scope.
57 * @param scope
58 * the scope of the signer.
61 * provided scope.
63 public Signer(String name, IdentityScope scope) throws KeyManagementException {
64 super(name, scope);
98 * {@code Signer} including its name and its scope if present.
  /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
97 PoolScope &scope = *scpI; local
98 clearRefsIn(*scope.Begin, info.Refs);
99 clearRefsIn(*scope.End, info.Refs);
100 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
121 PoolScope &scope = *scpI; local
122 clearUnavailableDiags(*scope.Begin)
152 PoolScope &scope = *scpI; local
207 PoolScope &scope = Scopes.back(); local
    [all...]
  /external/clang/test/CodeGenCXX/
blocks.cpp 49 struct scope { int x; ~scope(); }; struct in namespace:test1
51 const scope obj = { 5 };
  /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/skia/src/animator/
SkDisplayApply.cpp 42 // if no attibutes, enclosed displayable is both scope & target
43 // only if both scope & target are specified, or if target and enclosed displayable, are scope and target different
55 SK_MEMBER(scope, Drawable), // thing that scopes animation (unnamed enclosed displayable goes here)
67 restore(false), scope(NULL), steps(-1), transition((Transition) -1), fActive(NULL), /*fCurrentScope(NULL),*/
76 delete scope;
167 return fDeleteScope && scope == child;
171 SkDrawable* saveScope = scope;
172 scope = NULL;
174 result->scope = scope = saveScope
    [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
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
symbols.c 58 Scope *ScopeList = NULL;
59 Scope *CurrentScope = NULL;
60 Scope *GlobalScope = NULL;
63 Scope *scope = _scope; local
65 if (scope->next)
66 scope->next->prev = scope->prev;
67 if (scope->prev)
68 scope->prev->next = scope->next
    [all...]

Completed in 417 milliseconds

1 2 3 4 5 6 7 8 91011>>