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

  /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/WebCore/inspector/front-end/
DOMSyntaxHighlighter.js 58 var tokenType = this._tokenizer.tokenType;
59 if (tokenType) {
65 node.appendChild(this.createSpan(token, tokenType));
SourceHTMLTokenizer.js 104 this.tokenType = null;
107 this.tokenType = this._attrValueTokenType();
168 { this.tokenType = "html-comment"; return cursor; }
176 { this.tokenType = null; return cursor; }
201 { this.tokenType = "html-comment"; return cursor; }
224 { this.tokenType = "html-doctype"; return cursor; }
230 { this.tokenType = null; return cursor; }
234 { this.tokenType = "html-doctype"; return cursor; }
265 { this.tokenType = null; return cursor; }
291 { this.tokenType = null; return cursor;
    [all...]
SourceCSSTokenizer.re2js 177 this.tokenType = "css-string";
179 this.tokenType = null;
231 <INITIAL> Comment { this.tokenType = "css-comment"; return cursor; }
232 <INITIAL> CommentStart => COMMENT { this.tokenType = "css-comment"; return cursor; }
233 <COMMENT> CommentContent => COMMENT { this.tokenType = "css-comment"; return cursor; }
234 <COMMENT> CommentEnd => INITIAL { this.tokenType = "css-comment"; return cursor; }
246 this.tokenType = null;
256 this.tokenType = null;
263 this.tokenType = null;
271 this.tokenType = null
    [all...]
TextEditorHighlighter.js 191 var tokenType = this._tokenizer.tokenType;
192 if (tokenType)
193 attributes[column] = { length: newColumn - column, tokenType: tokenType, style: this._styles[tokenType] };
SourceHTMLTokenizer.re2js 103 this.tokenType = null;
106 this.tokenType = this._attrValueTokenType();
166 <INITIAL> Comment { this.tokenType = "html-comment"; return cursor; }
167 <INITIAL> CommentStart => COMMENT { this.tokenType = "html-comment"; return cursor; }
168 <COMMENT> CommentContent => COMMENT { this.tokenType = "html-comment"; return cursor; }
169 <COMMENT> CommentEnd => INITIAL { this.tokenType = "html-comment"; return cursor; }
171 <INITIAL> DocTypeStart => DOCTYPE { this.tokenType = "html-doctype"; return cursor; }
172 <DOCTYPE> DocTypeContent => DOCTYPE { this.tokenType = "html-doctype"; return cursor; }
173 <DOCTYPE> GT => INITIAL { this.tokenType = "html-doctype"; return cursor; }
177 this.tokenType = "html-tag"
    [all...]
SourceCSSTokenizer.js 178 this.tokenType = "css-string";
180 this.tokenType = null;
226 { this.tokenType = "css-comment"; return cursor; }
233 { this.tokenType = null; return cursor; }
242 { this.tokenType = "css-comment"; return cursor; }
286 { this.tokenType = null; return cursor; }
418 { this.tokenType = null; return cursor; }
428 this.tokenType = "css-at-rule";
431 this.tokenType = "css-at-rule";
433 this.tokenType = "css-selector"
    [all...]
SourceJavaScriptTokenizer.js 120 { this.tokenType = "javascript-comment"; return cursor; }
127 { this.tokenType = null; return cursor; }
136 { this.tokenType = "javascript-comment"; return cursor; }
229 { this.tokenType = null; return cursor; }
235 { this.tokenType = null; return cursor; }
250 this.tokenType = "javascript-keyword";
252 this.tokenType = "javascript-ident";
275 { this.tokenType = null; return cursor; }
306 { this.tokenType = null; return cursor; }
326 { this.tokenType = "javascript-number"; return cursor;
    [all...]
TextViewer.js 345 element.appendChild(this._createSpan(line.substring(j, j + attribute.length), attribute.tokenType));
  /frameworks/base/core/java/com/android/internal/util/
HanziToPinyin.java 442 int tokenType = Token.LATIN;
451 addToken(sb, tokens, tokenType);
454 if (tokenType != Token.LATIN && sb.length() > 0) {
455 addToken(sb, tokens, tokenType);
457 tokenType = Token.LATIN;
460 if (tokenType != Token.UNKNOWN && sb.length() > 0) {
461 addToken(sb, tokens, tokenType);
463 tokenType = Token.UNKNOWN;
469 addToken(sb, tokens, tokenType);
472 tokenType = Token.PINYIN
    [all...]
  /external/chromium/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);
plurrule.cpp 286 tokenType type;
287 tokenType prevType=none;
893 RuleParser::checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status)
964 tokenType& type,
969 tokenType prevType=none;
1059 RuleParser::inRange(UChar ch, tokenType& type) {
1093 RuleParser::getKeyType(const UnicodeString& token, tokenType& keyType, UErrorCode &status)
  /external/icu4c/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);
plurrule.cpp 286 tokenType type;
287 tokenType prevType=none;
893 RuleParser::checkSyntax(tokenType prevType, tokenType curType, UErrorCode &status)
964 tokenType& type,
969 tokenType prevType=none;
1059 RuleParser::inRange(UChar ch, tokenType& type) {
1093 RuleParser::getKeyType(const UnicodeString& token, tokenType& keyType, UErrorCode &status)
  /external/chromium/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/icu4c/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/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 183 my ($toc, $tokenType, $tokenPreposition, $token);
TocGenerator.pm 588 my ($toc, $group, $tokens, $tokenType, $i);
670 # Link to 'id' and tokenType isn't 'start'?
672 # Yes, link to 'id' and tokenType isn't 'start';
    [all...]
  /external/webkit/WebCore/dom/
XMLTokenizerQt.cpp 358 switch (m_stream.tokenType()) {
  /external/svox/pico/lib/
picotok.c 235 pico_tokenType tokenType;
    [all...]
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /prebuilt/common/jython/
jython.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 326 milliseconds