Searched defs:TokenInfo (Results 1 - 7 of 7) sorted by relevance

/external/clang/include/clang/Lex/
H A DTokenConcatenation.h54 /// TokenInfo - This array contains information for each token on what
57 char TokenInfo[tok::NUM_TOKENS]; member in class:clang::TokenConcatenation
/external/chromium_org/components/signin/core/browser/
H A Dabout_signin_internals.h115 struct TokenInfo { struct in class:AboutSigninInternals
116 TokenInfo(const std::string& consumer_id,
118 ~TokenInfo();
121 static bool LessThan(const TokenInfo* a, const TokenInfo* b);
136 typedef std::map<std::string, std::vector<TokenInfo*> > TokenInfoMap;
149 TokenInfo* FindToken(const std::string& account_id,
H A Dabout_signin_internals.cc238 TokenInfo* token = signin_status_.FindToken(account_id, consumer_id, scopes);
240 *token = TokenInfo(consumer_id, scopes);
242 token = new TokenInfo(consumer_id, scopes);
255 TokenInfo* token = signin_status_.FindToken(account_id, consumer_id, scopes);
273 TokenInfo* token = signin_status_.token_info_map[account_id][i];
348 AboutSigninInternals::TokenInfo::TokenInfo( function in class:AboutSigninInternals::TokenInfo
357 AboutSigninInternals::TokenInfo::~TokenInfo() {}
359 bool AboutSigninInternals::TokenInfo
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dindentation.py59 class TokenInfo(object): class in inherits:object
67 overridden_by: TokenInfo for a token that overrides the indentation that
82 """Initializes a TokenInfo object.
187 info = TokenInfo(token)
233 self._Add(TokenInfo(token=token,
237 self._Add(TokenInfo(token=token, is_block=True))
240 self._Add(TokenInfo(token=token, is_block=False))
243 self._Add(TokenInfo(token))
247 self._Add(TokenInfo(token=token))
262 self._Add(TokenInfo(toke
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dindentation.py59 class TokenInfo(object): class in inherits:object
67 overridden_by: TokenInfo for a token that overrides the indentation that
82 """Initializes a TokenInfo object.
187 info = TokenInfo(token)
233 self._Add(TokenInfo(
238 self._Add(TokenInfo(token=token, is_block=True))
241 self._Add(TokenInfo(token=token, is_block=False))
244 self._Add(TokenInfo(token))
248 self._Add(TokenInfo(token=token))
263 self._Add(TokenInfo(toke
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_test_expectations_parser.cc70 struct TokenInfo { struct in namespace:gpu::__anon8461
75 const TokenInfo kTokenData[] = {
/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp28 struct Parser::TokenInfo { struct in class:clang::ast_matchers::dynamic::Parser
46 TokenInfo() : Text(), Kind(TK_Eof), Range(), Value() {} function in struct:clang::ast_matchers::dynamic::Parser::TokenInfo
54 const char* const Parser::TokenInfo::ID_Bind = "bind";
73 const TokenInfo &peekNextToken() const { return NextToken; }
76 TokenInfo consumeNextToken() {
77 TokenInfo ThisToken = NextToken;
82 TokenInfo::TokenKind nextTokenKind() const { return NextToken.Kind; }
85 TokenInfo getNextToken() {
87 TokenInfo Result;
91 Result.Kind = TokenInfo
[all...]

Completed in 247 milliseconds