Searched refs:token (Results 551 - 575 of 1600) sorted by relevance

<<21222324252627282930>>

/external/proguard/src/proguard/ant/
H A DClassSpecificationElement.java213 String token = tokenizer.nextToken();
215 if (token.startsWith("!") ^ set)
217 String strippedToken = token.startsWith("!") ?
218 token.substring(1) :
219 token;
H A DMemberSpecificationElement.java181 String token = tokenizer.nextToken();
183 if (token.startsWith("!") ^ set)
185 String strippedToken = token.startsWith("!") ?
186 token.substring(1) :
187 token;
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java305 int token = expr.getOperator();
306 int k = CodeGen.lookupBinOp(token);
310 if (token == '+') {
329 if (!isConstant(expr, token, left, right))
330 computeBinExprType(expr, token, type1);
464 int token = (value instanceof Double)
466 return new DoubleConst(((Number)value).doubleValue(), token);
469 int token = (value instanceof Long) ? LongConstant : IntConstant;
470 return new IntConst(((Number)value).longValue(), token);
482 int token
494 computeBinExprType(BinExpr expr, int token, int type1) argument
912 atPlusPlus(int token, ASTree oprand, Expr expr) argument
[all...]
/external/srec/srec/EventLog/src/
H A DEventLogImpl.c191 impl->Interface.token = &SR_EventLog_Token;
336 ESR_ReturnCode SR_EventLog_Token(SR_EventLog* self, const LCHAR* token, const LCHAR *value) argument
341 if (self == NULL || token == NULL || value == NULL)
346 /* token cannot contain '=' */
347 if (LSTRCHR(token, L('=')) != NULL)
349 PLogError(L("SLEE: Token '%s' contains illegal '=' character"), token);
355 PLogError(L("SLEE: Value for token '%s' contains illegal newline character"), token);
360 if (LSTRLEN(token) + LSTRLEN(value) + 2 +
363 if (LSTRLEN(token)
390 SR_EventLog_TokenInt(SR_EventLog* self, const LCHAR* token, int value) argument
405 SR_EventLog_TokenPointer(SR_EventLog* self, const LCHAR* token, void* value) argument
416 SR_EventLog_TokenUint16_t(SR_EventLog* self, const LCHAR* token, asr_uint16_t value) argument
431 SR_EventLog_TokenSize_t(SR_EventLog* self, const LCHAR* token, size_t value) argument
446 SR_EventLog_TokenBool(SR_EventLog* self, const LCHAR* token, ESR_BOOL value) argument
454 SR_EventLog_TokenFloat(SR_EventLog* self, const LCHAR* token, float value) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_rss.c44 #define EMIT_RS(svga, value, token, fail) \
46 assert(SVGA3D_RS_##token < Elements(svga->state.hw_draw.rs)); \
47 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
48 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
49 svga->state.hw_draw.rs[SVGA3D_RS_##token] = value; \
53 #define EMIT_RS_FLOAT(svga, fvalue, token, fail) \
56 assert(SVGA3D_RS_##token < Elements(svga->state.hw_draw.rs)); \
57 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
58 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
59 svga->state.hw_draw.rs[SVGA3D_RS_##token]
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DScenarioResults.java179 String token = tokenizer.nextToken();
180 char fc = token.charAt(0);
182 buffer.append(token); // add the separator
183 token = tokenizer.nextToken();
184 fc = token.charAt(0);
186 int last = token.lastIndexOf('.');
188 int first = token .indexOf('.');
190 buffer.append(token);
192 buffer.append(token.substring(last+1));
195 buffer.append(token);
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_rss.c44 #define EMIT_RS(svga, value, token, fail) \
46 assert(SVGA3D_RS_##token < Elements(svga->state.hw_draw.rs)); \
47 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
48 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
49 svga->state.hw_draw.rs[SVGA3D_RS_##token] = value; \
53 #define EMIT_RS_FLOAT(svga, fvalue, token, fail) \
56 assert(SVGA3D_RS_##token < Elements(svga->state.hw_draw.rs)); \
57 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
58 svga_queue_rs( &queue, SVGA3D_RS_##token, value ); \
59 svga->state.hw_draw.rs[SVGA3D_RS_##token]
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c5 * An ANTLR3 lexer implements a base recongizer, a token source and
47 static void emitNew (pANTLR3_LEXER lexer, pANTLR3_COMMON_TOKEN token);
103 /* Now install the token source interface
147 /* Initialise the eof token
160 // Initialize the skip token.
181 lexer->rec->state->token = NULL;
191 // a token factory that needs a reset. Do that here
201 /// Returns the next available token from the current input stream.
204 /// Points to the implementation of a token source. The lexer is
208 /// The next token i
636 emitNew(pANTLR3_LEXER lexer, pANTLR3_COMMON_TOKEN token) argument
644 pANTLR3_COMMON_TOKEN token; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Dparse-filter.c78 static void free_token(char *token) argument
80 pevent_free_token(token);
86 char *token = NULL; local
89 free_token(token);
90 type = pevent_read_token(&token);
93 /* If token is = or ! check to see if the next char is ~ */
94 if (token &&
95 (strcmp(token, "=") == 0 || strcmp(token, "!") == 0) &&
99 sprintf(*tok, "%c%c", *token, '~');
336 create_arg_item(struct event_format *event, const char *token, enum event_type type, char **error_str) argument
631 process_op(const char *token, enum filter_op_type *btype, enum filter_cmp_type *ctype, enum filter_exp_type *etype) argument
892 char *token = NULL; local
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dfenced_allocator_test.cc74 return command_buffer_->GetLastState().token;
189 // Checks the free-pending-token mechanism.
212 int32 token = helper_.get()->InsertToken(); local
213 allocator_->FreePendingToken(offsets[0], token);
217 // until it has to wait for something. Which means the token shouldn't have
219 EXPECT_GT(token, GetToken());
222 // process the commands until the token is passed.
227 // Check that the token has indeed passed.
228 EXPECT_LE(token, GetToken());
237 // Checks the free-pending-token mechanis
259 int32 token = helper_.get()->InsertToken(); local
375 int32 token = helper_.get()->InsertToken(); local
621 int32 token = helper_.get()->InsertToken(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLPreloadScanner.cpp404 void TokenPreloadScanner::scan(const HTMLToken& token, const SegmentedString& source, PreloadRequestStream& requests)
406 scanCommon(token, source, requests);
409 void TokenPreloadScanner::scan(const CompactHTMLToken& token, const SegmentedString& source, PreloadRequestStream& requests)
411 scanCommon(token, source, requests);
415 void TokenPreloadScanner::scanCommon(const Token& token, const SegmentedString& source, PreloadRequestStream& requests)
417 switch (token.type()) {
421 m_cssScanner.scan(token.data(), source, requests);
425 const StringImpl* tagImpl = tagImplFor(token.data());
444 const StringImpl* tagImpl = tagImplFor(token.data());
457 updatePredictedBaseURL(token);
[all...]
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dparse.cpp62 /* keep in sync with token defines in read.h */
65 "string", /* A string token, such as "MonthNames" */
99 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
101 old slot is filled with the next token from the reader by calling getNextToken.
102 The token values are stored in the slot, which means that token values don't
222 enum ETokenType token = getToken(state, tokenValue, comment, &line, status); local
234 if (token != expectedToken)
237 error(line, "expecting %s, got %s", tokenNames[expectedToken], tokenNames[token]);
833 enum ETokenType token; local
1036 enum ETokenType token; local
1158 enum ETokenType token; local
1269 enum ETokenType token; local
1360 enum ETokenType token; local
1915 enum ETokenType token; local
2049 enum ETokenType token; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_tokenize.c192 t[i].token = --j;
195 t[i].token = a;
203 const vp9_extra_bit *p = &e[t[i].token];
264 int16_t extra, uint8_t token,
267 (*t)->token = token;
272 ++counts[token];
277 uint8_t token,
280 (*t)->token = token;
263 add_token(TOKENEXTRA **t, const vp9_prob *context_tree, int16_t extra, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
275 add_token_no_extra(TOKENEXTRA **t, const vp9_prob *context_tree, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c478 const uint **token,
488 op->op = *(struct sh_op *)*token;
489 *token += sizeof(struct sh_op) / sizeof(uint);
492 op->dst = *(struct sh_dstreg *)*token;
493 *token += sizeof(struct sh_dstreg) / sizeof(uint);
496 op->dstind = *(struct sh_srcreg *)*token;
497 *token += sizeof(struct sh_srcreg) / sizeof(uint);
502 op->p0 = *(struct sh_srcreg *)*token;
503 *token += sizeof(struct sh_srcreg) / sizeof(uint);
507 op->src[i] = *(struct sh_srcreg *)*token;
477 parse_op(struct dump_info *di, const uint **token, struct dump_op *op, uint num_dst, uint num_src) argument
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dparse.cpp84 /* keep in sync with token defines in read.h */
87 "string", /* A string token, such as "MonthNames" */
121 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
123 old slot is filled with the next token from the reader by calling getNextToken.
124 The token values are stored in the slot, which means that token values don't
244 enum ETokenType token = getToken(state, tokenValue, comment, &line, status); local
256 if (token != expectedToken)
259 error(line, "expecting %s, got %s", tokenNames[expectedToken], tokenNames[token]);
875 enum ETokenType token; local
1089 enum ETokenType token; local
1216 enum ETokenType token; local
1327 enum ETokenType token; local
1418 enum ETokenType token; local
1971 enum ETokenType token; local
2105 enum ETokenType token; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_tokenize.c131 t[i].token = --j;
134 t[i].token = a;
142 const vp9_extra_bit *p = &vp9_extra_bits[t[i].token];
180 int16_t extra, uint8_t token,
183 (*t)->token = token;
188 ++counts[token];
193 uint8_t token,
196 (*t)->token = token;
179 add_token(TOKENEXTRA **t, const vp9_prob *context_tree, int16_t extra, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
191 add_token_no_extra(TOKENEXTRA **t, const vp9_prob *context_tree, uint8_t token, uint8_t skip_eob_node, unsigned int *counts) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_dump.c478 const uint **token,
488 op->op = *(struct sh_op *)*token;
489 *token += sizeof(struct sh_op) / sizeof(uint);
492 op->dst = *(struct sh_dstreg *)*token;
493 *token += sizeof(struct sh_dstreg) / sizeof(uint);
496 op->dstind = *(struct sh_srcreg *)*token;
497 *token += sizeof(struct sh_srcreg) / sizeof(uint);
502 op->p0 = *(struct sh_srcreg *)*token;
503 *token += sizeof(struct sh_srcreg) / sizeof(uint);
507 op->src[i] = *(struct sh_srcreg *)*token;
477 parse_op(struct dump_info *di, const uint **token, struct dump_op *op, uint num_dst, uint num_src) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DASTTreeParser.stg35 * token, set, rule, wildcard
107 tokenRefBang(token,label,elementIndex) ::= <<
113 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
132 tokenRefAndListLabel(token,label,elementIndex) ::= <<
138 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
154 tokenRefRuleRootAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
160 wildcard(token,label,elementIndex,terminalOptions) ::= <<
278 /** Streams for token refs are tree nodes now; override to
281 createRewriteNodeFromElement(token,terminalOptions,scope) ::= <<
283 new <terminalOptions.node>(stream_<token>
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DASTTreeParser.stg35 * token, set, rule, wildcard
106 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <<
112 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
131 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
137 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
153 tokenRefRuleRootAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
159 wildcard(token,label,elementIndex,terminalOptions) ::= <<
277 /** Streams for token refs are tree nodes now; override to
280 createRewriteNodeFromElement(token,terminalOptions,scope) ::= <<
282 new <terminalOptions.node>(stream_<token>
[all...]
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DASTTreeParser.stg35 * token, set, rule, wildcard
117 tokenRefBang(token,label,elementIndex,terminalOptions) ::= <<
123 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
144 tokenRefAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
150 tokenRefRuleRoot(token,label,elementIndex,terminalOptions) ::= <<
166 tokenRefRuleRootAndListLabel(token,label,elementIndex,terminalOptions) ::= <<
172 wildcard(token,label,elementIndex,terminalOptions) ::= <<
293 /** Streams for token refs are tree nodes now; override to
296 createRewriteNodeFromElement(token,terminalOptions,scope) ::= <<
298 <terminalOptions.node>(stream_<token>
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dalter.c45 int token; local
56 ** statement is that the table name is the first non-space token that
57 ** is immediately followed by a TK_LP or TK_USING token.
66 /* Store the token that zCsr points to in tname. */
70 /* Advance zCsr to the next token. Store that token type in 'token',
75 len = sqlite3GetToken(zCsr, &token);
76 } while( token==TK_SPACE );
78 } while( token!
116 int token; /* Type of token */ local
165 int token; local
[all...]
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Drecognizers.py59 # Track the set of token types that can follow any rule invocation.
64 # matched a token. Prevents generation of more than one error message
70 # but no token is consumed during recovery...another error is found,
72 # one token/tree node is consumed for two errors.
80 # the stop token index for each rule. ruleMemo[ruleIndex] is
82 # get back the stop token for associated rule or MEMO_RULE_FAILED.
95 ## The goal of all lexer rules/methods is to create a token object.
97 # create a single token. nextToken will return this object after
98 # matching lexer rule(s). If you subclass to allow multiple token
99 # emissions, then set this to the last token t
[all...]
/external/chromium_org/google_apis/gcm/engine/
H A Dunregistration_request_unittest.cc140 EXPECT_EQ(kLoginHeader, auth_tokenizer.token());
142 EXPECT_EQ(base::Uint64ToString(kAndroidId), auth_tokenizer.token());
144 EXPECT_EQ(base::Uint64ToString(kSecurityToken), auth_tokenizer.token());
160 expected_pairs.find(data_tokenizer.token());
161 ASSERT_TRUE(iter != expected_pairs.end()) << data_tokenizer.token();
162 ASSERT_TRUE(data_tokenizer.GetNext()) << data_tokenizer.token();
163 EXPECT_EQ(iter->second, data_tokenizer.token());
/external/chromium_org/ppapi/generators/
H A Didl_lexer.py45 # of valid token types.
80 # 'keywords' is a map of string to token type. All SYMBOL tokens are
81 # matched against keywords, to determine if the token is actually a keyword.
101 # literal tokens, meaning the token type and token value are identical.
107 # regular expression where a match will emit a token of type <TYPE>. In the
232 t = lexer.lexobj.token()
243 t = lexer.lexobj.token()
258 t = lexer.lexobj.token()
267 # From a set of token value
[all...]
/external/srec/srec/clib/
H A Dvoc_read.c77 char token[256]; local
107 token[i++] = *ok++;
109 token[i] = 0;
111 CHKLOG(rc, lstrcasecmp(token, L("#lang"), &result));
118 while (!cr_or_nl(*ok)) token[i++] = *ok++;
119 token[i] = 0;
121 CHKLOG(rc, ESR_str2locale(token, locale));

Completed in 963 milliseconds

<<21222324252627282930>>