HomeSort by relevance Sort by last modified time
    Searched defs:TOKEN (Results 1 - 17 of 17) sorted by null

  /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 23 from ply.lex import TOKEN
47 def _error(self, msg, token):
48 raise LexError(self.filename, msg, token.lineno)
199 @TOKEN(floating_constant)
203 @TOKEN(hex_constant)
207 @TOKEN(octal_constant_disallowed)
212 @TOKEN(decimal_constant)
218 @TOKEN(bad_string_literal)
224 @TOKEN(octal_or_hex_ordinal_disallowed)
229 @TOKEN(ordinal
    [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...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.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/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 

Completed in 411 milliseconds