/external/nist-sip/java/gov/nist/core/ |
Token.java | 39 protected int tokenType; 44 return this.tokenType; 47 return "tokenValue = " + tokenValue + "/tokenType = " + tokenType;
|
/external/chromium_org/third_party/sqlite/src/src/ |
tokenize.c | 109 ** Store the token type in *tokenType before returning. 111 int sqlite3GetToken(const unsigned char *z, int *tokenType){ 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 = TK_STAR [all...] |
vdbetrace.c | 28 int tokenType; 34 n = sqlite3GetToken((u8*)zSql, &tokenType); 35 assert( n>0 && tokenType!=TK_ILLEGAL ); 36 if( tokenType==TK_VARIABLE ){
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CodeMirrorUtils.js | 54 * @param {string} tokenType 56 convertTokenType: function(tokenType) 58 if (tokenType.startsWith("js-variable") || tokenType.startsWith("js-property") || tokenType === "js-def") 60 if (tokenType === "js-string-2") 62 if (tokenType === "js-number" || tokenType === "js-comment" || tokenType === "js-string" || tokenType === "js-keyword" [all...] |
DOMSyntaxHighlighter.js | 59 * @param {string} tokenType 64 function processToken(token, tokenType, column, newColumn) 66 if (!tokenType) 73 node.appendChild(this.createSpan(token, tokenType));
|
ScriptFormatterWorker.js | 110 * @param {string} tokenType 114 function processToken(tokenValue, tokenType, column, newColumn) 116 tokenType = tokenType ? WebInspector.CodeMirrorUtils.convertTokenType(tokenType) : null; 117 if (tokenType === "javascript-ident") { 125 } else if (tokenType === "javascript-keyword") { 153 previousTokenType = tokenType; 240 function processToken(tokenValue, tokenType, tokenStart, tokenEnd) { 241 if (tokenType !== "xml-tag" [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ |
AstUtil.java | 7 static boolean hasParentOfType(AstNode node, int tokenType) { 12 return parent.getType() == tokenType;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
CommonTreeAdaptor.cs | 69 public override IToken CreateToken( int tokenType, string text ) 71 return new CommonToken( tokenType, text );
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBKeyPath.cpp | 40 enum TokenType { 55 TokenType currentTokenType() const { return m_currentTokenType; } 57 TokenType nextTokenType() 66 TokenType lex(String&); 67 TokenType lexIdentifier(String&); 72 TokenType m_currentTokenType; 75 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(String& element) 110 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexIdentifier(String& element) 144 IDBKeyPathLexer::TokenType tokenType = lexer.nextTokenType() [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
HanziToPinyin.java | 138 int tokenType = Token.LATIN; 149 addToken(sb, tokens, tokenType); 155 addToken(sb, tokens, tokenType); 160 if (tokenType != token.type && sb.length() > 0) { 161 addToken(sb, tokens, tokenType); 165 tokenType = token.type; 169 addToken(sb, tokens, tokenType); 175 final StringBuilder sb, final ArrayList<Token> tokens, final int tokenType) { 177 tokens.add(new Token(tokenType, str, str));
|
/external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/ |
junit.stg | 47 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/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeParser.as | 94 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/JavaScript/src/org/antlr/runtime/tree/ |
TreeParser.js | 64 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/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeAdaptor.cs | 206 object Create(int tokenType, IToken fromToken); 209 * Same as create(tokenType,fromToken) except set the text too. 218 object Create(int tokenType, IToken fromToken, string text); 230 object Create(int tokenType, string text);
|
BaseTreeAdaptor.cs | 198 public virtual object Create(int tokenType, IToken fromToken) { 200 //((ClassicToken)fromToken).setType(tokenType); 201 fromToken.Type = tokenType; 206 public virtual object Create(int tokenType, IToken fromToken, string text) { 208 return Create(tokenType, text); 211 fromToken.Type = tokenType; 217 public virtual object Create(int tokenType, string text) { 218 IToken fromToken = CreateToken(tokenType, text); 283 public abstract IToken CreateToken(int tokenType, string text);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/ |
ITreeAdaptor`1.cs | 194 T Create(int tokenType, IToken fromToken); 197 * Same as create(tokenType,fromToken) except set the text too. 206 T Create(int tokenType, IToken fromToken, string text); 218 T Create(int tokenType, string text);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeAdaptor.java | 169 public Object create(int tokenType, Token fromToken); 171 /** Same as create(tokenType,fromToken) except set the text too. 177 public Object create(int tokenType, Token fromToken, String text); 185 public Object create(int tokenType, String text);
|
BaseTreeAdaptor.java | 182 public Object create(int tokenType, Token fromToken) { 184 //((ClassicToken)fromToken).setType(tokenType); 185 fromToken.setType(tokenType); 190 public Object create(int tokenType, Token fromToken, String text) { 191 if (fromToken == null) return create(tokenType, text); 193 fromToken.setType(tokenType); 199 public Object create(int tokenType, String text) { 200 Token fromToken = createToken(tokenType, text); 261 public abstract Token createToken(int tokenType, String text);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRCommonTreeAdaptor.h | 42 - (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;
|
ANTLRCommonTree.h | 49 + (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/ |
ANTLRCommonTreeAdaptor.h | 42 - (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;
|
ANTLRCommonTree.h | 49 + (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/ |
ANTLRCommonTreeAdaptor.h | 42 - (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;
|
ANTLRCommonTree.h | 49 + (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/ |
ANTLRTreeAdaptor.h | 107 - (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;
|