Home
last modified time | relevance | path

Searched defs:Token (Results 1 – 25 of 134) sorted by relevance

123456

/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DDependencyDirectivesScanner.h34 struct Token { struct
38 tok::TokenKind Kind; argument
41 Token(unsigned Offset, unsigned Length, tok::TokenKind Kind, in Token() function
47 bool is(tok::TokenKind K) const { return Kind == K; } in is() argument
48 bool isNot(tok::TokenKind K) const { return Kind != K; } in isNot() argument
49 bool isOneOf(tok::TokenKind K1, tok::TokenKind K2) const { in isOneOf() argument
52 template <typename... Ts> bool isOneOf(tok::TokenKind K1, Ts... Ks) const { in isOneOf() argument
H A DTokenConcatenation.h20 class Token; variable
H A DPragma.h26 class Token; variable
H A DTokenLexer.h24 class Token; variable
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp168 static Cursor lexName(Cursor C, MIToken &Token, MIToken::TokenKind Type, in lexName()
286 static Cursor maybeLexIdentifier(Cursor C, MIToken &Token) { in maybeLexIdentifier()
298 static Cursor maybeLexMachineBasicBlock(Cursor C, MIToken &Token, in maybeLexMachineBasicBlock()
333 static Cursor maybeLexIndex(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndex()
346 static Cursor maybeLexIndexAndName(Cursor C, MIToken &Token, StringRef Rule, in maybeLexIndexAndName()
369 static Cursor maybeLexJumpTableIndex(Cursor C, MIToken &Token) { in maybeLexJumpTableIndex()
373 static Cursor maybeLexStackObject(Cursor C, MIToken &Token) { in maybeLexStackObject()
377 static Cursor maybeLexFixedStackObject(Cursor C, MIToken &Token) { in maybeLexFixedStackObject()
381 static Cursor maybeLexConstantPoolItem(Cursor C, MIToken &Token) { in maybeLexConstantPoolItem()
385 static Cursor maybeLexSubRegisterIndex(Cursor C, MIToken &Token, in maybeLexSubRegisterIndex()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Format/
H A DMacroCallReconstructor.cpp55 forEachToken(Line, [&](FormatToken *Token, FormatToken *Parent, bool First) { in addLine()
74 void MacroCallReconstructor::add(FormatToken *Token, in add()
207 void MacroCallReconstructor::reconstruct(FormatToken *Token) { in reconstruct()
258 void MacroCallReconstructor::startReconstruction(FormatToken *Token) { in startReconstruction()
304 bool MacroCallReconstructor::reconstructActiveCallUntil(FormatToken *Token) { in reconstructActiveCallUntil()
318 void MacroCallReconstructor::endReconstruction(FormatToken *Token) { in endReconstruction()
327 FormatToken *Token = T->Tok; in endReconstruction() local
388 FormatToken *Token = ActiveExpansions.back().SpelledI->Tok; in processNextReconstructed() local
496 void MacroCallReconstructor::appendToken(FormatToken *Token, in appendToken()
H A DFormatToken.cpp94 void TokenRole::precomputeFormattingInfos(const FormatToken *Token) {} in precomputeFormattingInfos()
174 void CommaSeparatedList::precomputeFormattingInfos(const FormatToken *Token) { in precomputeFormattingInfos()
H A DBreakableToken.cpp219 bool switchesFormatting(const FormatToken &Token) { in switchesFormatting()
295 BreakableComment::BreakableComment(const FormatToken &Token, in BreakableComment()
367 const FormatToken &Token, unsigned StartColumn, in BreakableBlockComment()
752 const FormatToken &Token, unsigned StartColumn, bool InPPDirective, in BreakableLineCommentSection()
H A DDefinitionBlockSeparator.cpp85 const auto IsAccessSpecifierToken = [](const FormatToken *Token) { in separateBlocks()
H A DUnwrappedLineParser.cpp202 FormatToken *Token; member in clang::format::__anon1d1aefd40111::ScopedMacroState
818 for (const auto &Token : Tokens) { in mightFitOnOneLine() local
849 for (auto &Token : Tokens) { in mightFitOnOneLine() local
1444 if (auto Token = Tokens->peekNextToken(/*SkipComment=*/true); in parseModuleImport() local
2671 for (const auto &Token : llvm::reverse(Line.Tokens)) in getLastNonComment() local
/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DDataflowAnalysisContext.cpp163 AtomicBoolValue &Token, BoolValue &Constraint) { in addFlowConditionConstraint()
171 DataflowAnalysisContext::forkFlowCondition(AtomicBoolValue &Token) { in forkFlowCondition()
181 auto &Token = makeFlowConditionToken(); in joinFlowConditions() local
196 bool DataflowAnalysisContext::flowConditionImplies(AtomicBoolValue &Token, in flowConditionImplies()
209 bool DataflowAnalysisContext::flowConditionIsTautology(AtomicBoolValue &Token) { in flowConditionIsTautology()
226 AtomicBoolValue &Token, llvm::DenseSet<BoolValue *> &Constraints, in addTransitiveFlowConditionConstraints()
317 AtomicBoolValue &Token, in buildAndSubstituteFlowCondition()
329 AtomicBoolValue &Token, in buildAndSubstituteFlowConditionWithCache()
346 void DataflowAnalysisContext::dumpFlowCondition(AtomicBoolValue &Token) { in dumpFlowCondition()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DCOFFModuleDefinition.cpp51 struct Token { struct
52 explicit Token(Kind T = Unknown, StringRef S = "") : K(T), Value(S) {} in Token() function
53 Kind K;
54 StringRef Value;
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DVFABIDemangling.cpp104 const StringRef Token) { in tryParseLinearTokenWithRuntimeStep()
167 const StringRef Token) { in tryParseCompileTimeLinearToken()
458 VFParamKind VFABI::getVFParamKindFromString(const StringRef Token) { in getVFParamKindFromString()
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp104 void PPConditionalDirectiveRecord::Elifdef(SourceLocation Loc, const Token &, in Elifdef()
115 void PPConditionalDirectiveRecord::Elifndef(SourceLocation Loc, const Token &, in Elifndef()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DOperatorKinds.h23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ argument
/openbsd-src/gnu/usr.bin/perl/
H A Dperly.c99 # define YYDSYMPRINTF(Title, Token, Value) \ argument
214 # define YYDSYMPRINTF(Title, Token, Value) argument
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/
H A DTokenBufferTokenManager.h30 const auto *Token = getToken(I); in getText() local
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndexer.h31 class Token; variable
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp171 const Token & /*FilenameTok*/, in FileSkipped()
186 SourceLocation HashLoc, const Token & /*IncludeTok*/, in InclusionDirective()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DYAMLParser.cpp124 struct Token { struct
125 enum TokenKind {
149 } Kind = TK_Error;
153 StringRef Range;
156 std::string Value;
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DIssueHash.cpp157 Token Token; in NormalizeLine() local
/openbsd-src/gnu/llvm/llvm/lib/Target/M68k/AsmParser/
H A DM68kAsmParser.cpp127 Token, enumerator
135 StringRef Token; member
330 std::unique_ptr<M68kOperand> M68kOperand::createToken(StringRef Token, in createToken()
/openbsd-src/gnu/llvm/clang/utils/
H A Dtoken-delta.py98 class Token(object): class
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp163 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ in operationKindFromOverloadedOperator() argument
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h93 void UnLex(AsmToken const &Token) { in UnLex()

123456