Home
last modified time | relevance | path

Searched refs:contexts (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/main/java/org/xml/sax/helpers/
DNamespaceSupport.java154 contexts = new Context[32]; in reset()
157 contexts[contextPos] = currentContext = new Context(); in reset()
200 int max = contexts.length; in pushContext()
202 contexts [contextPos].declsOK = false; in pushContext()
208 System.arraycopy(contexts, 0, newContexts, 0, max); in pushContext()
210 contexts = newContexts; in pushContext()
214 currentContext = contexts[contextPos]; in pushContext()
216 contexts[contextPos] = currentContext = new Context(); in pushContext()
221 currentContext.setParent(contexts[contextPos - 1]); in pushContext()
241 contexts[contextPos].clear(); in popContext()
[all …]
/libcore/ojluni/src/main/java/java/awt/font/
DNumericShaper.java522 private static final char[] contexts = { field in NumericShaper
549 private static int ctCacheLimit = contexts.length - 2;
553 if (c < contexts[ctCache]) { in getContextKey()
554 while (ctCache > 0 && c < contexts[ctCache]) --ctCache; in getContextKey()
555 } else if (c >= contexts[ctCache + 1]) { in getContextKey()
556 while (ctCache < ctCacheLimit && c >= contexts[ctCache + 1]) ++ctCache; in getContextKey()
/libcore/ojluni/src/main/java/java/util/logging/
DLogManager.java500 private List<LoggerContext> contexts() { in contexts() method in LogManager
1325 for (LoggerContext cx : contexts()) { in reset()
1695 for (LoggerContext cx : contexts()) { in setLevelsOnExistingLoggers()
/libcore/ojluni/annotations/hiddenapi/java/util/logging/
DLogManager.java78 private java.util.List<java.util.logging.LogManager.LoggerContext> contexts() { in contexts() method in LogManager