HomeSort by relevance Sort by last modified time
    Searched refs:tokenType (Results 1 - 25 of 110) 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/webkit/Source/WebCore/storage/
IDBKeyPath.cpp 38 enum TokenType {
56 TokenType currentTokenType() const { return m_currentTokenType; }
58 TokenType nextTokenType()
67 TokenType lex(IDBKeyPathElement&);
68 TokenType lexIdentifier(IDBKeyPathElement&);
69 TokenType lexNumber(IDBKeyPathElement&);
74 TokenType m_currentTokenType;
77 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(IDBKeyPathElement& element)
123 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexIdentifier(IDBKeyPathElement& element)
139 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lexNumber(IDBKeyPathElement& element
    [all...]
  /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/webkit/Source/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 58 var tokenType = this._tokenizer.tokenType;
59 if (tokenType) {
65 node.appendChild(this.createSpan(token, tokenType));
SourceHTMLTokenizer.js 123 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 = "html-doctype"; return cursor;
    [all...]
SourceCSSTokenizer.re2js 127 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 = null
    [all...]
SourceHTMLTokenizer.re2js 122 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 = "html-comment"; return cursor;
    [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;
  /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/icu4c/i18n/
plurrule_impl.h 99 typedef enum tokenType {
126 }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);

Completed in 5321 milliseconds

1 2 3 4 5