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

1 2 3 4 5 6

  /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;
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/
tokenizer.py 27 * self.currentToken
54 self.currentToken = None
217 self.currentToken["data"][-1][1] += output
235 token = self.currentToken
377 self.currentToken = {"type": tokenTypes["StartTag"],
408 self.currentToken = {"type": tokenTypes["EndTag"], "name": data,
444 self.currentToken["name"] += "\uFFFD"
446 self.currentToken["name"] += data
474 appropriate = self.currentToken and self.currentToken["name"].lower() == self.temporaryBuffer.lower(
    [all...]
  /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/smali/smalidea/src/main/java/org/jf/smalidea/
PsiBuilderTokenStream.java 51 @Nullable private CommonToken currentToken = null;
60 if (currentToken == null) {
63 return currentToken;
69 return currentToken==null?0:1;
98 currentToken = new CommonToken(elementType.tokenId, psiBuilder.getTokenText());
100 currentToken = new InvalidToken("", psiBuilder.getTokenText());
105 currentToken = new CommonToken(Token.EOF);
  /external/chromium-trace/catapult/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/catapult/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;
  /external/skia/src/gpu/
GrBatchFlushState.h 69 GrBatchToken currentToken() const { return fCurrentToken; }
142 GrBatchToken currentToken() const { return fState->currentToken(); }
GrBatchAtlas.cpp 234 // array. If it is equal to the currentToken, then the caller has to flush draws to the batch
236 if (plot->lastUseToken() == batchTarget->currentToken()) {
240 SkASSERT(plot->lastUseToken() < batchTarget->currentToken());
241 SkASSERT(!batchTarget->hasTokenBeenFlushed(batchTarget->currentToken()));
257 newPlot->setLastUploadToken(batchTarget->currentToken());
GrDrawingManager.cpp 87 SkASSERT(fFlushState.lastFlushedToken() == fFlushState.currentToken());
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 590 if (lexer.currentToken() != Lexer.TOKEN_END) {
609 if (lexer.currentToken() == Lexer.TOKEN_OPEN_PAREN) {
612 if (lexer.currentToken() != Lexer.TOKEN_CLOSE_PAREN) {
620 if (lexer.currentToken() != Lexer.TOKEN_AND_OR) {
631 if (lexer.currentToken() != Lexer.TOKEN_COLUMN) {
637 if (lexer.currentToken() == Lexer.TOKEN_COMPARE) {
639 if (lexer.currentToken() != Lexer.TOKEN_VALUE) {
647 if (lexer.currentToken() == Lexer.TOKEN_IS) {
649 if (lexer.currentToken() != Lexer.TOKEN_NULL) {
689 public int currentToken() {
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
parse5.js     [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob_regenInBatch.cpp 209 target->currentToken());
314 fontCache->setUseTokenBulk(*info.bulkUseToken(), target->currentToken(),
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_tokenizer.py 27 tokenizer.currentToken = {"type": "startTag",
  /external/skia/src/gpu/batches/
GrAADistanceFieldPathRenderer.cpp 277 atlas->setLastUseToken(pathData->fID, target->currentToken());
  /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/commons-cli/commons-cli/1.3.1/
commons-cli-1.3.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/25.2.0/
common-25.2.0.jar 

Completed in 814 milliseconds

1 2 3 4 5 6