Searched refs:token (Results 251 - 275 of 1600) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/mojo/services/gles2/
H A Dcommand_buffer_type_conversions.cc18 result->token = input.token;
32 state.token = input->token;
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTToken.h59 VTTToken token(Type::StartTag, tagName);
60 token.m_classes = classes;
61 token.m_annotation = annotation;
62 return token;
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
H A DExpressionParser.h24 bool parse(Token *token, int *result);
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A Dchar_test.cpp88 pp::Token token; local
89 mPreprocessor.lex(&token);
90 EXPECT_EQ(expectedType, token.type);
91 EXPECT_EQ(expectedValue, token.text);
H A Doperator_test.cpp27 pp::Token token; local
28 mPreprocessor.lex(&token);
29 EXPECT_EQ(param.op, token.type);
30 EXPECT_EQ(param.str, token.text);
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dsexps.py53 token = match.group(0)
54 if token == '(':
56 elif token == ')':
62 stack[-1].append(token)
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dparser.h26 Token *token; member in union:__anon16383
/external/iproute2/tc/
H A Demp_ematch.y10 %token-table
27 %token <i> ERROR
28 %token <b> ATTRIBUTE
29 %token <i> AND OR NOT
/external/llvm/test/MC/ARM/
H A Ddirective-object_arch-diagnostics.s14 @ CHECK: error: unexpected token
20 @ CHECK: error: unexpected token
/external/lzma/CPP/Windows/
H A DMemoryLock.cpp34 HANDLE token;
41 (::GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &token))
61 (token, FALSE, &tp, 0, NULL, NULL))
64 ::CloseHandle(token);
/external/mesa3d/src/glsl/tests/
H A Dsexps.py53 token = match.group(0)
54 if token == '(':
56 elif token == ')':
62 stack[-1].append(token)
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPMediaAuthorizationHeader.java60 * Set the media authorization token.
61 * @param token - media authorization token to set
62 * @throws InvalidArgumentException - if token is null or empty
64 public void setMediaAuthorizationToken(String token) throws InvalidArgumentException; argument
67 * Get the media authorization token.
68 * @return token
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DAllowEventsParser.java79 Token token = lexer.getNextToken();
80 allowEvents.setEventType(token.getTokenValue());
90 token = lexer.getNextToken();
91 allowEvents.setEventType(token.getTokenValue());
H A DAllowParser.java78 Token token = lexer.getNextToken();
79 allow.setMethod(token.getTokenValue());
89 token = lexer.getNextToken();
90 allow.setMethod(token.getTokenValue());
H A DContentEncodingParser.java83 Token token = lexer.getNextToken();
84 cl.setEncoding(token.getTokenValue());
95 token = lexer.getNextToken();
96 cl.setEncoding(token.getTokenValue());
H A DContentLanguageParser.java78 Token token = lexer.getNextToken();
79 ContentLanguage cl = new ContentLanguage( token.getTokenValue() );
88 token = lexer.getNextToken();
89 cl = new ContentLanguage( token.getTokenValue() );
H A DProxyRequireParser.java78 Token token = lexer.getNextToken();
79 r.setOptionTag(token.getTokenValue());
92 token = lexer.getNextToken();
93 r.setOptionTag(token.getTokenValue());
H A DRequireParser.java81 Token token = lexer.getNextToken();
82 r.setOptionTag(token.getTokenValue());
95 token = lexer.getNextToken();
96 r.setOptionTag(token.getTokenValue());
H A DSupportedParser.java82 Token token = lexer.getNextToken();
83 supported.setOptionTag(token.getTokenValue());
96 token = lexer.getNextToken();
97 supported.setOptionTag(token.getTokenValue());
H A DUnsupportedParser.java80 Token token = lexer.getNextToken();
81 unsupported.setOptionTag(token.getTokenValue());
94 token = lexer.getNextToken();
95 unsupported.setOptionTag(token.getTokenValue());
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py61 The first token in the file
65 # The first token in the stream.
67 # The last token added to the token stream.
82 string: The string of input the token represents.
83 token_type: The type of token.
84 line: The text of the line this token is in.
85 line_number: The line number of the token.
86 values: A dict of named values within the token. For instance, a
140 # These will constitute a NORMAL token
[all...]
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dsyslog_parser.cc46 std::string time = tokenizer.token();
55 ParseProcess(tokenizer.token(), entry.get());
84 << "Error when parsing data. Expect: At least 1 token. Actual: 0";
87 entry->process = tokenizer.token();
90 std::string token = tokenizer.token(); local
92 if (base::StringToInt(token, &tmp)) {
93 entry->process_id = token;
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_auth_provider.cc30 virtual void InvalidateAccessToken(const std::string& token) OVERRIDE;
62 const std::string& token) {
68 token));
118 const std::string& token) {
121 FROM_HERE, base::Bind(request_token_callback_, error, token));
127 void ProfileSyncAuthProvider::InvalidateAccessToken(const std::string& token) { argument
129 token_service_->InvalidateToken(account_id_, oauth2_scope_, token);
61 InvalidateAccessToken( const std::string& token) argument
116 RespondToTokenRequest( const GoogleServiceAuthError& error, const std::string& token) argument
/external/chromium_org/net/websockets/
H A Dwebsocket_extension_parser.cc75 void WebSocketExtensionParser::ConsumeToken(base::StringPiece* token) { argument
87 *token = base::StringPiece(head, current_ - head);
90 void WebSocketExtensionParser::ConsumeQuotedToken(std::string* token) { argument
94 *token = "";
99 *token += next;
104 *token += current_[0];
113 has_error_ = has_error_ || token->empty();
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dtokenizer.py61 The first token in the file
65 # The first token in the stream.
67 # The last token added to the token stream.
82 string: The string of input the token represents.
83 token_type: The type of token.
84 line: The text of the line this token is in.
85 line_number: The line number of the token.
86 values: A dict of named values within the token. For instance, a
141 # These will constitute a NORMAL token
[all...]

Completed in 357 milliseconds

<<11121314151617181920>>