/frameworks/base/awt/java/awt/ |
AWTKeyStroke.java | 369 String token = null; local 371 token = getNextToken(tokenizer); 372 modifier = parseModifier(token); 376 typed = parseTypedID(token); 379 token = getNextToken(tokenizer); 380 keyChar = parseTypedKey(token); 384 release = parsePressedReleasedID(token); 386 token = getNextToken(tokenizer); 388 keyCode = parseKey(token); 399 * Gets the next token [all...] |
/cts/tools/dx-tests/src/util/ |
CollectAllTests.java | 331 String token = null; 333 token = scanner.findWithinHorizon(pattern, methodSource.length()); 334 if (token != null) { 339 if (token == null) { 381 String token = scanner.findWithinHorizon(methodPattern, (int) f 383 if (token == null) { 394 builder.append(token);
|
/external/bison/tests/ |
conflicts.at | 73 /* No token stands for end of file. */ 133 [[%token NUM OP 240 [[%token NUM OP 326 Conflict between rule 1 and token OP resolved as reduce (%left OP). 479 [[%token NUM OP 499 [[%token NUM OP 516 [[%token NUM OP
|
input.at | 67 [[%token foo 92 [[%token <integer> INT 160 [[%token foo "foo" 283 %token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1" 366 %token <val> MY_TOKEN "MY TOKEN" 369 exp: "MY TOKEN";
|
/external/emma/lib/internal/ |
stamptool.jar | |
/external/freetype/src/psaux/ |
afmparse.c | 708 AFM_Token token = afm_tokenize( key, len ); local 711 switch ( token ) 738 if ( token == AFM_TOKEN_KPY ) 746 kp->y = ( token == AFM_TOKEN_KP && r == 4 ) 834 AFM_Token token = afm_tokenize( key, len ); local 837 if ( token == end_section || token == AFM_TOKEN_ENDFONTMETRICS )
|
/external/ipsec-tools/src/libipsec/ |
policy_parse.y | 138 %token DIR 139 %token PRIORITY PLUS 140 %token <num32> PRIO_BASE 141 %token <val> PRIO_OFFSET 142 %token ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY IPADDRESS PORT 143 %token ME ANY 144 %token SLASH HYPHEN
|
/external/v8/src/x64/ |
codegen-x64.cc | 169 DeferredInlineSmiOperation(Token::Value op, 185 Token::Value op_; [all...] |
/frameworks/base/services/java/com/android/server/ |
InputMethodManagerService.java | 206 * The last window token that gained focus. 258 * The token we have made for the currently active input method, to 797 if (DEBUG) Slog.v(TAG, "Adding window token: " + mCurToken); 833 Slog.w(TAG, "Service connected without a token!"); 837 if (DEBUG) Slog.v(TAG, "Initiating attach with token: " + mCurToken); [all...] |
/packages/apps/Email/src/com/android/exchange/adapter/ |
Parser.java | 87 // The type of the last token read 153 * Set the debug state of the parser. When debugging is on, every token is logged (Log.v) to 163 * Set the tag used for logging. When debugging is on, every token is logged (Log.v) to 214 // Read the next token; it had better be the end of the current tag 238 // Read the next token; it had better be the end of the current tag 302 * Retrieve the next token from the input stream 304 * @return the token found
|
/external/srec/srec/Recognizer/include/ |
SR_Recognizer.h | 409 * Log recognizer-related event token. 412 * @param event Token name 416 ESR_ReturnCode(*logToken)(struct SR_Recognizer_t* self, const LCHAR* token, const LCHAR* value); 419 * Log recognizer-related event token integer. 422 * @param event Token name 426 ESR_ReturnCode(*logTokenInt)(struct SR_Recognizer_t* self, const LCHAR* token, int value); 819 * Log recognizer-related event token. 822 * @param token Token name 826 SREC_RECOGNIZER_API ESR_ReturnCode SR_RecognizerLogToken(SR_Recognizer* self, const LCHAR* token, const LCHAR* value) [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/ |
XPathParser.java | 52 * The next token in the pattern. 64 * The position in the token queue is tracked by m_queueMark. 260 * return true if the current token matches the string, else false. 273 * the current token. 281 * Look ahead of the current token in order to 288 * @return true if the next token matches the character argument. 312 * Look behind the first character of the current token in order to 322 * @return true if the token behind the current token matches the character 355 * look behind the current token in order t [all...] |
/system/core/libacc/ |
acc.cpp | 3862 Token& token = (*mpTokenTable)[tok]; local 3876 Token& token = (*mpTokenTable)[tok]; local [all...] |
/bootable/recovery/applypatch/ |
applypatch.c | 36 ssize_t FileSink(unsigned char* data, ssize_t len, void* token); 447 ssize_t FileSink(unsigned char* data, ssize_t len, void* token) { 448 int fd = *(int *)token; 468 ssize_t MemorySink(unsigned char* data, ssize_t len, void* token) { 469 MemorySinkInfo* msi = (MemorySinkInfo*)token; 703 void* token = NULL; local 717 token = &msi; 731 token = &output; 744 patch, 0, sink, token, &ctx); 748 patch, sink, token, &ctx) [all...] |
/external/v8/src/arm/ |
codegen-arm.h | 305 void GenericBinaryOperation(Token::Value op, 313 void SmiOperation(Token::Value op, 458 GenericBinaryOpStub(Token::Value op, 468 Token::Value op_; 478 class OpBits: public BitField<Token::Value, 2, 6> {}; 492 static bool RhsIsOneWeWantToOptimizeFor(Token::Value op, int constant_rhs) { 494 if (op == Token::DIV) return constant_rhs >= 2 && constant_rhs <= 3; 495 if (op == Token::MOD) { 522 PrintF("GenericBinaryOpStub (%s)\n", Token::String(op_)); 525 Token::String(op_) [all...] |
/frameworks/base/core/java/android/os/ |
Handler.java | 292 public final boolean postAtTime(Runnable r, Object token, long uptimeMillis) 294 return sendMessageAtTime(getPostMessage(r, token), uptimeMillis); 349 * <var>token</var> that are in the message queue. 351 public final void removeCallbacks(Runnable r, Object token) 353 mQueue.removeMessages(this, r, token); 513 * <var>obj</var> is <var>token</var>. 515 public final void removeCallbacksAndMessages(Object token) { 516 mQueue.removeCallbacksAndMessages(this, token); 579 private final Message getPostMessage(Runnable r, Object token) { 581 m.obj = token; [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/codec/ |
EncoderUtil.java | 95 * Encoded word is used to replace a 'text' token in any Subject or 172 // value := token / quoted-string 187 * whether the encoded-word is to be used to replace a text token 262 * whether the encoded-word is to be used to replace a text token 283 * whether the encoded-word is to be used to replace a text token 304 * whether the encoded-word is to be used to replace a text token 397 * whether the encoded-word is to be used to replace a text token 425 * Tests whether the specified string is a token as defined in RFC 2045 430 * @return <code>true</code> if the specified string is a RFC 2045 token, 434 // token := 1*<any (US-ASCII) CHAR except SPACE, CTLs, or tspecials [all...] |
/dalvik/vm/jdwp/ |
JdwpEvent.c | 59 - If I'm going to suspend, grab the "I am posting an event" token. Wait 63 myself, release the "I am posting" token. 66 sleep until we can acquire the "I am posting an event" token. Release 75 - thread A gets the event token, thread B sits and waits for it 77 for the token and can't be suspended 81 If we just bracket the "grab event token" call with a change to VMWAIT 82 before sleeping, the switch back to RUNNING state when we get the token 84 still in force, even after it releases the token). Suspending while 85 holding the event token is very bad, because it prevents the JDWP thread 674 LOGV("event token grabbed (0x%llx)\n", threadId) [all...] |
/external/bison/src/ |
symtab.c | 230 complain_at (loc, _("redefining user token number of %s"), sym->tag); 233 /* User defined $end token? */ 257 _("symbol %s is used, but is not defined as a token and has no rules"), 368 | Assign a symbol number, and write the definition of the token name | 381 /* This symbol and its alias are a single token defn. 415 | Put THIS in TOKEN_TRANSLATIONS if it is a token. | 425 /* A token which translation has already been set? */ 589 /* Find the highest user token number, and whether 256, the POSIX 590 preferred user token number for the error token, is used. * [all...] |
/external/svox/pico/tts/ |
com_svox_picottsengine.cpp | 587 * @tokstart - address of a variable to receive the start of the token found 588 * @tokstart - address of a variable to receive the length of the token found 589 * return : 1=token found, 0=token not found 590 * notes : the token separator set could be enlarged adding characters in "seps" 615 * Searches for subtokens in a token having a compound structure with camel case like "xxxYyyy" 619 * @tokstart - address of a variable to receive the start of the sub token found 620 * @tokstart - address of a variable to receive the length of the sub token found 621 * return : 1=sub token found, 0=sub token not foun [all...] |
/external/icu4c/common/ |
uvector.h | 22 * A token comparison function. 23 * @param tok1 A token (object or integer) 24 * @param tok2 A token (object or integer) 32 * A token assignment function. It may copy an integer, copy 34 * @param dst The token to be assigned to 35 * @param src The token to assign from
|
/external/srec/srec/include/ |
srec.h | 146 wtokenID word_token_list; /* index of head token in queue - keep worst at end 218 ftokenID active_fsmnode_tokens; /* linked list of all fsmnode token (same as ones in 238 stokenID fsmarc_token_freelist; /*index to head of state token freelist*/ 246 ftokenID fsmnode_token_freelist; /*index to head of fsmnode token freelist*/ 256 wtokenID word_token_freelist; /* index to head of word token freelist*/ 268 stokenID best_fsmarc_token; /* ?? index of best scoring state token
|
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
parse.y | 3 %token CHAR NUMBER SECTEND SCDECL XSCDECL NAME PREVCCL EOF_OP 4 %token OPTION_OP OPT_OUTFILE OPT_PREFIX OPT_YYCLASS 6 %token CCE_ALNUM CCE_ALPHA CCE_BLANK CCE_CNTRL CCE_DIGIT CCE_GRAPH 7 %token CCE_LOWER CCE_PRINT CCE_PUNCT CCE_SPACE CCE_UPPER CCE_XDIGIT 102 * token type is "long" instead of "int"; this leads to problems with 105 * following should ensure that the default token type is "int".
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
StringTokenizerTest.java | 118 assertEquals("Incorrect token count returned", 5, st.countTokens()); 244 assertEquals("nextToken(String) returned incorrect value with normal token String", 246 assertEquals("nextToken(String) returned incorrect value with custom token String",
|
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderElement.java | 51 * name = token 52 * value = ( token | quoted-string ) 54 * token = 1*<any char except "=", ",", ";", <"> and
|