HomeSort by relevance Sort by last modified time
    Searched full:contexts (Results 1 - 25 of 341) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
contexts.h 44 // Heap-allocated activation contexts.
46 // Contexts are implemented as FixedArray objects; the Context
103 // closures. A Context object is used to represent function contexts and
104 // dynamically pushed 'with' contexts (or 'scopes' in ECMA-262 speak).
106 // At runtime, the contexts build a stack in parallel to the execution
107 // stack, with the top-most context being the current context. All contexts
111 // contexts inside a function. It provides access to the
120 // It is the same for all contexts *allocated* inside a
127 // function contexts, and non-NULL for 'with' contexts
    [all...]
  /dalvik/libcore/security-kernel/src/main/java/java/security/
AccessController.java 57 * ((ArrayList)contexts.get(Thread.currentThread())).lastElement() - is
60 private static final WeakHashMap<Thread, ArrayList<AccessControlContext>> contexts = new WeakHashMap<Thread, ArrayList<AccessControlContext>>(); field in class:AccessController
183 * context into this thread's contexts stack, and then invokes
195 if (currThread != null && contexts != null) {
196 synchronized (contexts) {
197 a = contexts.get(currThread);
200 contexts.put(currThread, a);
221 // only from one Thread. 'contexts' still need sync() however,
233 * It pushes the passed context into this thread's stack of contexts and
243 if (currThread == null || contexts == null)
    [all...]
  /external/webkit/JavaScriptCore/API/
JSContextRef.h 44 @discussion A JSContextGroup associates JavaScript contexts with one another.
45 Contexts in the same group may share and exchange JavaScript objects. Sharing and/or exchanging
46 JavaScript objects between contexts in different groups will produce undefined behavior.
75 Therefore, scripts may execute in it concurrently with scripts executing in other contexts.
76 However, you may not use values created in the context in other contexts.
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
NamespaceSupport.java 156 contexts = new Context[32];
159 contexts[contextPos] = currentContext = new Context();
202 int max = contexts.length;
204 contexts [contextPos].declsOK = false;
210 System.arraycopy(contexts, 0, newContexts, 0, max);
212 contexts = newContexts;
216 currentContext = contexts[contextPos];
218 contexts[contextPos] = currentContext = new Context();
223 currentContext.setParent(contexts[contextPos - 1]);
243 contexts[contextPos].clear()
522 private Context contexts[]; field in class:NamespaceSupport
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
package-info.java 15 * and that can be used in non-block-structured contexts including
23 * it covers most standard usage contexts. But programmers may create
  /external/webkit/WebKit/chromium/public/
WebScriptController.h 47 // offer various restrictions on what types of contexts the extension is
52 // Will only affect v8 contexts initialized after this call. Takes ownership
  /dalvik/dx/tests/111-use-null-as-array/
info.txt 2 of a known-null in contexts that require a specific type end up getting
  /external/bison/lib/
verify.h 29 contexts in C. verify_true (R) is for scalar contexts, including
30 integer constant expression contexts. verify (R) is for declaration
31 contexts, e.g., the top level.
  /external/dbus/bus/
session.conf.in 28 <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include>
system.conf.in 60 <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include>
  /external/dbus/test/data/valid-config-files/
session.conf 28 <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include>
system.conf 60 <include if_selinux_enabled="yes" selinux_root_relative="yes">contexts/dbus_contexts</include>
  /frameworks/base/awt/java/awt/
Composite.java 37 * environment for a compositing operation. Several contexts can exist for a
  /external/webkit/WebCore/css/
CSSHelper.h 29 // Used in many inappropriate contexts throughout WebCore. We'll have to examine and test
  /packages/apps/Phone/src/com/android/phone/
CallLogAsync.java 80 // references to contexts in places that were long lived
81 // when the contexts were expected to be short lived. For
89 // we've grown cautious of storing references to Contexts
  /external/kernel-headers/original/linux/
timer.h 50 * to this timer, eg. interrupt contexts, or other CPUs on SMP.
  /external/libxml2/include/libxml/
nanoftp.h 67 * Creating/freeing contexts.
  /external/quake/quake/src/QW/scitech/include/
mgldos.h 42 * contexts before calling this function, and re-create them again with
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGLDOS.H 42 * contexts before calling this function, and re-create them again with
  /external/srec/srec/include/
hmm_type.h 44 typedef unsigned char phonedata; /* for model contexts */
  /external/v8/test/mjsunit/compiler/
unary-add.js 28 // Test unary addition in various contexts.
  /external/v8/test/mjsunit/regress/
regress-1030466.js 29 // (contexts may escape), but when leaving a with-scope, we currently also copy
  /external/webkit/WebCore/platform/graphics/openvg/
EGLDisplayOpenVG.cpp 395 // Cool, surface is compatible to one of our existing contexts.
418 // We share all of the images and paths amongst the different contexts,
421 // accessible from all other contexts, but are not restricted to the
422 // lifetime of those contexts.
  /external/webkit/WebCore/platform/graphics/win/
WKCACFContextFlusher.cpp 74 // we're iterating over it, so we move the contexts into a local ContextSet and iterate over that instead.
  /external/webkit/WebKit/win/
WebURLResponse.h 104 mutable RetainPtr<CFDictionaryRef> m_SSLCertificateInfo; // this ensures certificate contexts are valid for the lifetime of this WebURLResponse.

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>