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

1 2 3 4

  /external/javassist/src/main/javassist/compiler/
Lex.java 30 private Token currentToken;
42 currentToken = new Token();
53 return get(currentToken);
56 currentToken = t = lookAheadTokens;
72 lookAheadTokens = tk = currentToken; // reuse an object!
84 currentToken = tk;
89 return currentToken.textValue;
93 return currentToken.longValue;
97 return currentToken.doubleValue;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/
ParseException.java 33 * a new object of this type with the fields "currentToken",
49 currentToken = currentTokenVal;
86 public Token currentToken;
105 * "currentToken" and "expectedTokenSequences" to generate a parse
131 Token tok = currentToken.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
  /external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java 66 * This is the header value that includes {@link #currentToken}.
72 * The token to be returned by the next call to {@link #currentToken}.
75 protected String currentToken;
78 * The position after {@link #currentToken} in {@link #currentHeader}.
102 return (this.currentToken != null);
117 if (this.currentToken == null) {
121 final String result = this.currentToken;
122 // updates currentToken, may trigger ParseException:
159 * If found, the token is stored in {@link #currentToken}.
163 * If not found, {@link #currentToken} is set to <code>null</code>
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tokenization/
tokenizer.js 164 this.currentToken = null;
305 this.currentToken = this.buildStartTagToken(tagNameFirstCh);
309 this.currentToken = this.buildEndTagToken(tagNameFirstCh);
313 this.currentToken = {
320 this.currentToken = {
345 return Tokenizer.getTokenAttr(this.currentToken, this.currentAttr.name) !== null;
352 this.currentToken.attrs.push(this.currentAttr);
358 return this.lastStartTagName === this.currentToken.tagName;
366 if (this.currentToken.type === Tokenizer.START_TAG_TOKEN)
367 this.lastStartTagName = this.currentToken.tagName
    [all...]
location_info_mixin.js 20 this._attachLocationInfo(this.currentToken);
25 this._attachLocationInfo(this.currentToken);
30 this._attachLocationInfo(this.currentToken);
35 this._attachLocationInfo(this.currentToken);
48 this.currentCharacterToken.location.end = this.currentToken.location.start;
50 this.currentToken.location.end = this.preprocessor.pos + 1;
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 605 private String currentToken;
650 return currentToken.length() == 0;
672 currentToken = "";
676 currentToken = matcher.group();
680 currentToken = String.valueOf(text.charAt(pos));
704 if (currentToken.equals(token)) {
727 if (currentToken.length() == 0) {
731 final char c = currentToken.charAt(0);
741 return currentToken.equals(text);
749 for (int i = 0; i < currentToken.length(); i++)
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/
location_info_mixin.js 48 setEndLocation(this.current, parser.currentToken, treeAdapter);
54 setEndLocation(this.items[i], parser.currentToken, treeAdapter);
60 setEndLocation(element, parser.currentToken, treeAdapter);
77 this.currentToken = null;
83 this.currentToken = token;
88 this.currentToken = token;
parser.js 466 Parser.prototype._switchToTextParsing = function (currentToken, nextTokenizerState) {
467 this._insertElement(currentToken, NS.HTML);
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 475 if (lexer.currentToken() != Lexer.TOKEN_END) {
494 if (lexer.currentToken() == Lexer.TOKEN_OPEN_PAREN) {
497 if (lexer.currentToken() != Lexer.TOKEN_CLOSE_PAREN) {
505 if (lexer.currentToken() != Lexer.TOKEN_AND_OR) {
516 if (lexer.currentToken() != Lexer.TOKEN_COLUMN) {
522 if (lexer.currentToken() == Lexer.TOKEN_COMPARE) {
524 if (lexer.currentToken() != Lexer.TOKEN_VALUE) {
532 if (lexer.currentToken() == Lexer.TOKEN_IS) {
534 if (lexer.currentToken() != Lexer.TOKEN_NULL) {
574 public int currentToken() {
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/
parse5.js     [all...]
  /external/skia/src/gpu/
GrBatchTarget.h 84 BatchToken currentToken() const { return fCurrentToken; }
GrBatchAtlas.cpp 323 // array. If it is equal to the currentToken, then the caller has to flush draws to the batch
325 if (plot->lastUseToken() == batchTarget->currentToken()) {
345 newPlot->setLastUploadToken(batchTarget->currentToken());
GrAADistanceFieldPathRenderer.cpp 269 atlas->setLastUseToken(args.fPathData->fID, batchTarget->currentToken());
GrAtlasTextContext.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-starteam.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/
javacc-5.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 

Completed in 515 milliseconds

1 2 3 4