Home
last modified time | relevance | path

Searched refs:Spelling (Results 1 – 25 of 86) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTypeTraits.cpp20 #define TYPE_TRAIT_1(Spelling, Name, Key) #Name, argument
22 #define TYPE_TRAIT_2(Spelling, Name, Key) #Name, argument
24 #define TYPE_TRAIT_N(Spelling, Name, Key) #Name, argument
29 #define TYPE_TRAIT_1(Spelling, Name, Key) #Spelling, argument
31 #define TYPE_TRAIT_2(Spelling, Name, Key) #Spelling, argument
33 #define TYPE_TRAIT_N(Spelling, Name, Key) #Spelling, argument
38 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
43 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) #Spelling, argument
48 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
49 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
[all …]
H A DExpressionTraits.cpp19 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Name, argument
24 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Spelling, argument
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeTraits.h22 #define TYPE_TRAIT_1(Spelling, Name, Key) UTT_##Name, argument
25 #define TYPE_TRAIT_1(Spelling, Name, Key) +1 argument
28 #define TYPE_TRAIT_2(Spelling, Name, Key) BTT_##Name, argument
31 #define TYPE_TRAIT_2(Spelling, Name, Key) +1 argument
34 #define TYPE_TRAIT_N(Spelling, Name, Key) TT_##Name, argument
37 #define TYPE_TRAIT_N(Spelling, Name, Key) +1 argument
43 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) ATT_##Name, argument
46 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) +1 argument
52 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) UETT_##Name, argument
53 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) UETT_##Name, argument
[all …]
H A DExpressionTraits.h22 #define EXPRESSION_TRAIT(Spelling, Name, Key) ET_##Name, argument
25 #define EXPRESSION_TRAIT(Spelling, Name, Key) +1 argument
H A DOperatorKinds.def26 /// Spelling: A string that provides a canonical spelling for the
50 # define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly)
54 # define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) \
55 OVERLOADED_OPERATOR(Name,Spelling,unknown,Unary,Binary,MemberOnly)
H A DOperatorKinds.h23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ argument
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DDeclarationFragments.h89 std::string Spelling; member
99 Fragment(StringRef Spelling, FragmentKind Kind, StringRef PreciseIdentifier, in Fragment()
101 : Spelling(Spelling), Kind(Kind), PreciseIdentifier(PreciseIdentifier), in Fragment()
138 DeclarationFragments &append(StringRef Spelling, FragmentKind Kind,
145 Fragments.back().Spelling.append(Spelling.data(), Spelling.size());
147 Fragments.emplace_back(Spelling, Kind, PreciseIdentifier, Declaration);
174 auto &TheirBackSpelling = OtherFrags.back().Spelling; in insert()
175 It->Spelling.reserve(It->Spelling.size() + TheirBackSpelling.size()); in insert()
176 It->Spelling.insert(It->Spelling.begin(), TheirBackSpelling.begin(), in insert()
186 auto &TheirFrontSpelling = OtherFrags.front().Spelling; in insert()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp111 StringRef Spelling, in acceptInternal()
113 const size_t SpellingSize = Spelling.size(); in acceptInternal()
119 return std::make_unique<Arg>(*this, Spelling, Index++); in acceptInternal()
123 return std::make_unique<Arg>(*this, Spelling, Index++, Value); in acceptInternal()
128 auto A = std::make_unique<Arg>(*this, Spelling, Index++); in acceptInternal()
163 return std::make_unique<Arg>(*this, Spelling, Index - 2, in acceptInternal()
174 auto A = std::make_unique<Arg>(*this, Spelling, Index - 1 - getNumArgs(), in acceptInternal()
184 return std::make_unique<Arg>(*this, Spelling, Index++, Value); in acceptInternal()
193 return std::make_unique<Arg>(*this, Spelling, Index - 2, in acceptInternal()
203 return std::make_unique<Arg>(*this, Spelling, Inde in acceptInternal()
109 acceptInternal(const ArgList & Args,StringRef Spelling,unsigned & Index) const acceptInternal() argument
[all...]
H A DArg.cpp22 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), in Arg()
27 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), in Arg()
34 : Opt(Opt), BaseArg(BaseArg), Spelling(S), Index(Index), Claimed(false), in Arg()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp155 #define BINARY_OPERATION(Name, Spelling) {Spelling, BO_##Name}, in operationKindFromOverloadedOperator() argument
159 #define UNARY_OPERATION(Name, Spelling) {Spelling, UO_##Name}, in operationKindFromOverloadedOperator() argument
164 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ in operationKindFromOverloadedOperator() argument
167 auto BinOpIt = BinOps.find(Spelling); \ in operationKindFromOverloadedOperator()
173 auto UnOpIt = UnOps.find(Spelling); \ in operationKindFromOverloadedOperator()
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DArg.h44 StringRef Spelling; variable
73 Arg(const Option Opt, StringRef Spelling, unsigned Index,
75 Arg(const Option Opt, StringRef Spelling, unsigned Index,
77 Arg(const Option Opt, StringRef Spelling, unsigned Index,
91 StringRef getSpelling() const { return Spelling; } in getSpelling()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenACCClause.h702 OpenACCCopyClause(OpenACCClauseKind Spelling, SourceLocation BeginLoc, in OpenACCCopyClause() argument
705 : OpenACCClauseWithVarList(Spelling, BeginLoc, LParenLoc, EndLoc) { in OpenACCCopyClause()
706 assert((Spelling == OpenACCClauseKind::Copy || in OpenACCCopyClause()
707 Spelling == OpenACCClauseKind::PCopy || in OpenACCCopyClause()
708 Spelling == OpenACCClauseKind::PresentOrCopy) && in OpenACCCopyClause()
722 Create(const ASTContext &C, OpenACCClauseKind Spelling,
732 OpenACCCopyInClause(OpenACCClauseKind Spelling, SourceLocation BeginLoc, in OpenACCCopyInClause() argument
735 : OpenACCClauseWithVarList(Spelling, BeginLoc, LParenLoc, EndLoc), in OpenACCCopyInClause()
737 assert((Spelling == OpenACCClauseKind::CopyIn || in OpenACCCopyInClause()
738 Spelling == OpenACCClauseKind::PCopyIn || in OpenACCCopyInClause()
[all …]
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, argument
31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, argument
H A DCommentHTMLTags.td2 string Spelling = spelling;
61 string Spelling = spelling;
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp62 explicit FlattenedSpelling(const Record &Spelling) in FlattenedSpelling() argument
63 : V(std::string(Spelling.getValueAsString("Variety"))), in FlattenedSpelling()
64 N(std::string(Spelling.getValueAsString("Name"))), in FlattenedSpelling()
65 OriginalSpelling(Spelling) { in FlattenedSpelling()
69 NS = std::string(Spelling.getValueAsString("Namespace")); in FlattenedSpelling()
86 for (const auto &Spelling : Spellings) { in GetFlattenedSpellings() local
87 StringRef Variety = Spelling->getValueAsString("Variety"); in GetFlattenedSpellings()
88 StringRef Name = Spelling->getValueAsString("Name"); in GetFlattenedSpellings()
90 Ret.emplace_back("GNU", std::string(Name), "", true, *Spelling); in GetFlattenedSpellings()
91 Ret.emplace_back("CXX11", std::string(Name), "gnu", true, *Spelling); in GetFlattenedSpellings()
[all …]
H A DClangBuiltinsEmitter.cpp245 const Record *Builtin, Twine Spelling, BuiltinType BT) { in EmitBuiltinDef() argument
247 OS << "#undef " << Spelling << '\n'; in EmitBuiltinDef()
266 OS << "(" << Spelling; in EmitBuiltinDef()
325 for (StringRef Spelling : Builtin->getValueAsListOfStrings("Spellings")) { in EmitBuiltin() local
327 (Templates.IsPrefix ? Affix + Spelling : Spelling + Affix).str(); in EmitBuiltin()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp42 tok::TokenKind K, StringRef Spelling) { in createLeaf() argument
44 FactoryImpl::lexBuffer(TBTM, llvm::MemoryBuffer::getMemBufferCopy(Spelling)) in createLeaf()
60 const auto *Spelling = tok::getPunctuatorSpelling(K); in createLeaf() local
61 if (!Spelling) in createLeaf()
62 Spelling = tok::getKeywordSpelling(K); in createLeaf()
63 assert(Spelling && in createLeaf()
65 return createLeaf(A, TBTM, K, Spelling); in createLeaf()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenACCClause.cpp260 OpenACCCopyClause::Create(const ASTContext &C, OpenACCClauseKind Spelling, in Create() argument
266 OpenACCCopyClause(Spelling, BeginLoc, LParenLoc, VarList, EndLoc); in Create()
270 OpenACCCopyInClause::Create(const ASTContext &C, OpenACCClauseKind Spelling, in Create() argument
276 return new (Mem) OpenACCCopyInClause(Spelling, BeginLoc, LParenLoc, in Create()
281 OpenACCCopyOutClause::Create(const ASTContext &C, OpenACCClauseKind Spelling, in Create() argument
287 return new (Mem) OpenACCCopyOutClause(Spelling, BeginLoc, LParenLoc, IsZero, in Create()
292 OpenACCCreateClause::Create(const ASTContext &C, OpenACCClauseKind Spelling, in Create() argument
298 return new (Mem) OpenACCCreateClause(Spelling, BeginLoc, LParenLoc, IsZero, in Create()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DDeclarationFragments.cpp73 if (Last.Spelling.back() != Character) { // avoid duplicates at end in appendUnduplicatedTextCharacter()
74 Last.Spelling.push_back(Character); in appendUnduplicatedTextCharacter()
78 Fragments.back().Spelling.push_back(Character); in appendUnduplicatedTextCharacter()
98 if (Last.Kind == FragmentKind::Text && Last.Spelling.back() == ';') in removeTrailingSemicolon()
99 Last.Spelling.pop_back(); in removeTrailingSemicolon()
580 if (StringRef(ArgumentFragment.begin()->Spelling) in getFragmentsForVarTemplate()
583 ArgumentFragment.begin()->Spelling.swap(ProperArgName); in getFragmentsForVarTemplate()
613 if (StringRef(TypeFragments.begin()->Spelling) in getFragmentsForParam()
616 TypeFragments.begin()->Spelling.swap(ProperArgName); in getFragmentsForParam()
705 if (StringRef(ReturnValueFragment.begin()->Spelling) in getFragmentsForFunction()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.cpp21 const char *const Spelling; member
203 return Modifier->Spelling; in getName()
211 return Mod.Spelling == Name; in getKindByName()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaHLSL.h45 HLSLParamModifierAttr::Spelling Spelling);
/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp90 const char *Spelling; in AddTokenBefore() local
91 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling)); in AddTokenBefore()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp81 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); in print() local
86 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n"; in print()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp1607 #define TYPE_TRAIT_1(Spelling, Name, Key) \ in IsBuiltinTrait() argument
1608 case tok::kw_##Spelling: \ in IsBuiltinTrait()
1610 #define TYPE_TRAIT_2(Spelling, Name, Key) \ in IsBuiltinTrait() argument
1611 case tok::kw_##Spelling: \ in IsBuiltinTrait()
1613 #define TYPE_TRAIT_N(Spelling, Name, Key) \ in IsBuiltinTrait() argument
1614 case tok::kw_##Spelling: \ in IsBuiltinTrait()
1616 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) \ in IsBuiltinTrait() argument
1617 case tok::kw_##Spelling: \ in IsBuiltinTrait()
1619 #define EXPRESSION_TRAIT(Spelling, Name, Key) \ in IsBuiltinTrait() argument
1620 case tok::kw_##Spelling: \ in IsBuiltinTrait()
[all …]
/freebsd/crypto/heimdal/
H A DChangeLog.20061362 * lib/krb5/krb5_set_default_realm.3: Spelling/mdoc from Björn
1365 * lib/krb5/krb5_rcache.3: Spelling/mdoc from Björn Sandell
1367 * lib/krb5/krb5_keytab.3: Spelling/mdoc from Björn Sandell
1369 * lib/krb5/krb5_get_in_cred.3: Spelling/mdoc from Björn Sandell
1371 * lib/krb5/krb5_expand_hostname.3: Spelling/mdoc from Björn
1374 * lib/krb5/krb5_c_make_checksum.3: Spelling/mdoc from Björn
1443 * lib/krb5/krb5_warn.3: Spelling/mdoc changes, from Björn Sandell.
1445 * lib/krb5/krb5_verify_user.3: Spelling/mdoc changes, from Björn
1448 * lib/krb5/krb5_verify_init_creds.3: Spelling/mdoc changes, from
1451 * lib/krb5/krb5_timeofday.3: Spelling/mdoc changes, from Björn
[all …]

1234