HomeSort by relevance Sort by last modified time
    Searched full:token (Results 126 - 150 of 1146) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu4c/i18n/
plurfmt.cpp 132 UnicodeString token; local
158 token += ch;
164 if (token.length()==0) {
172 token += ch;
177 if (fParsedValuesHash->get(token)!= NULL) {
181 if (token.length()==0) {
185 if (!pluralRules->isKeyword(token)) {
189 hashKeyword = token;
191 token.remove();
199 token += ch
    [all...]
esctrn.cpp 35 static Transliterator* _createEscUnicode(const UnicodeString& ID, Transliterator::Token /*context*/) {
39 static Transliterator* _createEscJava(const UnicodeString& ID, Transliterator::Token /*context*/) {
43 static Transliterator* _createEscC(const UnicodeString& ID, Transliterator::Token /*context*/) {
48 static Transliterator* _createEscXML(const UnicodeString& ID, Transliterator::Token /*context*/) {
52 static Transliterator* _createEscXML10(const UnicodeString& ID, Transliterator::Token /*context*/) {
56 static Transliterator* _createEscPerl(const UnicodeString& ID, Transliterator::Token /*context*/) {
66 Token t = integerToken(0);
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 340 String token = parameter.substring(0, i).trim(); local
346 " token: " + token +
350 if (token.equalsIgnoreCase(REALM_TOKEN)) {
354 parseParameter(token, value);
362 * If the token is a known parameter name, parses and initializes
363 * the token value.
365 private void parseParameter(String token, String value) {
366 if (token != null && value != null) {
367 if (token.equalsIgnoreCase(NONCE_TOKEN))
    [all...]
  /external/bluetooth/bluez/rfcomm/
parser.y 55 %token K_BIND K_DEVICE K_CHANNEL K_COMMENT
56 %token K_YES K_NO
58 %token <number> NUMBER RFCOMM
59 %token <string> STRING WORD
60 %token <bdaddr> BDADDR
  /external/e2fsprogs/lib/ss/
parse.c 24 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
88 /* random-token mode */
89 parse_mode = TOKEN;
96 while (parse_mode == TOKEN) {
128 parse_mode = TOKEN;
  /external/srec/srec/EventLog/src/
EventLogImpl.c 191 impl->Interface.token = &SR_EventLog_Token;
335 ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value)
340 if (self == NULL || token == NULL || value == NULL)
345 /* token cannot contain '=' */
346 if (LSTRCHR(token, L('=')) != NULL)
348 PLogError(L("SLEE: Token '%s' contains illegal '=' character"), token);
354 PLogError(L("SLEE: Value for token '%s' contains illegal newline character"), token);
359 if (LSTRLEN(token) + LSTRLEN(value) + 2
    [all...]
  /external/v8/src/
token.h 36 // symbolic token name, string is the corresponding syntactic symbol
38 // The parameters are invoked for token categories as follows:
198 /* Illegal token - not able to scan. */ \
205 class Token {
207 // All token values.
215 // Returns a string corresponding to the C++ token name
216 // (e.g. "LT" for the token LT).
247 // Returns a string corresponding to the JS token string
248 // (.e., "<" for the token LT) or NULL if the token doesn'
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapResponseParser.java 140 Object token; local
141 while ((token = readToken()) != null) {
143 response.add(token);
149 response.mCompleted = token == null;
153 * Reads the next token of the response. The token can be one of: String -
159 * @return The next token in the response or null if there are no more
165 Object token = parseToken(); local
166 if (token == null || !(token.equals(")") || token.equals("]")))
237 Object token; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Scanner.java 44 * next* methods. If the token is not in a valid format, an
570 * and the next token matches the given pattern. This method will block if the data is
575 * @return {@code true} if this {@code Scanner} has more tokens and the next token
585 // if the next token exists, set the match region, otherwise return
593 // check whether next token matches the specified pattern
605 * and the next token matches a pattern compiled from the given string. This method will
612 * next token, {@code false} otherwise.
621 * Returns whether the next token can be translated into a valid
624 * @return {@code true} if the next token can be translated into a valid
646 * Returns whether the next token can be translated into a vali
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseGeneralTest.java 539 "token TEXT COLLATE unicode," +
545 "token TEXT COLLATE unicode," +
583 "SELECT count(*) from tokens where token GLOB '" + key + "*'", null));
585 "SELECT source from tokens where token GLOB '" + key + "*'", null));
587 "SELECT token_index from tokens where token GLOB '" + key + "*'", null));
590 "SELECT count(*) from tokens where token GLOB '" + key + "*'", null));
592 "SELECT source from tokens where token GLOB '" + key + "*'", null));
594 "SELECT token_index from tokens where token GLOB '" + key + "*'", null));
598 "SELECT count(*) from tokens where token GLOB '" + key + "*'", null));
600 "SELECT source from tokens where token GLOB '" + key + "*'", null))
    [all...]
  /external/quake/quake/src/QW/gas2masm/
gas2masm.c 38 char *token; variable
797 token[0] = c;
803 token[count++] = 'n';
804 token[count++] = 'o';
805 token[count++] = 't';
806 token[count++] = ' ';
819 token[count++] = c;
828 token[count] = 0;
840 token[count] = 0;
846 token[count] = 0;
    [all...]
  /external/quake/quake/src/WinQuake/gas2masm/
gas2masm.c 38 char *token; variable
797 token[0] = c;
803 token[count++] = 'n';
804 token[count++] = 'o';
805 token[count++] = 't';
806 token[count++] = ' ';
819 token[count++] = c;
828 token[count] = 0;
840 token[count] = 0;
846 token[count] = 0;
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java 231 IBinder token = data.readStrongBinder(); local
237 boolean res = finishActivity(token, resultCode, resultData);
245 IBinder token = data.readStrongBinder(); local
248 finishSubActivity(token, resultWho, requestCode);
255 IBinder token = data.readStrongBinder(); local
256 boolean res = willActivityBeVisible(token);
349 IBinder token = data.readStrongBinder(); local
351 if (token != null) {
352 setPersistent(token, isPersistent);
371 IBinder token = data.readStrongBinder() local
385 IBinder token = data.readStrongBinder(); local
394 IBinder token = data.readStrongBinder(); local
405 IBinder token = data.readStrongBinder(); local
413 IBinder token = data.readStrongBinder(); local
422 IBinder token = data.readStrongBinder(); local
520 IBinder token = data.readStrongBinder(); local
538 IBinder token = data.readStrongBinder(); local
549 IBinder token = data.readStrongBinder(); local
558 IBinder token = data.readStrongBinder(); local
640 IBinder token = data.readStrongBinder(); local
651 IBinder token = data.readStrongBinder(); local
667 IBinder token = data.readStrongBinder(); local
691 IBinder token = data.readStrongBinder(); local
701 IBinder token = data.readStrongBinder(); local
711 IBinder token = data.readStrongBinder(); local
764 IBinder token = data.readStrongBinder(); local
773 IBinder token = data.readStrongBinder(); local
782 IBinder token = data.readStrongBinder(); local
791 IBinder token = data.readStrongBinder(); local
801 IBinder token = data.readStrongBinder(); local
853 IBinder token = data.readStrongBinder(); local
1239 IBinder token = data.readStrongBinder(); local
    [all...]
IActivityManager.java 101 public boolean finishActivity(IBinder token, int code, Intent data)
103 public void finishSubActivity(IBinder token, String resultWho, int requestCode) throws RemoteException;
104 public boolean willActivityBeVisible(IBinder token) throws RemoteException;
118 public void setPersistent(IBinder token, boolean isPersistent) throws RemoteException;
121 public void activityIdle(IBinder token, Configuration config) throws RemoteException;
122 public void activityPaused(IBinder token, Bundle state) throws RemoteException;
124 public void activityStopped(IBinder token,
127 public void activityDestroyed(IBinder token) throws RemoteException;
128 public String getCallingPackage(IBinder token) throws RemoteException;
129 public ComponentName getCallingActivity(IBinder token) throws RemoteException
    [all...]
ActivityThread.java 1295 IBinder token; field in class:ActivityThread.ActivityRecord
1359 IBinder token; field in class:ActivityThread.NewIntentData
1391 IBinder token; field in class:ActivityThread.CreateServiceData
1402 IBinder token; field in class:ActivityThread.BindServiceData
1411 IBinder token; field in class:ActivityThread.ServiceArgsData
1447 IBinder token; field in class:ActivityThread.ResultData
3730 IBinder token = tmp.token; local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 42 public ParseException(Token currentTokenVal,
82 * This is the last token that has been consumed successfully. If
83 * this object has been created due to a parse error, the token
84 * followng this token will (therefore) be the first error token.
86 public Token currentToken;
131 Token tok = currentToken.next;
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 42 public ParseException(Token currentTokenVal,
82 * This is the last token that has been consumed successfully. If
83 * this object has been created due to a parse error, the token
84 * followng this token will (therefore) be the first error token.
86 public Token currentToken;
131 Token tok = currentToken.next;
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 42 public ParseException(Token currentTokenVal,
82 * This is the last token that has been consumed successfully. If
83 * this object has been created due to a parse error, the token
84 * followng this token will (therefore) be the first error token.
86 public Token currentToken;
131 Token tok = currentToken.next;
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 64 // token 2 is ignored because ',' between token1 and token2 is in a pair of \".
67 // token 4 is ignored because ',' between token3 and token4 is in <>.
152 "1. the comment doesn't be cleaned before find next token." +
180 * Assert the specified token's name, address and comment all equal specified ones.
181 * @param token the Rfc822Token to be asserted.
186 private void localAssertEquals(Rfc822Token token, String name,
188 assertEquals(name, token.getName());
189 assertEquals(address, token.getAddress());
190 assertEquals(comment, token.getComment());
  /external/bluetooth/glib/gio/fen/
fen-node.c 188 gchar* token; local
199 if ((token = strtok_r (str, G_DIR_SEPARATOR_S, &lasts)) != NULL) {
201 FN_W ("%s %s + %s\n", __func__, NODE_NAME(parent), token);
202 child = children_find (parent, token);
212 } while ((token = strtok_r (NULL, G_DIR_SEPARATOR_S, &lasts)) != NULL);
219 if (token == NULL && child) {
245 gchar* token; local
258 if ((token = strtok_r (str, G_DIR_SEPARATOR_S, &lasts)) != NULL) {
260 FN_W ("%s %s + %s\n", __func__, NODE_NAME(parent), token);
261 child = node_new (parent, token);
    [all...]
  /external/srec/srec/include/
srec_sizes.h 34 typedef asr_uint16_t stokenID; /*for state token storage*/
35 typedef asr_uint16_t ftokenID; /*for FSMnode token storage*/
36 typedef asr_uint16_t wtokenID; /*for word token storage*/
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedTextRequest.java 32 public int token; field in class:ExtractedTextRequest
58 dest.writeInt(token);
71 res.token = source.readInt();
  /frameworks/base/media/libdrm/mobile2/src/util/xml/
XMLElementImpl.cpp 94 string token; local
98 token.assign(tag);
99 nodeList = getElementsByTagName(&token);
  /packages/apps/Mms/src/com/android/mms/transaction/
ProgressCallbackEntity.java 40 public ProgressCallbackEntity(Context context, long token, byte[] b) {
45 mToken = token;
85 intent.putExtra("token", mToken);
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/
DefaultPolicyScanner.java 117 * if unexpected or unknown token encountered
162 * if unexpected or unknown token encountered
172 } else { // handle token in the main loop
202 * if unexpected or unknown token encountered
237 default: // handle token in the main loop
262 * if unexpected or unknown token encountered
302 * if unexpected or unknown token encountered
335 } else { // handle token in the next iteration
351 default: // invalid token
361 * Formats a detailed description of tokenizer status: current token,
    [all...]

Completed in 74 milliseconds

1 2 3 4 56 7 8 91011>>