HomeSort by relevance Sort by last modified time
    Searched defs:TOKEN (Results 1 - 25 of 28) 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 + ")");
66 ? parameter.group(2) // Value is a token.
  /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);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-java/
HelloLicenseServlet.java 33 /* TODO: The token from the Chrome Developer Dashboard. */
34 private static final String TOKEN = "[INSERT TOKEN HERE]";
36 /* TODO: The token secret from the Chrome Developer Dashboard. */
37 private static final String TOKEN_SECRET = "[INSERT TOKEN SECRET HERE]";
73 oauth.setTokenWithSecret(TOKEN, TOKEN_SECRET);
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java 98 getSupportLoaderManager().initLoader(SmsQuery.TOKEN, null, this);
161 if (i == SmsQuery.TOKEN) {
171 if (cursorLoader.getId() == SmsQuery.TOKEN && cursor != null) {
187 int TOKEN = 1;
  /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...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
lexer.py 26 from ply.lex import TOKEN
52 def _error(self, msg, token):
53 raise LexError(self.filename, msg, token.lineno)
209 @TOKEN(floating_constant)
213 @TOKEN(hex_constant)
217 @TOKEN(octal_constant_disallowed)
222 @TOKEN(decimal_constant)
229 @TOKEN(char_const)
233 @TOKEN(unmatched_quote)
238 @TOKEN(bad_char_const
    [all...]
  /external/chromium_org/third_party/ply/
lex.py 57 # This regular expression is used to match valid token names
60 # Exception thrown when invalid token encountered and no default error
68 # Token class. This class is used to represent the tokens produced.
107 # token() - Get the next token
298 # opttoken() - Return the next token from the Lexer
304 def token(self): member in class:Lexer
322 # Create a token for return
332 # If no token type was set, it's an ignored token
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
lempar.c 14 /* Next is all token values, in a form suitable for use by makeheaders.
42 ** original value of the token will not parse.
87 ** current state and lookahead token. These tables are used to implement
95 ** token onto the stack and goto state N.
140 ** appears in the grammar, then ID becomes a fallback token for X, Y,
142 ** but it does not parse, the type of the token is changed to ID and
156 ** + The value of the token stored at this level of the stack.
157 ** (In other words, the "major" token.)
161 ** It is sometimes called the "minor" token.
165 YYCODETYPE major; /* The major token value. This is the cod
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
lempar.c 8 /* Next is all token values, in a form suitable for use by makeheaders.
36 ** original value of the token will not parse.
81 ** current state and lookahead token. These tables are used to implement
89 ** token onto the stack and goto state N.
134 ** appears in the grammar, then ID becomes a fallback token for X, Y,
136 ** but it does not parse, the type of the token is changed to ID and
150 ** + The value of the token stored at this level of the stack.
151 ** (In other words, the "major" token.)
155 ** It is sometimes called the "minor" token.
159 YYCODETYPE major; /* The major token value. This is the cod
    [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/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;
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 396 * ":"), {@code Scanner} would recognize it only as a single token.
412 // The character index within this.text at which the current token begins.
415 // The line and column numbers of the current token.
419 // The line and column numbers of the previous token (allows throwing
428 private static final Pattern TOKEN = Pattern.compile(
458 /** Advance to the next token. */
474 // Match the next token.
479 matcher.usePattern(TOKEN);
495 * token.
505 * If the next token exactly matches {@code token}, consume it and retur
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 562 * ":"), {@code Scanner} would recognize it only as a single token.
578 // The character index within this.text at which the current token begins.
581 // The line and column numbers of the current token.
585 // The line and column numbers of the previous token (allows throwing
594 private static final Pattern TOKEN = Pattern.compile(
624 /** Advance to the next token. */
640 // Match the next token.
645 matcher.usePattern(TOKEN);
661 * token.
671 * If the next token exactly matches {@code token}, consume it and retur
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.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/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 7954 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram
12331 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame
74539 int token; local
74610 int token; \/* Type of token *\/ local
74659 int token; local
106978 u8 token; \/* Value of the next token *\/ local
    [all...]
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /external/sqlite/dist/orig/
sqlite3.c 9178 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram
13997 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame
82625 int token; local
82696 int token; \/* Type of token *\/ local
82746 int token; local
121895 u8 token; \/* Value of the next token *\/ local
    [all...]
  /external/sqlite/dist/
sqlite3.c 9178 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram
13997 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame
82645 int token; local
82716 int token; \/* Type of token *\/ local
82766 int token; local
121915 u8 token; \/* Value of the next token *\/ local
    [all...]
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bndlib/1.50.0/
bndlib-1.50.0.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 1368 milliseconds

1 2