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

12345

/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/chromium_org/third_party/sqlite/src/src/
H A Dtokenize.c109 ** Store the token type in *tokenType before returning.
111 int sqlite3GetToken(const unsigned char *z, int *tokenType){ argument
121 *tokenType = TK_SPACE;
128 *tokenType = TK_SPACE; /* IMP: R-22934-25134 */
131 *tokenType = TK_MINUS;
135 *tokenType = TK_LP;
139 *tokenType = TK_RP;
143 *tokenType = TK_SEMI;
147 *tokenType = TK_PLUS;
151 *tokenType
392 int tokenType; /* type of the next token */ local
[all...]
H A Dvdbetrace.c28 int tokenType; local
34 n = sqlite3GetToken((u8*)zSql, &tokenType);
35 assert( n>0 && tokenType!=TK_ILLEGAL );
36 if( tokenType==TK_VARIABLE ){
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeAdaptor.cs69 public override IToken CreateToken( int tokenType, string text ) argument
71 return new CommonToken( tokenType, text );
H A DITreeAdaptor.cs75 object Create(int tokenType, IToken fromToken); argument
78 * Same as create(tokenType,fromToken) except set the text too.
87 object Create(int tokenType, IToken fromToken, string text); argument
111 object Create(int tokenType, string text); argument
H A DBaseTreeAdaptor.cs242 public virtual object Create( int tokenType, IToken fromToken ) argument
245 fromToken.Type = tokenType;
250 public virtual object Create( int tokenType, IToken fromToken, string text ) argument
253 return Create( tokenType, text );
256 fromToken.Type = tokenType;
273 public virtual object Create( int tokenType, string text ) argument
275 IToken fromToken = CreateToken( tokenType, text );
371 public abstract IToken CreateToken( int tokenType, string text ); argument
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBKeyPath.cpp144 IDBKeyPathLexer::TokenType tokenType = lexer.nextTokenType();
146 if (tokenType == IDBKeyPathLexer::TokenIdentifier)
148 else if (tokenType == IDBKeyPathLexer::TokenEnd)
158 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType();
159 ASSERT(tokenType == IDBKeyPathLexer::TokenIdentifier);
164 tokenType = lexer.nextTokenType();
165 if (tokenType == IDBKeyPathLexer::TokenDot)
167 else if (tokenType == IDBKeyPathLexer::TokenEnd)
176 IDBKeyPathLexer::TokenType tokenType = lexer.currentTokenType();
177 ASSERT(tokenType
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
H A DScriptFormatterWorker.js128 * @param {?string} tokenType
131 function isJavaScriptIdentifier(tokenType)
133 if (!tokenType)
135 return tokenType.startsWith("variable") || tokenType.startsWith("property") || tokenType === "def";
140 * @param {?string} tokenType
144 function processToken(tokenValue, tokenType, column, newColumn)
146 if (tokenType === "property" && previousTokenType === "property" && (previousToken === "get" || previousToken === "set")) {
150 } else if (isJavaScriptIdentifier(tokenType)) {
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DTreeParser.js64 tokenType = this.input.getTreeAdaptor().getType(look);
65 while ( tokenType!==org.antlr.runtime.Token.EOF &&
66 !(tokenType===TP.UP && level===0) )
70 tokenType = this.input.getTreeAdaptor().getType(look);
71 if ( tokenType === TP.DOWN ) {
74 else if ( tokenType === TP.UP ) {
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
H A Djunit.stg47 testTreeRuleMethod(methodName,testTreeRuleName,testRuleName,test,tokenType,expecting) ::= <<
51 Object actual = examineExecResult(<tokenType>, retval);
67 testRuleMethod(isLexicalRule,methodName,testRuleName,test,tokenType,expecting) ::= <<
71 Object actual = examineExecResult(<tokenType>, retval);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DBaseTreeAdaptor.cs198 public virtual object Create(int tokenType, IToken fromToken) { argument
200 //((ClassicToken)fromToken).setType(tokenType);
201 fromToken.Type = tokenType;
206 public virtual object Create(int tokenType, IToken fromToken, string text) { argument
208 return Create(tokenType, text);
211 fromToken.Type = tokenType;
217 public virtual object Create(int tokenType, string text) { argument
218 IToken fromToken = CreateToken(tokenType, text);
283 public abstract IToken CreateToken(int tokenType, string text); argument
H A DITreeAdaptor.cs206 object Create(int tokenType, IToken fromToken); argument
209 * Same as create(tokenType,fromToken) except set the text too.
218 object Create(int tokenType, IToken fromToken, string text); argument
230 object Create(int tokenType, string text); argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDOMSyntaxHighlighter.js68 * @param {?string} tokenType
73 function processToken(token, tokenType, column, newColumn)
75 if (!tokenType)
82 node.appendChild(this.createSpan(token, tokenType));
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeParser.as94 var tokenType:int = input.treeAdaptor.getType(look);
95 while ( tokenType!=TokenConstants.EOF && !(tokenType==UP && level==0) ) {
98 tokenType = input.treeAdaptor.getType(look);
99 if ( tokenType == DOWN ) {
102 else if ( tokenType == UP ) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs194 T Create(int tokenType, IToken fromToken); argument
197 * Same as create(tokenType,fromToken) except set the text too.
206 T Create(int tokenType, IToken fromToken, string text); argument
218 T Create(int tokenType, string text); argument
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeAdaptor.java169 public Object create(int tokenType, Token fromToken); argument
171 /** Same as create(tokenType,fromToken) except set the text too.
177 public Object create(int tokenType, Token fromToken, String text); argument
185 public Object create(int tokenType, String text); argument
H A DBaseTreeAdaptor.java182 public Object create(int tokenType, Token fromToken) { argument
184 //((ClassicToken)fromToken).setType(tokenType);
185 fromToken.setType(tokenType);
190 public Object create(int tokenType, Token fromToken, String text) { argument
191 if (fromToken == null) return create(tokenType, text);
193 fromToken.setType(tokenType);
199 public Object create(int tokenType, String text) { argument
200 Token fromToken = createToken(tokenType, text);
261 public abstract Token createToken(int tokenType, String text); argument
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCommonTreeAdaptor.h42 - (ANTLRCommonTree *)createTree:(NSInteger)tokenType Text:(NSString *)text;
43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
50 - (void) setType:(id<ANTLRTree>)t Type:(NSInteger)tokenType;
H A DANTLRCommonTree.h49 + (ANTLRCommonTree *) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
52 + (id<ANTLRTree>) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
53 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType;
54 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType Text:(NSString *)tokenText;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCommonTreeAdaptor.h42 - (ANTLRCommonTree *)createTree:(NSInteger)tokenType Text:(NSString *)text;
43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
50 - (void) setType:(id<ANTLRTree>)t Type:(NSInteger)tokenType;
H A DANTLRCommonTree.h49 + (ANTLRCommonTree *) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
52 + (id<ANTLRTree>) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
53 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType;
54 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType Text:(NSString *)tokenText;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCommonTreeAdaptor.h42 - (ANTLRCommonTree *)createTree:(NSInteger)tokenType Text:(NSString *)text;
43 - (id<ANTLRToken>)createToken:(NSInteger)tokenType Text:(NSString *)text;
50 - (void) setType:(id<ANTLRTree>)t Type:(NSInteger)tokenType;
H A DANTLRCommonTree.h49 + (ANTLRCommonTree *) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
52 + (id<ANTLRTree>) newANTLRCommonTreeWithTokenType:(NSInteger)tokenType;
53 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType;
54 + (id<ANTLRTree>) newANTLRCommonTreeWithToken:(id<ANTLRToken>)fromToken TokenType:(NSInteger)tokenType Text:(NSString *)tokenText;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeAdaptor.h107 - (id) createTree:(NSInteger)tokenType FromToken:(id<ANTLRToken>)fromToken;
108 - (id) createTree:(NSInteger)tokenType FromToken:(id<ANTLRToken>)fromToken Text:(NSString *)text;
109 - (id) createTree:(NSInteger)tokenType Text:(NSString *)text;
117 - (void) setType:(id)aNode Type:(NSInteger)tokenType;
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetreeadaptor.c58 static pANTLR3_BASE_TREE createTypeToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken);
59 static pANTLR3_BASE_TREE dbgCreateTypeToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken);
60 static pANTLR3_BASE_TREE createTypeTokenText (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken, pANTLR3_UINT8 text);
61 static pANTLR3_BASE_TREE dbgCreateTypeTokenText (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken, pANTLR3_UINT8 text);
62 static pANTLR3_BASE_TREE createTypeText (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text);
63 static pANTLR3_BASE_TREE dbgCreateTypeText (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text);
760 createTypeToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken) argument
768 fromToken->setType(fromToken, tokenType);
775 dbgCreateTypeToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken) argument
779 t = createTypeToken(adaptor, tokenType, fromToke
787 createTypeTokenText(pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken, pANTLR3_UINT8 text) argument
806 dbgCreateTypeTokenText(pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken, pANTLR3_UINT8 text) argument
818 createTypeText(pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text) argument
831 dbgCreateTypeText(pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_UINT8 text) argument
[all...]

Completed in 601 milliseconds

12345