Home
last modified time | relevance | path

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

123

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
HDOption.cpp111 StringRef Spelling = StringRef(Args.getArgString(Index), ArgSize); in acceptInternal() local
116 return new Arg(*this, Spelling, Index++); in acceptInternal()
120 return new Arg(*this, Spelling, Index++, Value); in acceptInternal()
125 Arg *A = new Arg(*this, Spelling, Index++); in acceptInternal()
161 return new Arg(*this, Spelling, Index - 2, Args.getArgString(Index - 1)); in acceptInternal()
172 Arg *A = new Arg(*this, Spelling, Index - 1 - getNumArgs(), in acceptInternal()
183 return new Arg(*this, Spelling, Index++, Value); in acceptInternal()
192 return new Arg(*this, Spelling, Index - 2, Args.getArgString(Index - 1)); in acceptInternal()
201 return new Arg(*this, Spelling, Index - 2, in acceptInternal()
209 Arg *A = new Arg(*this, Spelling, Index++); in acceptInternal()
[all …]
HDArg.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-11-stable/contrib/llvm-project/llvm/include/llvm/Option/
HDArg.h44 StringRef Spelling; variable
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; } in getSpelling()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
HDLookup.cpp125 static std::string disambiguateSpellingInScope(StringRef Spelling, in disambiguateSpellingInScope() argument
130 assert(QName.endswith(Spelling)); in disambiguateSpellingInScope()
131 if (Spelling.startswith("::")) in disambiguateSpellingInScope()
132 return Spelling; in disambiguateSpellingInScope()
134 auto UnspelledSpecifier = QName.drop_back(Spelling.size()); in disambiguateSpellingInScope()
171 std::string Disambiguated = Spelling; in disambiguateSpellingInScope()
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
HDClangAttrEmitter.cpp57 explicit FlattenedSpelling(const Record &Spelling) : in FlattenedSpelling() argument
58 V(Spelling.getValueAsString("Variety")), in FlattenedSpelling()
59 N(Spelling.getValueAsString("Name")) { in FlattenedSpelling()
64 NS = Spelling.getValueAsString("Namespace"); in FlattenedSpelling()
66 K = Spelling.getValueAsBitOrUnset("KnownToGCC", Unset); in FlattenedSpelling()
82 for (const auto &Spelling : Spellings) { in GetFlattenedSpellings() local
83 StringRef Variety = Spelling->getValueAsString("Variety"); in GetFlattenedSpellings()
84 StringRef Name = Spelling->getValueAsString("Name"); in GetFlattenedSpellings()
92 if (Spelling->getValueAsBit("AllowInC")) in GetFlattenedSpellings()
95 Ret.push_back(FlattenedSpelling(*Spelling)); in GetFlattenedSpellings()
[all …]
HDClangCommentHTMLTagsEmitter.cpp43 std::string Spelling = Tag->getValueAsString("Spelling"); in EmitClangCommentHTMLTagsProperties() local
44 StringMatcher::StringPair Match(Spelling, "return true;"); in EmitClangCommentHTMLTagsProperties()
HDClangCommentHTMLNamedCharacterReferenceEmitter.cpp57 std::string Spelling = Tag.getValueAsString("Spelling"); in EmitClangCommentHTMLNamedCharacterReferences() local
69 StringMatcher::StringPair Match(Spelling, CLiteral.str()); in EmitClangCommentHTMLNamedCharacterReferences()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDAttributeCommonInfo.h102 unsigned Spelling) in AttributeCommonInfo() argument
105 SpellingIndex(Spelling) {} in AttributeCommonInfo()
119 unsigned Spelling) in AttributeCommonInfo() argument
121 AttrKind(K), SyntaxUsed(SyntaxUsed), SpellingIndex(Spelling) {} in AttributeCommonInfo()
HDOperatorKinds.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)
HDAttrSubjectMatchRules.h20 #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) X, argument
HDOperatorKinds.h23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, argument
31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, argument
HDCommentHTMLTags.td2 string Spelling = spelling;
61 string Spelling = spelling;
HDOperationKinds.def25 /// Spelling: A string that provides a canonical spelling for the operation.
32 # define BINARY_OPERATION(Name, Spelling)
36 # define UNARY_OPERATION(Name, Spelling)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
HDAVRMCExpr.cpp22 const char * const Spelling; member
197 return Modifier->Spelling; in getName()
205 [&Name](ModifierEntry const &Mod) { return Mod.Spelling == Name; }); in getKindByName()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
HDTokenRewriter.cpp90 const char *Spelling; in AddTokenBefore() local
91 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling)); in AddTokenBefore()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
HDParseAST.cpp80 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); in print() local
85 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n"; in print()
HDParseExprCXX.cpp2505 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ in ParseUnqualifiedIdOperator() argument
2510 #define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) in ParseUnqualifiedIdOperator() argument
3568 #define TYPE_TRAIT_1(Spelling, Name, Key) \ in TypeTraitFromTokKind() argument
3569 case tok::kw_ ## Spelling: return UTT_ ## Name; in TypeTraitFromTokKind()
3570 #define TYPE_TRAIT_2(Spelling, Name, Key) \ in TypeTraitFromTokKind() argument
3571 case tok::kw_ ## Spelling: return BTT_ ## Name; in TypeTraitFromTokKind()
3573 #define TYPE_TRAIT_N(Spelling, Name, Key) \ in TypeTraitFromTokKind() argument
3574 case tok::kw_ ## Spelling: return TT_ ## Name; in TypeTraitFromTokKind()
3598 #define TYPE_TRAIT(N,Spelling,K) case tok::kw_##Spelling: return N; in TypeTraitArity() argument
HDParseTentative.cpp835 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemOnly) \ in TryParseOperatorId() argument
837 #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemOnly) in TryParseOperatorId() argument
1104 #define TYPE_TRAIT(N,Spelling,K) \ in isExpressionOrTypeSpecifierSimple() argument
1105 case tok::kw_##Spelling: in isExpressionOrTypeSpecifierSimple()
/freebsd-11-stable/crypto/heimdal/
HDChangeLog.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 …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
HDLexer.cpp271 const LangOptions &LangOpts, char *Spelling) { in getSpellingSlow() argument
281 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts); in getSpellingSlow()
284 if (Spelling[Length - 1] == '"') in getSpellingSlow()
292 Spelling[Length - 2] == 'R' && Spelling[Length - 1] == '"') { in getSpellingSlow()
300 memcpy(Spelling + Length, BufPtr, RawLength); in getSpellingSlow()
310 Spelling[Length++] = Lexer::getCharAndSizeNoWarn(BufPtr, Size, LangOpts); in getSpellingSlow()
2398 std::string Spelling = PP->getSpelling(Result, &Invalid); in SaveLineComment() local
2402 assert(Spelling[0] == '/' && Spelling[1] == '/' && "Not line comment?"); in SaveLineComment()
2403 Spelling[1] = '*'; // Change prefix to "/*". in SaveLineComment()
2404 Spelling += "*/"; // add suffix. in SaveLineComment()
[all …]
HDPreprocessor.cpp516 SourceLocation Spelling = in SplitToken() local
518 return SM.createTokenSplitLoc(Spelling, Loc, Loc.getLocWithOffset(Length)); in SplitToken()
1350 StringRef Spelling = getSpelling(Tok, IntegerBuffer, &NumberInvalid); in parseSimpleIntegerLiteral() local
1353 NumericLiteralParser Literal(Spelling, Tok.getLocation(), *this); in parseSimpleIntegerLiteral()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaAttr.cpp606 #define ATTR_MATCH_RULE(Value, Spelling, IsAbstract) in getParentAttrMatcherRule() argument
607 #define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \ in getParentAttrMatcherRule() argument
619 #define ATTR_MATCH_RULE(Value, Spelling, IsAbstract) in isNegatedAttrMatcherSubRule() argument
620 #define ATTR_MATCH_SUB_RULE(Value, Spelling, IsAbstract, Parent, IsNegated) \ in isNegatedAttrMatcherSubRule() argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
HDCPlusPlusNameParser.cpp345 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ in ConsumeOperator() argument
349 #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemberOnly) in ConsumeOperator() argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
HDIdentifierTable.cpp691 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ in getOperatorSpelling() argument
692 case OO_##Name: return Spelling; in getOperatorSpelling()

123