Home
last modified time | relevance | path

Searched refs:Tokens (Results 1 – 25 of 133) sorted by relevance

123456

/external/clang/lib/Format/
DFormat.cpp615 assert(Tokens.empty()); in lex()
618 Tokens.push_back(getNextToken()); in lex()
620 if (Tokens.back()->NewlinesBefore > 0 || Tokens.back()->IsMultiline) in lex()
621 FirstInLineIndex = Tokens.size() - 1; in lex()
622 } while (Tokens.back()->Tok.isNot(tok::eof)); in lex()
623 return Tokens; in lex()
666 if (Tokens.size() < 3) in tryMergeLessLess()
670 if (Tokens.size() > 3) in tryMergeLessLess()
671 FourthTokenIsLess = (Tokens.end() - 4)[0]->is(tok::less); in tryMergeLessLess()
673 auto First = Tokens.end() - 3; in tryMergeLessLess()
[all …]
DUnwrappedLineParser.cpp130 else if (!Parser.Line->Tokens.empty()) in ScopedLineState()
131 Parser.CurrentLines = &Parser.Line->Tokens.back().Children; in ScopedLineState()
139 if (!Parser.Line->Tokens.empty()) { in ~ScopedLineState()
142 assert(Parser.Line->Tokens.empty()); in ~ScopedLineState()
179 IndexedTokenSource(ArrayRef<FormatToken *> Tokens) in IndexedTokenSource() argument
180 : Tokens(Tokens), Position(-1) {} in IndexedTokenSource()
184 return Tokens[Position]; in getNextToken()
194 return Tokens[Position]; in setPosition()
200 ArrayRef<FormatToken *> Tokens; member in clang::format::__anon6af56abf0211::IndexedTokenSource
208 ArrayRef<FormatToken *> Tokens, in UnwrappedLineParser() argument
[all …]
DTokenAnnotator.h42 : First(Line.Tokens.front().Tok), Level(Line.Level), in AnnotatedLine()
47 assert(!Line.Tokens.empty()); in AnnotatedLine()
54 for (std::list<UnwrappedLineNode>::const_iterator I = ++Line.Tokens.begin(), in AnnotatedLine()
55 E = Line.Tokens.end(); in AnnotatedLine()
DUnwrappedLineParser.h41 std::list<UnwrappedLineNode> Tokens; member
65 ArrayRef<FormatToken *> Tokens,
168 FormatTokenSource *Tokens; variable
/external/clang/lib/Lex/
DTokenLexer.cpp41 Tokens = &*Macro->tokens_begin(); in Init()
51 assert(Tokens[0].getLocation().isValid()); in Init()
52 assert((Tokens[0].getLocation().isFileID() || Tokens[0].is(tok::comment)) && in Init()
60 MacroDefStart = SM.getExpansionLoc(Tokens[0].getLocation()); in Init()
91 Tokens = TokArray; in Init()
115 delete [] Tokens; in destroy()
116 Tokens = nullptr; in destroy()
184 const Token &CurTok = Tokens[i]; in ExpandFunctionArguments()
185 if (i != 0 && !Tokens[i-1].is(tok::hashhash) && CurTok.hasLeadingSpace()) in ExpandFunctionArguments()
189 int ArgNo = Macro->getArgumentNum(Tokens[i+1].getIdentifierInfo()); in ExpandFunctionArguments()
[all …]
DPreprocessor.cpp312 ArrayRef<TokenValue> Tokens) { in MacroDefinitionEquals() argument
313 return Tokens.size() == MI->getNumTokens() && in MacroDefinitionEquals()
314 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin()); in MacroDefinitionEquals()
319 ArrayRef<TokenValue> Tokens) const { in getLastMacroWithSpelling()
330 if (!MacroDefinitionEquals(Def.getMacroInfo(), Tokens)) in getLastMacroWithSpelling()
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-tree-wizard.rb84 Tokens = TokenScheme.build %w(A B C D E ID VAR) constant in TestPatternParser
85 include Tokens
88 @adaptor = CommonTreeAdaptor.new( Tokens.token_class )
89 @pattern_adaptor = Wizard::PatternAdaptor.new( Tokens.token_class )
90 @wizard = Wizard.new( :adaptor => @adaptor, :token_scheme => Tokens )
95 tree = Wizard::PatternParser.parse( 'ID', Tokens, @adaptor )
103 tree = Wizard::PatternParser.parse( 'ID[foo]', Tokens, @adaptor )
111 tree = Wizard::PatternParser.parse( '(A B)', Tokens, @adaptor )
122 tree = Wizard::PatternParser.parse( 'nil', Tokens, @adaptor )
130 tree = Wizard::PatternParser.parse( '(.)', Tokens, @adaptor )
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenConstants.cs65 public static class Tokens class
67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile;
79 public static class Tokens<T>
/external/llvm/lib/CodeGen/
DIfConversion.cpp199 std::vector<IfcvtToken*> &Tokens);
202 void AnalyzeBlocks(MachineFunction &MF, std::vector<IfcvtToken*> &Tokens);
307 std::vector<IfcvtToken*> Tokens; in INITIALIZE_PASS_DEPENDENCY() local
315 AnalyzeBlocks(MF, Tokens); in INITIALIZE_PASS_DEPENDENCY()
316 while (!Tokens.empty()) { in INITIALIZE_PASS_DEPENDENCY()
317 IfcvtToken *Token = Tokens.back(); in INITIALIZE_PASS_DEPENDENCY()
318 Tokens.pop_back(); in INITIALIZE_PASS_DEPENDENCY()
413 while (!Tokens.empty()) { in INITIALIZE_PASS_DEPENDENCY()
414 IfcvtToken *Token = Tokens.back(); in INITIALIZE_PASS_DEPENDENCY()
415 Tokens.pop_back(); in INITIALIZE_PASS_DEPENDENCY()
[all …]
/external/mesa3d/src/gallium/drivers/i915/
Di915_fpc_optimize.c320 out_tokens->Tokens = MALLOC(sizeof(union i915_full_token) * out_tokens->NumTokens); in i915_optimize()
331 copy_token(&out_tokens->Tokens[i] , &parse.FullToken); in i915_optimize()
334 i915_fpc_optimize_useless_mov_after_inst(&out_tokens->Tokens[i-1], &out_tokens->Tokens[i]); in i915_optimize()
335 i915_fpc_optimize_mov_after_alu(&out_tokens->Tokens[i-1], &out_tokens->Tokens[i]); in i915_optimize()
346 free(tokens->Tokens); in i915_optimize_free()
/external/llvm/lib/Fuzzer/
DFuzzerLoop.cpp35 if (Options.Tokens.empty()) { in PrintUnitInASCIIOrTokens()
157 if (Idx < Options.Tokens.size()) { in SubstituteTokens()
158 std::string Token = Options.Tokens[Idx]; in SubstituteTokens()
169 if (Options.Tokens.empty()) { in ExecuteCallback()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_parse.c46 ctx->Tokens = tokens; in tgsi_parse_init()
88 copy_token(token, &ctx->Tokens[ctx->Position]); in next_token()
127 &ctx->Tokens[ctx->Position]; in tgsi_parse_token()
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
DTest.tokens2 Tokens=7
DTestLexer.h15 #pragma mark Tokens
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokens.cs35 public static class Tokens class
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeConstants.cs37 public static readonly ITree INVALID_NODE = new CommonTree( Tokens.Invalid );
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
DTestLexer.h15 #pragma mark Tokens
DTestLexerLexer.h15 #pragma mark Tokens
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
DTreeRewriteLexer.h16 #pragma mark Tokens
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
DCombinedLexer.h16 #pragma mark Tokens
DCombinedParser.h13 #pragma mark Tokens
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
Dtoken.ml2 * Lexer Tokens
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
Dtoken.ml2 * Lexer Tokens
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
DTreeRewriteLexer.h16 #pragma mark Tokens
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dtoken.ml2 * Lexer Tokens

123456