/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tokenization/ |
D | tokenizer.js | 164 this.currentToken = null; 305 this.currentToken = this.buildStartTagToken(tagNameFirstCh); 309 this.currentToken = this.buildEndTagToken(tagNameFirstCh); 313 this.currentToken = { property 320 this.currentToken = { property 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 …]
|
D | 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/ |
D | TextFormat.java | 605 private String currentToken; field in TextFormat.Tokenizer 650 return currentToken.length() == 0; in atEnd() 672 currentToken = ""; in nextToken() 676 currentToken = matcher.group(); in nextToken() 680 currentToken = String.valueOf(text.charAt(pos)); in nextToken() 704 if (currentToken.equals(token)) { in tryConsume() 727 if (currentToken.length() == 0) { in lookingAtInteger() 731 final char c = currentToken.charAt(0); in lookingAtInteger() 741 return currentToken.equals(text); in lookingAt() 749 for (int i = 0; i < currentToken.length(); i++) { in consumeIdentifier() [all …]
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/ |
D | main.m | 12 id<ANTLRToken> currentToken; 13 …while ((currentToken = [[lexer nextToken] retain]) && [currentToken getType] != ANTLRTokenTypeEOF)… 14 NSLog(@"%@", currentToken);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/ |
D | main.m | 13 id<ANTLRToken> currentToken; 14 while ((currentToken = [lexer nextToken]) && [currentToken getType] != ANTLRTokenTypeEOF) { 15 NSLog(@"%@", currentToken);
|
/external/apache-http/src/org/apache/http/message/ |
D | BasicTokenIterator.java | 75 protected String currentToken; field in BasicTokenIterator 102 return (this.currentToken != null); in hasNext() 117 if (this.currentToken == null) { in nextToken() 121 final String result = this.currentToken; in nextToken() 190 this.currentToken = null; in findNext() 195 this.currentToken = createToken(this.currentHeader, start, end); in findNext()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/ |
D | main.m | 16 id<ANTLRToken> currentToken; 17 while ((currentToken = [lex nextToken]) && [currentToken getType] != ANTLRTokenTypeEOF) { 18 NSLog(@"### %@", [currentToken toString]);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
D | main.m | 14 // ANTLRCommonToken *currentToken; 15 // while ((currentToken = [lexer nextToken]) && [currentToken getType] != ANTLRTokenTypeEOF) { 16 // NSLog(@"%@", [currentToken toString]);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/ |
D | main.m | 15 // ANTLRToken *currentToken; 16 // while ((currentToken = [lexer nextToken]) && [currentToken type] != ANTLRTokenTypeEOF) { 17 // NSLog(@"%@", currentToken);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
D | main.m | 14 // ANTLRCommonToken *currentToken; 15 // while ((currentToken = [lexer nextToken]) && [currentToken getType] != ANTLRTokenTypeEOF) { 16 // NSLog(@"%@", currentToken);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/ |
D | main.m | 14 // id<ANTLRToken> currentToken; 15 // while ((currentToken = [lexer nextToken]) && [currentToken type] != ANTLRTokenTypeEOF) { 16 // NSLog(@"%@", currentToken);
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/ |
D | 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;
|
D | parser.js | 466 Parser.prototype._switchToTextParsing = function (currentToken, nextTokenizerState) { argument 467 this._insertElement(currentToken, NS.HTML);
|
/external/javassist/src/main/javassist/compiler/ |
D | Lex.java | 30 private Token currentToken; field in Lex 42 currentToken = new Token(); in Lex() 53 return get(currentToken); in get() 56 currentToken = t = lookAheadTokens; in get() 72 lookAheadTokens = tk = currentToken; // reuse an object! in lookAhead() 84 currentToken = tk; in lookAhead() 89 return currentToken.textValue; in getString() 93 return currentToken.longValue; in getLong() 97 return currentToken.doubleValue; in getDouble()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
D | main.m | 37 // id<ANTLRToken> currentToken; 38 // while ((currentToken = [lexer nextToken]) && [currentToken type] != ANTLRTokenTypeEOF) { 39 // NSLog(@"%@", currentToken);
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/ |
D | parse5.js | 1262 this._attachLocationInfo(this.currentToken); 1267 this._attachLocationInfo(this.currentToken); 1272 this._attachLocationInfo(this.currentToken); 1277 this._attachLocationInfo(this.currentToken); 1290 this.currentCharacterToken.location.end = this.currentToken.location.start; 1292 this.currentToken.location.end = this.preprocessor.pos + 1; 1613 this.currentToken = null; 1754 this.currentToken = this.buildStartTagToken(tagNameFirstCh); 1758 this.currentToken = this.buildEndTagToken(tagNameFirstCh); 1762 this.currentToken = { [all …]
|
/external/skia/src/gpu/ |
D | GrBatchAtlas.cpp | 325 if (plot->lastUseToken() == batchTarget->currentToken()) { in addToAtlas() 345 newPlot->setLastUploadToken(batchTarget->currentToken()); in addToAtlas()
|
D | GrBatchTarget.h | 84 BatchToken currentToken() const { return fCurrentToken; } in currentToken() function
|
D | GrAADistanceFieldPathRenderer.cpp | 269 atlas->setLastUseToken(args.fPathData->fID, batchTarget->currentToken()); in generateGeometry()
|
D | GrAtlasTextContext.cpp | 1669 batchTarget->currentToken()); in generateGeometry() 1714 batchTarget->currentToken(), in generateGeometry()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
D | ant-starteam.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.commons.el_1.0.0.v201004212143.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.apache.lucene_1.9.1.v20100518-1140.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.help.base_3.5.2.v201011171123.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/robolectric/lib/main/ |
D | httpcore-4.0.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |