Searched refs:contexts (Results 1 - 3 of 3) sorted by relevance

/dalvik/libcore/security-kernel/src/main/java/java/security/
H A DAccessController.java57 * ((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
[all...]
/dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
H A DNamespaceSupport.java156 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[contextPo
522 private Context contexts[]; field in class:NamespaceSupport
[all...]
/dalvik/libcore/awt-kernel/src/main/java/java/awt/font/
H A DNumericShaper.java268 /** The contexts. */
269 private final String[] contexts = { field in class:NumericShaper
595 sb.append(contexts[fDefaultContextIndex]);
609 sb.append(contexts[index]);
614 sb.append(contexts[fSingleRangeIndex]);

Completed in 169 milliseconds