Searched refs:Spelling (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DTypeTraits.cpp19 #define TYPE_TRAIT_1(Spelling, Name, Key) #Name,
21 #define TYPE_TRAIT_2(Spelling, Name, Key) #Name,
23 #define TYPE_TRAIT_N(Spelling, Name, Key) #Name,
28 #define TYPE_TRAIT_1(Spelling, Name, Key) #Spelling,
30 #define TYPE_TRAIT_2(Spelling, Name, Key) #Spelling,
32 #define TYPE_TRAIT_N(Spelling, Name, Key) #Spelling,
37 #define ARRAY_TYPE_TRAIT(Spelling, Nam
[all...]
H A DExpressionTraits.cpp19 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Name,
24 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Spelling,
H A DIdentifierTable.cpp700 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
701 case OO_##Name: return Spelling;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeTraits.h22 #define TYPE_TRAIT_1(Spelling, Name, Key) UTT_##Name,
25 #define TYPE_TRAIT_1(Spelling, Name, Key) +1
28 #define TYPE_TRAIT_2(Spelling, Name, Key) BTT_##Name,
31 #define TYPE_TRAIT_2(Spelling, Name, Key) +1
34 #define TYPE_TRAIT_N(Spelling, Name, Key) TT_##Name,
37 #define TYPE_TRAIT_N(Spelling, Name, Key) +1
43 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) ATT_##Name,
46 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) +1
52 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) UETT_##Name,
53 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Nam
[all...]
H A DExpressionTraits.h22 #define EXPRESSION_TRAIT(Spelling, Name, Key) ET_##Name,
25 #define EXPRESSION_TRAIT(Spelling, Name, Key) +1
H A DAttrSubjectMatchRules.h20 #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) X,
H A DOperatorKinds.h23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
H A DAttributeCommonInfo.h102 unsigned Spelling)
105 SpellingIndex(Spelling) {}
119 unsigned Spelling)
121 AttrKind(K), SyntaxUsed(SyntaxUsed), SpellingIndex(Spelling) {}
168 "Spelling cannot be found");
99 AttributeCommonInfo(const IdentifierInfo *AttrName, const IdentifierInfo *ScopeName, SourceRange AttrRange, SourceLocation ScopeLoc, Kind AttrKind, Syntax SyntaxUsed, unsigned Spelling) argument
118 AttributeCommonInfo(SourceRange AttrRange, Kind K, Syntax SyntaxUsed, unsigned Spelling) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name,
31 #define UNARY_OPERATION(Name, Spelling) UO_##Name,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DArg.h44 StringRef Spelling; member in class:llvm::opt::Arg
67 Arg(const Option Opt, StringRef Spelling, unsigned Index,
69 Arg(const Option Opt, StringRef Spelling, unsigned Index,
71 Arg(const Option Opt, StringRef Spelling, unsigned Index,
85 StringRef getSpelling() const { return Spelling; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp111 StringRef Spelling = StringRef(Args.getArgString(Index), ArgSize); local
116 return new Arg(*this, Spelling, Index++);
120 return new Arg(*this, Spelling, Index++, Value);
125 Arg *A = new Arg(*this, Spelling, Index++);
161 return new Arg(*this, Spelling, Index - 2, Args.getArgString(Index - 1));
172 Arg *A = new Arg(*this, Spelling, Index - 1 - getNumArgs(),
183 return new Arg(*this, Spelling, Index++, Value);
192 return new Arg(*this, Spelling, Index - 2, Args.getArgString(Index - 1));
201 return new Arg(*this, Spelling, Index - 2,
209 Arg *A = new Arg(*this, Spelling, Inde
[all...]
H A DArg.cpp22 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
27 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
34 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false),
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DLookup.cpp127 static std::string disambiguateSpellingInScope(StringRef Spelling, argument
132 assert(QName.endswith(Spelling));
133 if (Spelling.startswith("::"))
134 return std::string(Spelling);
136 auto UnspelledSpecifier = QName.drop_back(Spelling.size());
151 // Lookup the first component of Spelling in all enclosing namespaces
173 std::string Disambiguated = std::string(Spelling);
/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp57 std::string Spelling = std::string(Tag.getValueAsString("Spelling")); local
69 StringMatcher::StringPair Match(Spelling, std::string(CLiteral.str()));
H A DClangCommentHTMLTagsEmitter.cpp26 Matches.emplace_back(std::string(Tag->getValueAsString("Spelling")),
44 std::string Spelling = std::string(Tag->getValueAsString("Spelling")); local
45 StringMatcher::StringPair Match(Spelling, "return true;");
H A DClangAttrEmitter.cpp57 explicit FlattenedSpelling(const Record &Spelling) argument
58 : V(std::string(Spelling.getValueAsString("Variety"))),
59 N(std::string(Spelling.getValueAsString("Name"))) {
63 NS = std::string(Spelling.getValueAsString("Namespace"));
79 for (const auto &Spelling : Spellings) {
80 StringRef Variety = Spelling->getValueAsString("Variety");
81 StringRef Name = Spelling->getValueAsString("Name");
85 if (Spelling->getValueAsBit("AllowInC"))
90 if (Spelling->getValueAsBit("AllowInC"))
93 Ret.push_back(FlattenedSpelling(*Spelling));
1428 llvm::SmallString<64> Spelling; local
1468 " OS << \\"" << Prefix << Spelling; local
1571 getSpellingListIndex(const std::vector<FlattenedSpelling> &SpellingList, const FlattenedSpelling &Spelling) argument
1650 const std::string &Spelling = S.name(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp90 const char *Spelling; local
91 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp80 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); local
85 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
H A DParseExprCXX.cpp2543 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2548 #define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
3639 #define TYPE_TRAIT_1(Spelling, Name, Key) \
3640 case tok::kw_ ## Spelling: return UTT_ ## Name;
3641 #define TYPE_TRAIT_2(Spelling, Name, Key) \
3642 case tok::kw_ ## Spelling: return BTT_ ## Name;
3644 #define TYPE_TRAIT_N(Spelling, Name, Key) \
3645 case tok::kw_ ## Spelling: return TT_ ## Name;
3654 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) \
3655 case tok::kw_##Spelling
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.cpp22 const char * const Spelling; member in struct:llvm::__anon4070::ModifierEntry
197 return Modifier->Spelling;
205 [&Name](ModifierEntry const &Mod) { return Mod.Spelling == Name; });
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp105 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) "UETT_" #Name,
106 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) "UETT_" #Name,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp646 #define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
647 #define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
659 #define ATTR_MATCH_RULE(Value, Spelling, IsAbstract)
660 #define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp376 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \
380 #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemberOnly)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp518 SourceLocation Spelling = local
520 return SM.createTokenSplitLoc(Spelling, Loc, Loc.getLocWithOffset(Length));
1370 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid); local
1373 NumericLiteralParser Literal(Spelling, Tok.getLocation(), getSourceManager(),
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp250 SourceLocation Spelling = SM.getSpellingLoc(Loc); local
253 if (Expansion != Spelling) {
256 JOS.attributeObject("spellingLoc", [Spelling, this] {
257 writeBareSourceLocation(Spelling, /*IsSpelling*/ true);
267 writeBareSourceLocation(Spelling, /*IsSpelling*/ true);

Completed in 133 milliseconds

12