Searched refs:token (Results 476 - 500 of 1600) sorted by last modified time

<<11121314151617181920>>

/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.h843 Token::Value op() const { return hydrogen()->token(); }
1106 Token::Value op() const { return hydrogen()->token(); }
1191 Token::Value op() const { return hydrogen()->token(); }
/external/chromium_org/v8/src/
H A Dparser.cc676 Token::Value token, int pos,
679 switch (token) {
2556 // Consume the return token. It is necessary to do that before
675 ExpressionFromLiteral( Token::Value token, int pos, Scanner* scanner, AstNodeFactory<AstConstructionVisitor>* factory) argument
H A Dparser.h558 Token::Value token, int pos, Scanner* scanner,
H A Dpreparser.cc579 // Consume the return token. It is necessary to do before
631 Token::Value token = peek(); local
632 while (token != Token::RBRACE) {
633 if (token == Token::CASE) {
640 token = peek();
641 while (token != Token::CASE &&
642 token != Token::DEFAULT &&
643 token != Token::RBRACE) {
645 token = peek();
H A Dpreparser.h15 #include "src/token.h"
303 // Any further calls to Next or peek will return the illegal token.
304 // The current call must return the next token, which might already
312 void Consume(Token::Value token) { argument
315 USE(token);
316 DCHECK(next == token);
319 bool Check(Token::Value token) { argument
321 if (next == token) {
328 void Expect(Token::Value token, bool* ok) { argument
330 if (next != token) {
430 Precedence(Token::Value token, bool accept_IN) argument
1326 ExpressionFromLiteral( Token::Value token, int pos, Scanner* scanner, PreParserFactory* factory) argument
1608 ReportUnexpectedToken(Token::Value token) argument
1767 Token::Value token = peek(); local
[all...]
H A Druntime.cc6192 Token::Value token = static_cast<Token::Value>(token_raw); local
6193 switch (token) {
13682 // Compares 2 strings line-by-line, then token-wise and returns diff in form
H A Dscanner.cc49 // after a newline and scan first token.
224 Token::Value token = static_cast<Token::Value>(one_char_tokens[c0_]); local
225 if (token != Token::ILLEGAL) {
227 next_.token = token;
231 return current_.token;
235 return current_.token;
413 Token::Value token; local
415 // Remember the position of the next token
422 token
[all...]
H A Dscanner.h16 #include "src/token.h"
350 // Returns the next token and advances input.
352 // Returns the current token again.
353 Token::Value current_token() { return current_.token; }
354 // Returns the location information for the current token
355 // (the token last returned by Next()).
358 // Similar functions for the upcoming token.
360 // One token look-ahead (past the token returned by Next()).
361 Token::Value peek() const { return next_.token; }
391 const char* token = local
401 const char* token = local
472 Token::Value token; member in struct:v8::internal::Scanner::TokenDesc
[all...]
H A Dstring-stream.cc459 Object* token = context->native_context()->security_token(); local
460 if (token != isolate->string_stream_current_security_token()) {
461 Add("Security context: %o\n", token);
462 isolate->set_string_stream_current_security_token(token);
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h853 Token::Value op() const { return hydrogen()->token(); }
1107 Token::Value op() const { return hydrogen()->token(); }
1192 Token::Value op() const { return hydrogen()->token(); }
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h873 Token::Value op() const { return hydrogen()->token(); }
1127 Token::Value op() const { return hydrogen()->token(); }
1223 Token::Value op() const { return hydrogen()->token(); }
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.c2135 N_word token; local
2144 token = (N_word) *string;
2146 if (isdigit((int)token) != 0)
2149 if (indx < bits) token = (N_word) '0';
2157 switch (token)
2171 switch (token)
2191 switch (token)
2207 switch (token)
2221 switch (token)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A DMakefile.inc5 nodist_libyasm_a_SOURCES += gas-token.c
9 gas-token.c: $(srcdir)/modules/parsers/gas/gas-token.re re2c$(EXEEXT)
10 $(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/gas/gas-token.re
12 BUILT_SOURCES += gas-token.c
14 CLEANFILES += gas-token.c
17 EXTRA_DIST += modules/parsers/gas/gas-token.re
H A Dgas-parse.c90 yasm_internal_error(N_("can only have one token of lookahead"));
142 expect_(yasm_parser_gas *parser_gas, int token) argument
147 if (curtok == token)
150 switch (token) {
163 strch[1] = token;
171 #define expect(token) expect_(parser_gas, token)
269 CPP_LINE_MARKER token isn't generated for any other preprocessor. With any
368 NASM_LINE_MARKER token isn't generated for any other preprocessor.
H A Dgas-parser.h108 int token; /* enum tokentype or any character */ member in struct:yasm_parser_gas
110 char tokch; /* first character of token */
112 /* one token of lookahead; used sparingly */
135 #define curtok (parser_gas->token)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
H A DMakefile.inc5 nodist_libyasm_a_SOURCES += nasm-token.c
9 nasm-token.c: $(srcdir)/modules/parsers/nasm/nasm-token.re re2c$(EXEEXT)
10 $(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/nasm/nasm-token.re
12 BUILT_SOURCES += nasm-token.c
14 CLEANFILES += nasm-token.c
16 EXTRA_DIST += modules/parsers/nasm/nasm-token.re
H A Dnasm-parse.c94 yasm_internal_error(N_("only can have one token of lookahead"));
155 describe_token(int token) argument
160 switch (token) {
194 strch[1] = token;
203 expect_(yasm_parser_nasm *parser_nasm, int token) argument
205 if (curtok == token)
208 yasm_error_set(YASM_ERROR_PARSE, "expected %s", describe_token(token));
212 #define expect(token) expect_(parser_nasm, token)
280 * token
[all...]
H A Dnasm-parser-struct.h65 int token; /* enum tokentype or any character */ member in struct:yasm_parser_nasm
67 char tokch; /* first character of token */
69 /* one token of lookahead; used sparingly */
H A Dnasm-parser.h75 NONE /* special token for lookahead */
94 #define curtok (parser_nasm->token)
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dgenpyx.py36 def put( self, token="" ):
37 assert type(token) is str
38 self.tokens.append( token )
39 def startln( self, token="" ):
40 assert type(token) is str
41 self.tokens.append( ' '*self._indent + token )
45 def endln( self, token="" ):
46 assert type(token) is str
47 self.tokens.append( token + '\n')
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dparser.c31 Scanner_fatal(in, "more than one token of lookahead?");
78 re = RegExp_new_RuleOp(re, look, yylval.token, accept++);
207 char * token; local
217 token = strtok( fnamebuf, "\\" );
219 fprintf(o, "%s", token);
220 token = strtok( NULL, "\\" );
221 if( token == NULL ) break;
H A Dparser.h26 Token *token; member in union:__anon16383
/external/chromium_org/tools/grit/grit/
H A Dpseudo_rtl.py74 for token in TOKENS:
75 m = token.search(text)
/external/chromium_org/third_party/webrtc/base/
H A Dschanneladapter.cc583 DWORD token = SCHANNEL_SHUTDOWN; local
586 sb_in[0].cbBuffer = sizeof(token);
587 sb_in[0].pvBuffer = &token;
H A Dwin32.cc436 HANDLE process = ::GetCurrentProcess(), token; local
437 if (OpenProcessToken(process, TOKEN_QUERY | TOKEN_QUERY_SOURCE, &token)) {
439 if (!GetTokenInformation(token, TokenIntegrityLevel, NULL, 0, &size) &&
445 if (GetTokenInformation(token, TokenIntegrityLevel, til, size, &size)) {
452 CloseHandle(token);

Completed in 360 milliseconds

<<11121314151617181920>>