Searched refs:firstToken (Results 1 - 5 of 5) sorted by relevance
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonParser.cs | 447 var firstToken = tokenizer.Next(); in MergeStructValue() 449 switch (firstToken.Type) in MergeStructValue() 455 fields[Value.StringValueFieldNumber].Accessor.SetValue(message, firstToken.StringValue); in MergeStructValue() 458 fields[Value.NumberValueFieldNumber].Accessor.SetValue(message, firstToken.NumberValue); in MergeStructValue() 462 fields[Value.BoolValueFieldNumber].Accessor.SetValue(message, firstToken.Type == JsonToken.TokenType.True); in MergeStructValue() 468 tokenizer.PushBack(firstToken); in MergeStructValue() 477 tokenizer.PushBack(firstToken); in MergeStructValue() 483 throw new InvalidOperationException("Unexpected token type: " + firstToken.Type); in MergeStructValue()
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/ |
H A D | parser.js | 412 var firstToken = this.tokens[startPosition]; 416 source: getSource(firstToken[_tokenize.FIELDS.START_LINE], firstToken[_tokenize.FIELDS.START_COL], lastToken[_tokenize.FIELDS.END_LINE], lastToken[_tokenize.FIELDS.END_COL]), 417 sourceIndex: firstToken[_tokenize.FIELDS.START_POS], 507 var firstToken = this.currToken; 558 source: getTokenSourceSpan(firstToken, this.tokens[this.position - 1]), 559 sourceIndex: firstToken[_tokenize.FIELDS.START_POS],
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | Mf2Serializer.java | 147 Token firstToken = tokens.get(0); in build() 148 if (Type.MESSAGE.equals(firstToken.type) && firstToken.isStart()) { in build()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserindenter.js | 33 public firstToken: TokenSpan, 602 // ... unless in case if the startNodeSelf represents the firstToken then we need to choose its parent 604 while (parent != null && parent.AuthorNode.Details.StartOffset == this.firstToken.Span.startPosition()) 763 function Indenter(logger, tree, snapshot, languageHostIndentation, editorOptions, firstToken, smartIndent) {
769 this.firstToken = firstToken;
1231 // ... unless in case if the startNodeSelf represents the firstToken then we need to choose its parent
1233 while (parent != null && parent.AuthorNode.Details.StartOffset == this.firstToken.Span.startPosition())
|
/third_party/glslang/glslang/MachineIndependent/preprocessor/ |
H A D | Pp.cpp | 188 bool firstToken = true; in CPPdefine() local 196 if (firstToken) { in CPPdefine() 198 firstToken = false; in CPPdefine()
|
Completed in 9 milliseconds