Searched defs:TokenType (Results 1 - 11 of 11) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dtokens.py23 class TokenType(object): class in inherits:object
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Drequireprovidesorter_test.py28 TokenType = javascripttokens.JavaScriptTokenType variable
H A Dclosurizednamespacesinfo.py31 TokenType = javascripttokens.JavaScriptTokenType variable
138 namespace = tokenutil.Search(token, TokenType.STRING_TEXT).string
167 namespace = tokenutil.Search(token, TokenType.STRING_TEXT).string
296 if token.type == TokenType.IDENTIFIER:
309 namespace = tokenutil.Search(token, TokenType.STRING_TEXT).string
324 namespace = tokenutil.Search(token, TokenType.STRING_TEXT).string
348 elif token.type == TokenType.SIMPLE_LVALUE:
356 elif token.type == TokenType.DOC_FLAG:
361 doc_start = tokenutil.Search(token, TokenType.DOC_START_BRACE)
362 interface = tokenutil.Search(doc_start, TokenType
[all...]
H A Dclosurizednamespacesinfo_test.py29 TokenType = javascripttokens.JavaScriptTokenType variable
134 token = tokenutil.Search(token.next, TokenType.IDENTIFIER)
H A Decmametadatapass.py25 TokenType = javascripttokens.JavaScriptTokenType variable
279 if token_type == TokenType.START_PAREN:
287 elif token_type == TokenType.END_PAREN:
295 next_code = tokenutil.SearchExcept(token, TokenType.NON_CODE_TYPES)
296 if next_code.type != TokenType.START_BLOCK:
301 pre_keyword_token.type == TokenType.END_BLOCK):
315 elif (token_type == TokenType.KEYWORD and
317 next_code = tokenutil.SearchExcept(token, TokenType.NON_CODE_TYPES)
318 if (next_code.type != TokenType.START_BLOCK and
319 (next_code.type != TokenType
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.cpp38 enum TokenType { enum in class:WebCore::IDBKeyPathLexer
56 TokenType currentTokenType() const { return m_currentTokenType; }
58 TokenType nextTokenType()
67 TokenType lex(IDBKeyPathElement&);
68 TokenType lexIdentifier(IDBKeyPathElement&);
69 TokenType lexNumber(IDBKeyPathElement&);
74 TokenType m_currentTokenType;
77 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(IDBKeyPathElement& element)
123 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexIdentifier(IDBKeyPathElement& element)
139 IDBKeyPathLexer::TokenType IDBKeyPathLexe
[all...]
/external/openfst/src/include/fst/extensions/far/
H A Dcompile-strings.h47 typedef typename StringCompiler<A>::TokenType TokenType; typedef in class:fst::StringReader
54 TokenType token_type,
116 TokenType token_type_;
152 typename StringCompiler<Arc>::TokenType token_type;
/external/openfst/src/include/fst/
H A Dstring.h41 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 }; enum in class:fst::StringCompiler
43 StringCompiler(TokenType type, const SymbolTable *syms = 0,
126 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
143 enum TokenType { SYMBOL = 1, BYTE = 2, UTF8 = 3 }; enum in class:fst::StringPrinter
145 StringPrinter(TokenType token_type,
238 TokenType token_type_; // Token type: symbol, byte or utf8 encoded
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.h77 // similar to those that make up the C language; see the TokenType enum for
89 enum TokenType { enum in class:google::protobuf::io::Tokenizer
116 TokenType type;
249 TokenType ConsumeNumber(bool started_with_zero, bool started_with_dot);
/external/webkit/Source/JavaScriptCore/runtime/
H A DLiteralParser.h58 enum TokenType { TokLBracket, TokRBracket, TokLBrace, TokRBrace, enum in class:JSC::LiteralParser
66 TokenType type;
80 TokenType next()
91 TokenType lex(LiteralParserToken&);
92 template <ParserMode mode> TokenType lexString(LiteralParserToken&);
93 TokenType lexNumber(LiteralParserToken&);
/external/icu4c/test/intltest/
H A Dwbnf.cpp784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT}; enum
794 void terminated(TokenType t){
814 TokenType tokenType;
816 TokenType getNextToken(){
946 TokenType & token;
949 UBool match(TokenType expected){

Completed in 186 milliseconds