Searched defs:token (Results 1 - 5 of 5) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DZygoteHooks.java28 private long token; field in class:ZygoteHooks
52 token = nativePreFork();
62 nativePostForkChild(token, runtimeFlags, isSystemServer, isZygote, instructionSet);
77 private static native void nativePostForkChild(long token, int runtimeFlags, argument
/libcore/ojluni/src/main/java/sun/util/locale/
H A DStringTokenIterator.java38 private String token; field in class:StringTokenIterator
55 return token;
59 return token;
78 token = text.substring(start, end);
81 token = null;
84 return token;
97 token = text.substring(start, end);
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
H A DDocumentBuilderImpl.java172 * @param endToken The token that will end this recursive call. Either
181 int token = parser.getEventType();
185 * token to be processed. This holds for each iteration of the loop, so
189 while (token != endToken && token != XmlPullParser.END_DOCUMENT) {
190 if (token == XmlPullParser.PROCESSING_INSTRUCTION) {
192 * Found a processing instructions. We need to split the token
204 } else if (token == XmlPullParser.DOCDECL) {
210 } else if (token == XmlPullParser.COMMENT) {
212 * Found a comment. We simply take the token tex
337 appendText(DocumentImpl document, Node parent, int token, String text) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DSignerInfo.java569 * @return A timestamp token or null if none is present.
592 // Extract the content (an encoded timestamp token info)
601 // Create a timestamp token info object
612 * Match the hash present in the signature timestamp token against the hash
615 private void verifyTimestamp(TimestampToken token) argument
617 String digestAlgname = token.getHashAlgorithm().getName();
621 throw new SignatureException("Timestamp token digest check failed. " +
628 if (!Arrays.equals(token.getHashedMessage(),
632 token.getSerialNumber() + ") generated on " + token
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DScanner.java110 * pattern, and then attempt to return the next token. Both <tt>hasNext</tt>
122 * will not pass the token that caused the exception, so that it may be
382 // A pattern for any token
879 // Returns true if a complete token or partial token is in the buffer.
880 // It is not necessary to find a complete token since a partial token
881 // means that there will be another token with or without more input.
899 * Returns a "complete token" that matches the specified pattern
901 * A token i
2058 processIntegerToken(String token) argument
2257 processFloatToken(String token) argument
[all...]

Completed in 160 milliseconds