/freebsd-src/contrib/llvm-project/clang/include/clang/Tooling/Syntax/ |
H A D | TokenBufferTokenManager.h | 22 TokenBufferTokenManager(const TokenBuffer &Tokens, in TokenBufferTokenManager() 58 const TokenBuffer &Tokens; variable
|
/freebsd-src/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatTokenSource.h | 82 IndexedTokenSource(ArrayRef<FormatToken * > Tokens) IndexedTokenSource() argument 177 SmallVector<FormatToken *> Tokens; global() variable 239 insertTokens(ArrayRef<FormatToken * > Tokens) insertTokens() argument [all...] |
H A D | MacroExpander.cpp | 50 DefinitionParser(ArrayRef<FormatToken *> Tokens) : Tokens(Tokens) { in DefinitionParser() argument 118 ArrayRef<FormatToken *> Tokens; member in clang::format::MacroExpander::DefinitionParser 140 const auto Tokens = Lex.lex(); in parseDefinition() local [all...] |
H A D | DefinitionBlockSeparator.cpp | 24 FormatTokenLexer &Tokens) { in analyze() 34 FormatTokenLexer &Tokens) { in separateBlocks()
|
H A D | TokenAnnotator.h | 118 startsWith(Ts...Tokens) startsWith() argument 126 endsWith(Ts...Tokens) endsWith() argument
|
H A D | FormatTokenLexer.h | 133 SmallVector<FormatToken *, 16> Tokens; global() variable
|
H A D | UnwrappedLineParser.h | 45 std::list<UnwrappedLineNode> Tokens; global() member 331 FormatTokenSource *Tokens; global() variable
|
H A D | Macros.h | 275 llvm::SmallVector<std::unique_ptr<LineNode>> Tokens; global() member
|
H A D | QualifierAlignmentFixer.cpp | 536 analyze(TokenAnnotator &,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 544 fixQualifierAlignment(SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens,tooling::Replacements & Fixes) fixQualifierAlignment() argument
|
H A D | TokenAnalyzer.cpp | 109 SmallVector<FormatToken *, 10> Tokens(Toks.begin(), Toks.end()); in process() local
|
H A D | ObjCPropertyAttributeOrderFixer.cpp | 185 FormatTokenLexer &Tokens) { in analyze()
|
H A D | Format.cpp | 2107 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2151 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2204 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2255 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2306 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2395 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2536 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2599 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument 2767 SmallVector<FormatToken *> Tokens; generateFixes() local 2820 analyze(TokenAnnotator & Annotator,SmallVectorImpl<AnnotatedLine * > & AnnotatedLines,FormatTokenLexer & Tokens) analyze() argument [all...] |
H A D | BreakableToken.h | 373 SmallVector<FormatToken *, 16> Tokens; global() variable
|
H A D | UsingDeclarationsSorter.cpp | 214 FormatTokenLexer &Tokens) { in analyze()
|
H A D | UnwrappedLineParser.cpp | 152 UnwrappedLineParser(SourceManager & SourceMgr,const FormatStyle & Style,const AdditionalKeywords & Keywords,unsigned FirstStartColumn,ArrayRef<FormatToken * > Tokens,UnwrappedLineConsumer & Callback,llvm::SpecificBumpPtrAllocator<FormatToken> & Allocator,IdentifierTable & IdentTable) UnwrappedLineParser() argument 685 auto &Tokens = ParsedLine.Tokens; mightFitOnOneLine() local 3813 FormatTokenSource *Tokens; global() member in clang::format::__anon2ffb27af0811::ScopedTokenPosition 3816 ScopedTokenPosition(FormatTokenSource * Tokens) ScopedTokenPosition() argument [all...] |
H A D | NamespaceEndCommentsFixer.cpp | 283 FormatTokenLexer &Tokens) { in analyze()
|
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
H A D | Tokens.cpp | 523 spelledTokensTouching(SourceLocation Loc,llvm::ArrayRef<syntax::Token> Tokens) spelledTokensTouching() argument 537 spelledTokensTouching(SourceLocation Loc,const syntax::TokenBuffer & Tokens) spelledTokensTouching() argument 544 spelledIdentifierTouching(SourceLocation Loc,llvm::ArrayRef<syntax::Token> Tokens) spelledIdentifierTouching() argument 554 spelledIdentifierTouching(SourceLocation Loc,const syntax::TokenBuffer & Tokens) spelledIdentifierTouching() argument 577 std::vector<syntax::Token> Tokens; tokenize() local 920 __anoncb7cadc10f02(llvm::raw_ostream &OS, llvm::ArrayRef<syntax::Token> Tokens) dumpForTests() argument [all...] |
H A D | BuildTree.cpp | 441 auto Tokens = TBTM.tokenBuffer().expandedTokens(); in finalize() local 477 auto Tokens = getRange(D->getSourceRange()); in getTemplateRange() local 510 ArrayRef<syntax::Token> Tokens; in getDeclarationRange() local 526 auto Tokens = getRange(S->getSourceRange()); getStmtRange() local 538 maybeAppendSemicolon(ArrayRef<syntax::Token> Tokens,const Decl * D) const maybeAppendSemicolon() argument 1326 auto Tokens = Builder.getDeclarationRange(S); WalkUpFromNamespaceDecl() local 1642 auto Tokens = llvm::ArrayRef(Arrow, Return.end()); buildTrailingReturn() local [all...] |
H A D | ComputeReplacements.cpp | 111 &TU, TBTM, [&](llvm::ArrayRef<syntax::Token> Tokens, bool IsOriginal) { in computeReplacements()
|
H A D | Synthesis.cpp | 43 auto Tokens = in createLeaf() local
|
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | COFFDirectiveParser.cpp | 55 SmallVector<StringRef, 16> Tokens; in parse() local
|
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | GenericConvergenceVerifier.h | 65 DenseMap<const InstructionT *, const InstructionT *> Tokens; global() variable
|
/freebsd-src/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | TokenLexer.h | 51 const Token *Tokens; variable
|
H A D | DependencyDirectivesScanner.h | 96 ArrayRef<Token> Tokens; member
|
/freebsd-src/contrib/llvm-project/clang/lib/Lex/ |
H A D | DependencyDirectivesScanner.cpp | 177 SmallVectorImpl<dependency_directives_scan::Token> &Tokens; member 952 scanSourceForDependencyDirectives(StringRef Input,SmallVectorImpl<dependency_directives_scan::Token> & Tokens,SmallVectorImpl<Directive> & Directives,DiagnosticsEngine * Diags,SourceLocation InputSourceLoc) scanSourceForDependencyDirectives() argument [all...] |