HomeSort by relevance Sort by last modified time
    Searched full:token (Results 1 - 25 of 1146) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dasm/src/dasm/
ReservedWords.java 21 import java_cup.runtime.token;
24 static Hashtable<String, token> reserved_words;
26 public static token get(String name) {
27 return (token) reserved_words.get(name);
35 reserved_words = new Hashtable<String, token>();
38 reserved_words.put(".annotation", new token(sym.DANNOTATION));
39 reserved_words.put(".attribute", new token(sym.DATTRIBUTE));
40 reserved_words.put(".bytecode", new token(sym.DBYTECODE));
41 reserved_words.put(".catch", new token(sym.DCATCH));
42 reserved_words.put(".class", new token(sym.DCLASS))
    [all...]
  /external/v8/src/
scanner.cc 193 { "break", KEYWORD_PREFIX, Token::BREAK },
194 { NULL, C, Token::ILLEGAL },
195 { NULL, D, Token::ILLEGAL },
196 { "else", KEYWORD_PREFIX, Token::ELSE },
197 { NULL, F, Token::ILLEGAL },
198 { NULL, UNMATCHABLE, Token::ILLEGAL },
199 { NULL, UNMATCHABLE, Token::ILLEGAL },
200 { NULL, I, Token::ILLEGAL },
201 { NULL, UNMATCHABLE, Token::ILLEGAL },
202 { NULL, UNMATCHABLE, Token::ILLEGAL }
532 Token::Value token; local
718 Token::Value token; local
    [all...]
  /external/srec/srec/EventLog/include/
SR_EventLog.h 55 * Log a string token using the basic logging level.
59 log->token(log, tokenName, value) : ESR_SUCCESS ) \
62 * Log an integer token using the basic logging level.
69 * Log a uint16 token using the basic logging level.
76 * Log a size_t token using the basic logging level.
83 * Log a boolean token using the basic logging level.
90 * Log a float token using the basic logging level.
104 * Log a string token using the audio logging level.
108 log->token(log, tokenName, value) : ESR_SUCCESS ) \
111 * Log an integer token using the audio logging level
143 ESR_ReturnCode(*token)(struct SR_EventLog_t* self, const LCHAR* token, const LCHAR *value); member in struct:SR_EventLog_t
    [all...]
  /external/srec/tools/cmd/
srecres2utd.pl 51 if(defined %token) {
52 process(\%token, \%results);
53 dump_record($hUTD, \%token);
57 undef %token;
58 $token{file} = $file;
60 $token{gender} = $gender{$1};
61 $token{"snr"} = get_snr($file) if($additional_fieldh{"snr"});
62 $token{"snrr"} = sprintf("%.2d",int(get_snr($file)/5+0.5)*5) if($additional_fieldh{"snrr"});
64 $token{ortho} = normalize($1);
68 $token{parsed_ortho} = $augval
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
AddressListParserConstants.java 56 "<token of kind 16>",
57 "<token of kind 17>",
61 "<token of kind 21>",
63 "<token of kind 23>",
64 "<token of kind 24>",
67 "<token of kind 27>",
69 "<token of kind 29>",
70 "<token of kind 30>",
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
ContentTypeParser.java 64 Token type;
65 Token subtype;
87 Token attrib;
97 Token t;
116 public Token token, jj_nt; field in class:ContentTypeParser
134 token = new Token();
146 token = new Token();
    [all...]
ContentTypeParserConstants.java 45 "<token of kind 9>",
47 "<token of kind 11>",
48 "<token of kind 12>",
51 "<token of kind 15>",
53 "<token of kind 17>",
54 "<token of kind 18>",
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 1 /* Generated By:JavaCC: Do not edit this line. Token.java Version 3.0 */
20 * Describes the input token stream.
23 public class Token {
26 * An integer that describes the kind of this token. This numbering
34 * of this token; endLine and endColumn describe the position of the
35 * last character of this token.
40 * The string image of the token.
45 * A reference to the next regular (non-special) token from the input
46 * stream. If this is the last token from the input stream, or if the
47 * token manager has not read tokens beyond this one, this field i
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 32 #include "token.h"
43 i::Token::Value token; member in struct:KeywordToken
47 #define KEYWORD(t, s, d) { s, i::Token::t },
51 { NULL, i::Token::IDENTIFIER }
68 if (key_token.token == i::Token::INSTANCEOF && j == 2) {
71 CHECK_EQ(i::Token::IN, matcher.token());
73 CHECK_EQ(i::Token::IDENTIFIER, matcher.token())
    [all...]
  /external/bison/tests/
existing.at 38 %token FUNC_CALL NAME REGEXP
39 %token ERROR
40 %token YNUMBER YSTRING
41 %token RELOP APPEND_OP
42 %token ASSIGNOP MATCHOP NEWLINE CONCAT_OP
43 %token LEX_BEGIN LEX_END LEX_IF LEX_ELSE LEX_RETURN LEX_DELETE
44 %token LEX_WHILE LEX_DO LEX_FOR LEX_BREAK LEX_CONTINUE
45 %token LEX_PRINT LEX_PRINTF LEX_NEXT LEX_EXIT LEX_FUNCTION
46 %token LEX_GETLINE LEX_NEXTFILE
47 %token LEX_I
    [all...]
  /external/webkit/WebCore/html/
HTMLParser.h 47 struct Token;
60 * parses one token delivered by the tokenizer
62 PassRefPtr<Node> parseToken(Token*);
64 // Parses a doctype token.
85 PassRefPtr<Node> getNode(Token*);
86 bool bodyCreateErrorCheck(Token*, RefPtr<Node>&);
87 bool canvasCreateErrorCheck(Token*, RefPtr<Node>&);
88 bool commentCreateErrorCheck(Token*, RefPtr<Node>&);
89 bool ddCreateErrorCheck(Token*, RefPtr<Node>&);
90 bool dtCreateErrorCheck(Token*, RefPtr<Node>&)
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
OIDTokenizer.java 33 String token; local
38 token = oid.substring(index);
40 return token;
43 token = oid.substring(index, end);
46 return token;
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 156 String token = ""; local
160 token = tokenizer.nextToken();
164 (token.equals(" ") || token.equals("\t") || token.equals("=")))
167 String name = token;
170 token = tokenizer.nextToken();
172 (token.equals(" " ) || token.equals("\t") || token.equals("="))
    [all...]
  /external/clearsilver/util/
missing.c 33 char *token; local
46 /* Find the end of the token. */
47 token = s;
48 s = strpbrk (token, delim);
50 /* This token finishes the string. */
51 /**save_ptr = __rawmemchr (token, '\0');*/
52 *save_ptr = strchr (token, '\0');
55 /* Terminate the token and make
60 return token;
  /external/icu4c/test/intltest/
tokiter.cpp 25 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) {
29 token.truncate(0);
40 if (!nextToken(token, ec)) {
54 * Read the next token from 'this->line' and append it to 'token'.
59 * @param token the token is appended to this StringBuffer
61 * @return TRUE if a valid token is found, or FALSE if the end
64 UBool TokenIterator::nextToken(UnicodeString& token, UErrorCode& ec) {
79 token.append(c)
    [all...]
  /external/webkit/JavaScriptCore/runtime/
LiteralParser.cpp 38 LiteralParser::TokenType LiteralParser::Lexer::lex(LiteralParserToken& token)
45 token.type = TokEnd;
46 token.start = token.end = m_ptr;
49 token.type = TokError;
50 token.start = m_ptr;
53 token.type = TokLBracket;
54 token.end = ++m_ptr;
57 token.type = TokRBracket;
58 token.end = ++m_ptr
    [all...]
  /frameworks/base/libs/surfaceflinger/
Tokenizer.cpp 49 uint32_t token = run.first + run.length; local
50 _insertTokenAt(token, 1);
51 return token;
54 bool Tokenizer::isAcquired(uint32_t token) const
56 return (_indexOrderOf(token) >= 0);
59 status_t Tokenizer::reserve(uint32_t token)
62 const ssize_t i = _indexOrderOf(token, &o);
64 return BAD_VALUE; // this token is already taken
66 ssize_t err = _insertTokenAt(token, o);
70 status_t Tokenizer::release(uint32_t token)
    [all...]
  /frameworks/base/opengl/libagl/
Tokenizer.cpp 50 uint32_t token = run.first + run.length; local
51 _insertTokenAt(token, 1);
52 return token;
55 bool Tokenizer::isAcquired(uint32_t token) const
57 return (_indexOrderOf(token) >= 0);
60 status_t Tokenizer::reserve(uint32_t token)
63 const ssize_t i = _indexOrderOf(token, &o);
65 return BAD_VALUE; // this token is already taken
67 ssize_t err = _insertTokenAt(token, o);
71 status_t Tokenizer::release(uint32_t token)
    [all...]
  /frameworks/base/core/java/android/content/
AsyncQueryHandler.java 72 int token = msg.what; local
109 // passing the original token value back to the caller
111 Message reply = args.handler.obtainMessage(token);
146 * @param token A token passed into {@link #onQueryComplete} to identify
164 public void startQuery(int token, Object cookie, Uri uri,
167 // Use the token as what so cancelOperations works properly
168 Message msg = mWorkerThreadHandler.obtainMessage(token);
190 * @param token The token representing the operation to be canceled
338 int token = msg.what; local
    [all...]
  /external/icu4c/tools/genrb/
read.h 30 TOK_STRING, /* A string token, such as "MonthNames" */
38 TOK_TOKEN_COUNT /* Number of "real" token types */
46 struct UString *token,
47 uint32_t *linenumber, /* out: linenumber of token */
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
console.c 59 Token
62 /* Token types */
76 /* Monitor token structure */
94 FuncToken_t f_tokenFunc; /* Token handler */
98 } token; member in union:ConEntry_t::__anon8109
132 Make a preliminary analizis of <name> token.
133 Returns a token type (Empty, Up, Root, Break, Name)
330 /* Returns number of parameters of the given token
335 if ( !p_token->u.token.parm )
338 (i<p_token->u.token.totalParams) &
    [all...]
  /system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
console.c 59 Token
62 /* Token types */
76 /* Monitor token structure */
94 FuncToken_t f_tokenFunc; /* Token handler */
98 } token; member in union:ConEntry_t::__anon13951
132 Make a preliminary analizis of <name> token.
133 Returns a token type (Empty, Up, Root, Break, Name)
330 /* Returns number of parameters of the given token
335 if ( !p_token->u.token.parm )
338 (i<p_token->u.token.totalParams) &
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
StreamTokenizerTest.java 42 assertEquals("Token[Testing], line 1", a.toString());
44 assertEquals("Token[n=12345.0], line 1", a.toString());
46 assertEquals("Token[alpha], line 2", a.toString());
48 assertEquals("Token[omega], line 3", a.toString());
50 assertEquals("Token[EOF], line 3", a.toString());
60 assertEquals("Token[n=-3.8], line 1", b.toString());
62 assertEquals("Token[BLIND mice], line 1", b.toString());
64 assertEquals("Token[EOL], line 2", b.toString());
66 assertEquals("Token[see], line 2", b.toString());
68 assertEquals("Token[the], line 2", b.toString())
    [all...]

Completed in 65 milliseconds

1 2 3 4 5 6 7 8 91011>>