HomeSort by relevance Sort by last modified time
    Searched refs:tokenType (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /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/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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
ScriptFormatterWorker.js 135 * @param {?string} tokenType
138 function isJavaScriptIdentifier(tokenType)
140 if (!tokenType)
142 return tokenType.startsWith("variable") || tokenType.startsWith("property") || tokenType === "def";
147 * @param {?string} tokenType
151 function processToken(tokenValue, tokenType, column, newColumn)
153 if (isJavaScriptIdentifier(tokenType)) {
161 } else if (tokenType === "keyword")
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 145 int tokenType = Token.LATIN;
156 addToken(sb, tokens, tokenType);
162 addToken(sb, tokens, tokenType);
167 if (tokenType != token.type && sb.length() > 0) {
168 addToken(sb, tokens, tokenType);
172 tokenType = token.type;
176 addToken(sb, tokens, tokenType);
182 final StringBuilder sb, final ArrayList<Token> tokens, final int tokenType) {
184 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/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DOMSyntaxHighlighter.js 63 * @param {?string} tokenType
68 function processToken(token, tokenType, column, newColumn)
70 if (!tokenType)
77 node.appendChild(this.createSpan(token, tokenType));
  /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;
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetreeadaptor.c 58 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)
768 fromToken->setType(fromToken, tokenType);
775 dbgCreateTypeToken (pANTLR3_BASE_TREE_ADAPTOR adaptor, ANTLR3_UINT32 tokenType, pANTLR3_COMMON_TOKEN fromToken)
779 t = createTypeToken(adaptor, tokenType, fromToken)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
plurrule_impl.h 104 typedef enum tokenType {
131 }tokenType;
138 tokenType& type, UErrorCode &status);
139 void checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status);
144 void getKeyType(const UnicodeString& token, tokenType& type, UErrorCode &status);
145 UBool inRange(UChar ch, tokenType& type);

Completed in 639 milliseconds

1 2 3 4 5