/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/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/chrome/common/extensions/docs/examples/apps/hello-java/ |
HelloLicenseServlet.java | 34 /* TODO: The token from the Chrome Developer Dashboard. */ 35 private static final String TOKEN = "[INSERT TOKEN HERE]"; 37 /* TODO: The token secret from the Chrome Developer Dashboard. */ 38 private static final String TOKEN_SECRET = "[INSERT TOKEN SECRET HERE]"; 74 oauth.setTokenWithSecret(TOKEN, TOKEN_SECRET);
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/src/com/example/ |
HelloLicenseServlet.java | 34 /* TODO: The token from the Chrome Developer Dashboard. */ 35 private static final String TOKEN = "[INSERT TOKEN HERE]"; 37 /* TODO: The token secret from the Chrome Developer Dashboard. */ 38 private static final String TOKEN_SECRET = "[INSERT TOKEN SECRET HERE]"; 74 oauth.setTokenWithSecret(TOKEN, TOKEN_SECRET);
|
/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(); 73 // If the token matches, the the callback should be removed. 77 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN); 79 Choreographer.CALLBACK_ANIMATION, null, TOKEN); 84 // If the action and token matches, then the callback should be removed. 85 // If only the token matches, then the callback should not be removed. 87 Choreographer.CALLBACK_ANIMATION, addedCallback1, TOKEN); 89 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN); 91 Choreographer.CALLBACK_ANIMATION, removedCallback, TOKEN); 131 // If the token matches, the the callback should be removed [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 | 156 TOKEN, 165 string token; local 206 token.erase(); 208 state = TOKEN; 209 token.push_back(c); 212 case TOKEN: 215 token.push_back('\0'); 219 token.push_back(c); 306 pParam = new CNfcParam(token.c_str(), strValue); 308 pParam = new CNfcParam(token.c_str(), numValue) [all...] |
/external/libnfc-nci/src/adaptation/ |
config.cpp | 156 TOKEN, 165 string token; local 206 token.erase(); 208 state = TOKEN; 209 token.push_back(c); 212 case TOKEN: 215 token.push_back('\0'); 219 token.push_back(c); 306 pParam = new CNfcParam(token.c_str(), strValue); 308 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 | |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | 7969 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram 12346 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame 74718 int token; local 74789 int token; \/* Type of token *\/ local 74838 int token; local 107185 u8 token; \/* Value of the next token *\/ local [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | 8505 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram 12950 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame 78476 int token; local 78547 int token; \/* Type of token *\/ local 78596 int token; local 112169 u8 token; \/* Value of the next token *\/ local [all...] |
/external/sqlite/dist/ |
sqlite3.c | 8505 void *token; \/* id that may be used to recursive triggers *\/ member in struct:SubProgram 12950 void *token; \/* Copy of SubProgram.token *\/ member in struct:VdbeFrame 78512 int token; local 78583 int token; \/* Type of token *\/ local 78632 int token; local 112205 u8 token; \/* Value of the next token *\/ local [all...] |
/external/antlr/antlr-3.4/lib/ |
antlr-3.4-complete.jar | |
/prebuilts/misc/common/antlr/ |
antlr-3.4-complete.jar | |
/prebuilts/misc/common/groovy/ |
groovy-all-1.7.0.jar | |