Searched refs:tokenType (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/MCDisassembler/
H A DEDToken.h32 enum tokenType { enum in struct:llvm::EDToken
48 enum tokenType Type;
70 enum tokenType type,
93 enum tokenType type() const;
H A DEDToken.cpp24 enum tokenType type,
52 enum EDToken::tokenType EDToken::type() const {
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBKeyPath.cpp145 IDBKeyPathLexer::TokenType tokenType = lexer.nextTokenType();
147 if (tokenType == IDBKeyPathLexer::TokenIdentifier)
149 else if (tokenType == IDBKeyPathLexer::TokenEnd)
159 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType();
160 ASSERT(tokenType == IDBKeyPathLexer::TokenIdentifier);
165 tokenType = lexer.nextTokenType();
166 if (tokenType == IDBKeyPathLexer::TokenDot)
168 else if (tokenType == IDBKeyPathLexer::TokenEnd)
177 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType();
178 ASSERT(tokenType
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDOMSyntaxHighlighter.js64 var tokenType = this._tokenizer.tokenType;
65 if (tokenType) {
71 node.appendChild(this.createSpan(token, tokenType));
H A DSourceHTMLTokenizer.js134 this.tokenType = null;
137 this.tokenType = this._attrValueTokenType();
190 this.tokenType = this._internalJavaScriptTokenizer.tokenType;
202 this.tokenType = this._internalCSSTokenizer.tokenType;
253 { this.tokenType = "html-comment"; return cursor; }
261 { this.tokenType = null; return cursor; }
286 { this.tokenType = "html-comment"; return cursor; }
309 { this.tokenType
[all...]
H A DSourceHTMLTokenizer.re2js133 this.tokenType = null;
136 this.tokenType = this._attrValueTokenType();
189 this.tokenType = this._internalJavaScriptTokenizer.tokenType;
201 this.tokenType = this._internalCSSTokenizer.tokenType;
254 <INITIAL> Comment { this.tokenType = "html-comment"; return cursor; }
255 <INITIAL> CommentStart => COMMENT { this.tokenType = "html-comment"; return cursor; }
256 <COMMENT> CommentContent => COMMENT { this.tokenType = "html-comment"; return cursor; }
257 <COMMENT> CommentEnd => INITIAL { this.tokenType
[all...]
H A DSourceCSSTokenizer.re2js153 this.tokenType = "css-string";
155 this.tokenType = null;
215 <INITIAL> Comment { this.tokenType = "css-comment"; return cursor; }
216 <INITIAL> CommentStart => COMMENT { this.tokenType = "css-comment"; return cursor; }
217 <COMMENT> CommentContent => COMMENT { this.tokenType = "css-comment"; return cursor; }
218 <COMMENT> CommentEnd => INITIAL { this.tokenType = "css-comment"; return cursor; }
230 this.tokenType = "block-start";
241 this.tokenType = "block-end";
251 this.tokenType = null;
259 this.tokenType
[all...]
H A DTextEditorHighlighter.js203 var tokenType = this._tokenizer.tokenType;
204 if (tokenType && lastHighlightedColumn < this._highlightLineLimit) {
205 if (tokenType === "brace-start" || tokenType === "brace-end" || tokenType === "block-start" || tokenType === "block-end") {
209 token: tokenType
215 token: tokenType
H A DSourceCSSTokenizer.js154 this.tokenType = "css-string";
156 this.tokenType = null;
208 { this.tokenType = "css-comment"; return cursor; }
215 { this.tokenType = null; return cursor; }
224 { this.tokenType = "css-comment"; return cursor; }
268 { this.tokenType = null; return cursor; }
402 { this.tokenType = null; return cursor; }
410 this.tokenType = null;
413 this.tokenType = "css-at-rule";
417 this.tokenType
[all...]
H A DSourceJavaScriptTokenizer.js138 { this.tokenType = "javascript-comment"; return cursor; }
145 { this.tokenType = null; return cursor; }
154 { this.tokenType = "javascript-comment"; return cursor; }
251 { this.tokenType = null; return cursor; }
257 {this.tokenType = "whitespace"; return cursor; }
266 this.tokenType = "block-start";
268 this.tokenType = "block-end";
270 this.tokenType = "brace-start";
271 else this.tokenType = null;
288 this.tokenType
[all...]
H A DScriptFormatterWorker.js89 var tokenType = scriptTokenizer.tokenType;
91 if (tokenType === "javascript-ident") {
99 } else if (tokenType === "javascript-keyword") {
127 previousTokenType = tokenType;
H A DSourceTokenizer.js38 this.tokenType = null;
H A DDefaultTextEditor.js1523 if (!tokenizer.tokenType)
1528 type: tokenizer.tokenType
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/src/
H A DMismatchedTokenException.cpp175 ANTLR_USE_NAMESPACE(std)string MismatchedTokenException::tokenName(int tokenType) const
177 if (tokenType == Token::INVALID_TYPE)
179 else if (tokenType < 0 || tokenType >= numTokens)
180 return ANTLR_USE_NAMESPACE(std)string("<") + tokenType + ">";
182 return tokenNames[tokenType];
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
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);
H A Dplurrule.cpp349 tokenType type;
350 tokenType prevType=none;
1148 RuleParser::checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status)
1219 tokenType& type,
1224 tokenType prevType=none;
1313 RuleParser::inRange(UChar ch, tokenType& type) {
1347 RuleParser::getKeyType(const UnicodeString& token, tokenType& keyType, UErrorCode &status)
/macosx-10.9.5/ICU-511.35/icuSources/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...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/antlr2/antlr/
H A DMismatchedTokenException.hpp136 /// Return token name for tokenType
137 ANTLR_USE_NAMESPACE(std)string tokenName(int tokenType) const;
H A DParser.hpp144 virtual void consumeUntil(int tokenType) argument
146 while (LA(1) != Token::EOF_TYPE && LA(1) != tokenType)
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dmscdefines.h140 MSCULong32 tokenType; /* Type - RFU */ member in struct:__anon5170
H A Dmusclecard.c201 currentToken->tokenType = 0; /* Vinnie 1693 */
205 currentToken->tokenType |= MSC_TOKEN_TYPE_REMOVED;
210 currentToken->tokenType |= MSC_TOKEN_TYPE_KNOWN;
215 currentToken->tokenType |= MSC_TOKEN_TYPE_UNKNOWN;
737 tokenArray[i].tokenType = MSC_TOKEN_TYPE_REMOVED;
753 tokenArray[i].tokenType = MSC_TOKEN_TYPE_KNOWN;
758 tokenArray[i].tokenType = MSC_TOKEN_TYPE_UNKNOWN;
933 pConnection->tokenInfo.tokenType |=
941 pConnection->tokenInfo.tokenType =
969 pConnection->tokenInfo.tokenType |
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DLiteralParser.cpp75 TokenType tokenType = m_lexer.next();
76 if (entry.m_type == JSONPPathEntryTypeDeclare && tokenType != TokAssign)
78 while (tokenType != TokAssign) {
79 switch (tokenType) {
111 tokenType = m_lexer.next();
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DParser.cpp56 #define consumeOrFail(tokenType) do { if (!consume(tokenType)) failWithToken(tokenType); } while (0)
57 #define consumeOrFailWithFlags(tokenType, flags) do { if (!consume(tokenType, flags)) failWithToken(tokenType); } while (0)
58 #define matchOrFail(tokenType) do { if (!match(tokenType)) failWithToken(tokenType); } while (0)
/macosx-10.9.5/WebCore-7537.78.1/xml/parser/
H A DXMLDocumentParserQt.cpp375 switch (m_stream.tokenType()) {
/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c62879 int tokenType; local
109354 sqlite3GetToken(const unsigned char *z, int *tokenType) argument
109634 int tokenType; /* type of the next token */ local
[all...]

Completed in 313 milliseconds

12