HomeSort by relevance Sort by last modified time
    Searched refs:TOKEN (Results 1 - 25 of 31) sorted by null

1 2

  /external/e2fsprogs/lib/ss/
parse.c 24 enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
85 /* random-token mode */
86 parse_mode = TOKEN;
97 while (parse_mode == TOKEN) {
129 parse_mode = TOKEN;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 28 private static final String TOKEN = "([a-zA-Z0-9-!#$%&'*+.^_`{|}~]+)";
30 private static final Pattern TYPE_SUBTYPE = Pattern.compile(TOKEN + "/" + TOKEN);
32 ";\\s*(?:" + TOKEN + "=(?:" + TOKEN + "|" + QUOTED + "))?");
65 ? parameter.group(2) // Value is a token.
  /cts/tests/tests/view/src/android/view/cts/
ChoreographerTest.java 26 private static final Object TOKEN = new Object();
84 // If the token matches, the the callback should be removed.
88 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
90 Choreographer.CALLBACK_ANIMATION, null, TOKEN);
95 // If the action and token matches, then the callback should be removed.
96 // If only the token matches, then the callback should not be removed.
98 Choreographer.CALLBACK_ANIMATION, addedCallback1, TOKEN);
100 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
102 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN);
142 // If the token matches, the the callback should be removed
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
StaticAccountAuthenticator.java 39 private static final String TOKEN = "asdlkjfslkjfdklj";
46 sAccountBundle.putString(AccountManager.KEY_AUTHTOKEN, TOKEN);
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/
MainActivity.java 100 getSupportLoaderManager().initLoader(SmsQuery.TOKEN, null, this);
171 if (i == SmsQuery.TOKEN) {
181 if (cursorLoader.getId() == SmsQuery.TOKEN && cursor != null) {
197 int TOKEN = 1;
  /developers/build/
github.sh 14 token=
26 -t | --token [github_auth_token]
27 Input an auth token to access the googlesamples GitHub org
47 ./prebuilts/gradle folder and prompt for an auth token when needed.\e[0m\n"
77 -t|--token)
79 token="$2"; shift
256 ## If the user hasn't supplied a token via parameter, ask now
258 if ! [ -n "$token" ]
261 Input a valid googlesamples GitHub access token to continue: " -r
262 token=$REPL
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 424 /*@egen*/ Token t; }
451 /*@egen*/ Token t; }
479 TOKEN :
500 // different token type than inner ")" instances.
518 TOKEN :
535 // to make sure matchedToken.token = token.toString()
572 TOKEN :
580 TOKEN :
590 TOKEN
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 424 /*@egen*/ Token t; }
451 /*@egen*/ Token t; }
479 TOKEN :
500 // different token type than inner ")" instances.
518 TOKEN :
535 // to make sure matchedToken.token = token.toString()
572 TOKEN :
580 TOKEN :
590 TOKEN
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
config.cpp 155 TOKEN,
164 string token; local
205 token.erase();
207 state = TOKEN;
208 token.push_back(c);
211 case TOKEN:
214 token.push_back('\0');
218 token.push_back(c);
305 pParam = new CNfcParam(token.c_str(), strValue);
307 pParam = new CNfcParam(token.c_str(), numValue)
    [all...]
  /external/libnfc-nci/src/adaptation/
config.cpp 155 TOKEN,
164 string token; local
216 token.erase();
218 state = TOKEN;
219 token.push_back(c);
222 case TOKEN:
225 token.push_back('\0');
229 token.push_back(c);
316 pParam = new CNfcParam(token.c_str(), strValue);
318 pParam = new CNfcParam(token.c_str(), numValue)
    [all...]
  /external/libnfc-nci/halimpl/pn54x/utils/
phNxpConfig.cpp 192 TOKEN,
202 string token; local
244 token.erase();
246 state = TOKEN;
247 token.push_back(c);
250 case TOKEN:
253 token.push_back('\0');
257 token.push_back(c);
366 pParam = new CNfcParam(token.c_str(), strValue);
368 pParam = new CNfcParam(token.c_str(), numValue)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 161 private static final String TOKEN = "__FromAndroid";
177 return prefix.endsWith(TOKEN);
181 return prefix + TOKEN + suffix;
185 return prefix.replace(TOKEN, "") + suffix;
  /prebuilts/sdk/tools/
jack.jar 
  /external/llvm/lib/AsmParser/
LLLexer.cpp 318 /// ReadVarName - Read the rest of a token containing a variable name.
751 #define DWKEYWORD(TYPE, TOKEN) \
755 return lltok::TOKEN; \
779 // Bad token, return it as an error.
821 // Bad token, return it as an error.
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 591 * ":"), {@code Scanner} would recognize it only as a single token.
607 // The character index within this.text at which the current token begins.
610 // The line and column numbers of the current token.
614 // The line and column numbers of the previous token (allows throwing
623 private static final Pattern TOKEN = Pattern.compile(
653 /** Advance to the next token. */
669 // Match the next token.
674 matcher.usePattern(TOKEN);
690 * token.
700 * If the next token exactly matches {@code token}, consume it and retur
    [all...]
  /external/selinux/sepolgen/src/sepolgen/
lex.py 29 # Regular expression used to match valid token names
42 # Exception thrown when invalid token encountered and no default error
49 # Token class
64 # token() - Get the next token
244 # token() - Return the next token from the Lexer
250 def token(self): member in class:Lexer
271 # Create a token for return
284 # If no token type was set, it's an ignored toke
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
lex.py 29 # Regular expression used to match valid token names
42 # Exception thrown when invalid token encountered and no default error
49 # Token class
64 # token() - Get the next token
244 # token() - Return the next token from the Lexer
250 def token(self): member in class:Lexer
271 # Create a token for return
284 # If no token type was set, it's an ignored toke
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
lex.py 29 # Regular expression used to match valid token names
42 # Exception thrown when invalid token encountered and no default error
49 # Token class
64 # token() - Get the next token
244 # token() - Return the next token from the Lexer
250 def token(self): member in class:Lexer
271 # Create a token for return
284 # If no token type was set, it's an ignored toke
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 13 // copies from Token object for convenience in actions
54 * single token insertion or deletion error recovery. If
57 * To turn off single token insertion or deletion error
95 // a single token and hope for the best
106 // if current token is consistent with what could come after set
107 // then we know we're missing a token; error recovery is free to
108 // "insert" the missing token
122 /** Factor out what to do upon token mismatch so tree parsers can behave
124 * to get single token insertion and deletion. Use this to turn of
125 * single token insertion and deletion. Override mismatchRecove
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/
javacc-5.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 59 /// or token type sequence (such as for interpretation).
74 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).
75 /// LA(-i) where i is before first token should yield -1, invalid char or EOF.
248 /// <summary>The line number on which this token was matched; line=1..N</summary>
256 /// <summary>The line number on which this token was matched; line=1..N</summary>
260 /// An index from 0..N-1 of the token object in the input stream
267 /// <summary>The text of the token</summary>
281 /// to keep going or you do not upon token recognition error. If you do not
286 /// requested a token. Keep lexing until you get a valid one. Just repor
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 

Completed in 2419 milliseconds

1 2