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

1 2

  /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/
vdbetrace.c 28 int tokenType;
34 n = sqlite3GetToken((u8*)zSql, &tokenType);
35 assert( n>0 && tokenType!=TK_ILLEGAL );
36 if( tokenType==TK_VARIABLE ){
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...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeDumper.java 76 String tokenType = token.getClass().getSimpleName().substring(1);
77 return tokenType + " [line:" + token.getLine() + ",pos:" + token.getPos() + "] \""
  /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/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 111 int tokenType = input.getTreeAdaptor().getType(look);
112 while ( tokenType!=Token.EOF && !(tokenType==UP && level==0) ) {
115 tokenType = input.getTreeAdaptor().getType(look);
116 if ( tokenType == DOWN ) {
119 else if ( tokenType == UP ) {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
NFAFactory.java 129 int tokenType = nfa.grammar.getTokenType(atomAST.getText());
130 return build_Atom(tokenType, atomAST);
214 int tokenType = nfa.grammar.getTokenType(stringLiteralAST.getText());
215 return build_Atom(tokenType, stringLiteralAST);
Grammar.java     [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);
  /external/icu/icu4c/source/i18n/
plurrule_impl.h 100 enum tokenType {
144 static tokenType getKeyType(const UnicodeString& token, tokenType type);
145 static tokenType charType(UChar ch);
151 tokenType type;
152 tokenType prevType;
194 double get(tokenType operand) const;
227 tokenType digitsType; // n | i | v | f constraint.
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 814 int tokenType = grammar.getTokenType(tokenID);
815 if ( tokenType==Label.EOF ||
816 tokenType>=Label.MIN_TOKEN_TYPE )
819 code.addAggr("tokens.{name,type}", tokenID, Utils.integer(tokenType));
871 int tokenType = grammar.getTokenType(tokenID);
872 if ( tokenType>=Label.MIN_TOKEN_TYPE ) {
873 vocabFileST.addAggr("tokens.{name,type}", tokenID, Utils.integer(tokenType));
881 int tokenType = grammar.getTokenType(literal);
882 if ( tokenType>=Label.MIN_TOKEN_TYPE ) {
883 vocabFileST.addAggr("tokens.{name,type}", literal, Utils.integer(tokenType));
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 784 enum TokenType {STRING, VAR, NUMBER, STREAM_END, ERROR, QUESTION, STAR, PLUS, LBRACE, RBRACE, LPAR, RPAR, SEMI, EQ, COMMA, BAR, AT, WAVE, PERCENT};
794 void terminated(TokenType t){
796 tokenType = t;
806 tokenType = ERROR;
814 TokenType tokenType;
816 TokenType getNextToken(){
828 tokenType = ERROR;
830 case '?' : tokenType = QUESTION; break;
831 case '*' : tokenType = STAR; break
    [all...]
  /external/svox/pico/lib/
picotok.c 235 pico_tokenType tokenType;
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jaxen-1.1.6.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.publisher_1.3.0.v20140129-1405.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.publisher_1.3.0.v20130509-0110.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene.analysis_1.9.1.v20100518-1140.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
  /prebuilts/tools/common/m2/repository/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
jsoup-1.7.2.jar 

Completed in 2205 milliseconds

1 2