Searched refs:tokenType (Results 1 - 25 of 103) sorted by last modified time

12345

/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.cpp176 IDBKeyPathLexer::TokenType tokenType = lexer.nextTokenType();
178 if (tokenType == IDBKeyPathLexer::TokenIdentifier)
180 else if (tokenType == IDBKeyPathLexer::TokenLeftBracket)
182 else if (tokenType == IDBKeyPathLexer::TokenEnd)
192 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType();
193 ASSERT(tokenType == IDBKeyPathLexer::TokenIdentifier);
199 tokenType = lexer.nextTokenType();
200 if (tokenType == IDBKeyPathLexer::TokenDot)
202 else if (tokenType == IDBKeyPathLexer::TokenLeftBracket)
204 else if (tokenType
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DJSParser.cpp51 #define consumeOrFail(tokenType) do { if (!consume(tokenType)) fail(); } while (0)
52 #define matchOrFail(tokenType) do { if (!match(tokenType)) fail(); } while (0)
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserQt.cpp374 switch (m_stream.tokenType()) {
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMSyntaxHighlighter.js58 var tokenType = this._tokenizer.tokenType;
59 if (tokenType) {
65 node.appendChild(this.createSpan(token, tokenType));
H A DSourceCSSTokenizer.js128 this.tokenType = "css-string";
130 this.tokenType = null;
176 { this.tokenType = "css-comment"; return cursor; }
183 { this.tokenType = null; return cursor; }
192 { this.tokenType = "css-comment"; return cursor; }
236 { this.tokenType = null; return cursor; }
368 { this.tokenType = null; return cursor; }
378 this.tokenType = "css-at-rule";
381 this.tokenType = "css-at-rule";
383 this.tokenType
[all...]
H A DSourceCSSTokenizer.re2js127 this.tokenType = "css-string";
129 this.tokenType = null;
181 <INITIAL> Comment { this.tokenType = "css-comment"; return cursor; }
182 <INITIAL> CommentStart => COMMENT { this.tokenType = "css-comment"; return cursor; }
183 <COMMENT> CommentContent => COMMENT { this.tokenType = "css-comment"; return cursor; }
184 <COMMENT> CommentEnd => INITIAL { this.tokenType = "css-comment"; return cursor; }
196 this.tokenType = null;
206 this.tokenType = null;
213 this.tokenType = null;
221 this.tokenType
[all...]
H A DSourceHTMLTokenizer.js123 this.tokenType = null;
126 this.tokenType = this._attrValueTokenType();
151 this.tokenType = this._internalJavaScriptTokenizer.tokenType;
163 this.tokenType = this._internalCSSTokenizer.tokenType;
213 { this.tokenType = "html-comment"; return cursor; }
221 { this.tokenType = null; return cursor; }
246 { this.tokenType = "html-comment"; return cursor; }
269 { this.tokenType
[all...]
H A DSourceHTMLTokenizer.re2js122 this.tokenType = null;
125 this.tokenType = this._attrValueTokenType();
150 this.tokenType = this._internalJavaScriptTokenizer.tokenType;
162 this.tokenType = this._internalCSSTokenizer.tokenType;
214 <INITIAL> Comment { this.tokenType = "html-comment"; return cursor; }
215 <INITIAL> CommentStart => COMMENT { this.tokenType = "html-comment"; return cursor; }
216 <COMMENT> CommentContent => COMMENT { this.tokenType = "html-comment"; return cursor; }
217 <COMMENT> CommentEnd => INITIAL { this.tokenType
[all...]
H A DSourceJavaScriptTokenizer.js121 { this.tokenType = "javascript-comment"; return cursor; }
128 { this.tokenType = null; return cursor; }
137 { this.tokenType = "javascript-comment"; return cursor; }
230 { this.tokenType = null; return cursor; }
236 { this.tokenType = null; return cursor; }
251 this.tokenType = "javascript-keyword";
253 this.tokenType = "javascript-ident";
276 { this.tokenType = null; return cursor; }
307 { this.tokenType = null; return cursor; }
327 { this.tokenType
[all...]
H A DTextEditorHighlighter.js166 var tokenType = this._tokenizer.tokenType;
167 if (tokenType)
168 state[lastHighlightedColumn] = { length: newColumn - lastHighlightedColumn, tokenType: tokenType };
H A DTextViewer.js1185 if (!attribute || !attribute.tokenType) {
1195 this._appendSpan(lineRow, line.substring(j, j + attribute.length), attribute.tokenType);
/external/svox/pico/lib/
H A Dpicotok.c235 pico_tokenType tokenType; member in struct:tok_subobj
1061 tok->tokenType = type;
1270 if ((tok->tokenType != PICODATA_ITEMINFO1_TOKTYPE_SPACE) && (tok->tokenType != PICODATA_ITEMINFO1_TOKTYPE_UNDEFINED)) {
1362 if ((type != tok->tokenType) || (type == PICODATA_ITEMINFO1_TOKTYPE_CHAR) || (subtype != tok->tokenSubType)) {
1392 } else if ((tok->tokenPos > 0) && ((tok->ignLevel <= 0) || (tok->tokenType == PICODATA_ITEMINFO1_TOKTYPE_SPACE))) {
1393 tok_putItem(this, tok, PICODATA_ITEM_TOKEN, tok->tokenType, (picoos_uint8)tok->tokenSubType, 0, tok->tokenStr);
1396 tok->tokenType = PICODATA_ITEMINFO1_TOKTYPE_UNDEFINED;
1432 tok->tokenType = PICODATA_ITEMINFO1_TOKTYPE_UNDEFINED;
/external/sqlite/dist/orig/
H A Dsqlite3.c64092 int tokenType; local
111646 sqlite3GetToken(const unsigned char *z, int *tokenType) argument
111926 int tokenType; /* type of the next token */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c64105 int tokenType; local
111659 sqlite3GetToken(const unsigned char *z, int *tokenType) argument
111939 int tokenType; /* type of the next token */ local
[all...]
/external/smali/smali/src/test/java/
H A DLexerTest.java209 private static String getTokenName(int tokenType) { argument
210 return smaliParser.tokenNames[tokenType];
/external/nist-sip/java/gov/nist/core/
H A DToken.java39 protected int tokenType; field in class:Token
44 return this.tokenType;
47 return "tokenValue = " + tokenValue + "/tokenType = " + tokenType;
/external/llvm/lib/MC/MCDisassembler/
H A DEDToken.cpp24 enum tokenType type,
52 enum EDToken::tokenType EDToken::type() const {
H A DEDToken.h32 enum tokenType { enum in struct:llvm::EDToken
48 enum tokenType Type;
70 enum tokenType type,
93 enum tokenType type() const;
/external/libvpx/examples/includes/HTML-Toc-0.91/
H A DTocGenerator.pm588 my ($toc, $group, $tokens, $tokenType, $i);
670 # Link to 'id' and tokenType isn't 'start'?
672 # Yes, link to 'id' and tokenType isn't 'start';
H A DTocUpdator.pm183 my ($toc, $tokenType, $tokenPreposition, $token);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java76 String tokenType = token.getClass().getSimpleName().substring(1);
77 return tokenType + " [line:" + token.getLine() + ",pos:" + token.getPos() + "] \""
/external/icu4c/test/intltest/
H A Dwbnf.cpp796 tokenType = t;
806 tokenType = ERROR;
814 TokenType tokenType; member in class:Scanner
828 tokenType = ERROR;
830 case '?' : tokenType = QUESTION; break;
831 case '*' : tokenType = STAR; break;
832 case '+' : tokenType = PLUS; break;
833 case '{' : tokenType = LBRACE; break;
834 case '}' : tokenType = RBRACE; break;
835 case '(' : tokenType
[all...]
/external/icu4c/i18n/
H A Dplurrule.cpp345 tokenType type;
346 tokenType prevType=none;
1138 RuleParser::checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status)
1209 tokenType& type,
1214 tokenType prevType=none;
1304 RuleParser::inRange(UChar ch, tokenType& type) {
1338 RuleParser::getKeyType(const UnicodeString& token, tokenType& keyType, UErrorCode &status)
H A Dplurrule_impl.h99 typedef enum tokenType { enum
126 }tokenType; typedef in typeref:enum:tokenType
133 tokenType& type, UErrorCode &status);
134 void checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status);
136 void getKeyType(const UnicodeString& token, tokenType& type, UErrorCode &status);
137 UBool inRange(UChar ch, tokenType& type);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 776 milliseconds

12345