Home
last modified time | relevance | path

Searched defs:Spelling (Results 1 – 25 of 49) sorted by relevance

12

/freebsd-src/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 DAttrSubjectMatchRules.h22 #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) X, argument
25 #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) +1 argument
H A DParsedAttrInfo.h66 struct Spelling { struct
67 AttributeCommonInfo::Syntax Syntax;
68 const char *NormalizedFullName;
H A DOperatorKinds.h23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ argument
/freebsd-src/contrib/llvm-project/clang/lib/Basic/
H A DTypeTraits.cpp19 TYPE_TRAIT_1(Spelling,Name,Key) global() argument
21 TYPE_TRAIT_2(Spelling,Name,Key) global() argument
23 TYPE_TRAIT_N(Spelling,Name,Key) global() argument
28 TYPE_TRAIT_1(Spelling,Name,Key) global() argument
30 TYPE_TRAIT_2(Spelling,Name,Key) global() argument
32 TYPE_TRAIT_N(Spelling,Name,Key) global() argument
37 ARRAY_TYPE_TRAIT(Spelling,Name,Key) global() argument
42 ARRAY_TYPE_TRAIT(Spelling,Name,Key) global() argument
47 UNARY_EXPR_OR_TYPE_TRAIT(Spelling,Name,Key) global() argument
48 CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling,Name,Key) global() argument
53 UNARY_EXPR_OR_TYPE_TRAIT(Spelling,Name,Key) global() argument
54 CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling,Name,Key) global() argument
59 TYPE_TRAIT_1(Spelling,Name,Key) global() argument
61 TYPE_TRAIT_2(Spelling,Name,Key) global() argument
63 TYPE_TRAIT_N(Spelling,Name,Key) global() argument
[all...]
H A DExpressionTraits.cpp19 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Name, argument
24 #define EXPRESSION_TRAIT(Spelling, Name, Key) #Spelling, argument
/freebsd-src/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.h26 #define BINARY_OPERATION(Name, Spelling) BO_##Name, argument
31 #define UNARY_OPERATION(Name, Spelling) UO_##Name, argument
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCheckerHelpers.cpp154 BINARY_OPERATION(Name,Spelling) operationKindFromOverloadedOperator() argument
158 UNARY_OPERATION(Name,Spelling) operationKindFromOverloadedOperator() argument
163 OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) operationKindFromOverloadedOperator() argument
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp42 tok::TokenKind K, StringRef Spelling) { in createLeaf()
60 const auto *Spelling = tok::getPunctuatorSpelling(K); in createLeaf() local
/freebsd-src/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.cpp103 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) "UETT_" #Name, in getBestGuess() argument
104 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) "UETT_" #Name, in getBestGuess() argument
/freebsd-src/contrib/llvm-project/clang/utils/TableGen/
H A DClangCommentHTMLTagsEmitter.cpp44 std::string Spelling = std::string(Tag->getValueAsString("Spelling")); in EmitClangCommentHTMLTagsProperties() local
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp57 std::string Spelling = std::string(Tag.getValueAsString("Spelling")); in EmitClangCommentHTMLNamedCharacterReferences() local
H A DClangAttrEmitter.cpp62 explicit FlattenedSpelling(const Record &Spelling) in FlattenedSpelling() argument
86 for (const auto &Spelling : Spellings) { in GetFlattenedSpellings() local
1588 llvm::SmallString<64> Spelling; writePrettyPrintFunction() local
1702 getSpellingListIndex(const std::vector<FlattenedSpelling> & SpellingList,const FlattenedSpelling & Spelling) getSpellingListIndex() argument
1749 for (const auto &Spelling : llvm::drop_begin(Spellings)) { SpellingNamesAreCommon() local
1779 const std::string &Spelling = S.name(); CreateSemanticSpellings() local
2494 emitFormInitializer(raw_ostream & OS,const FlattenedSpelling & Spelling,StringRef SpellingIndex) emitFormInitializer() argument
3545 for (const auto &Spelling : GetFlattenedSpellings(*TargetSpelling)) { GenerateHasAttrSpellingStringSwitch() local
3655 __anon575287d11902(const char *Spelling, const std::map< std::string, std::vector<std::pair<const Record *, FlattenedSpelling>>> &List) EmitClangAttrHasAttrImpl() argument
4547 std::string Spelling; EmitClangAttrParsedAttrImpl() local
4698 std::string Spelling; EmitClangAttrParsedAttrKinds() local
4887 add(const Record & Attr,FlattenedSpelling Spelling) add() argument
4968 std::string Spelling = GetAttributeHeadingAndSpellings() local
5015 for (StringRef Spelling : Doc.SupportedSpellings[K]) { WriteDocumentation() local
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Rewrite/
H A DTokenRewriter.cpp90 const char *Spelling; in AddTokenBefore() local
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Option/
H A DArg.h44 StringRef Spelling; variable
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.cpp22 const char *const Spelling; global() member
/freebsd-src/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp111 StringRef Spelling, in acceptInternal()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp453 #define OVERLOADED_OPERATOR(Name, Spelling, Token, Unary, Binary, MemberOnly) \ in ConsumeOperator() argument
457 #define OVERLOADED_OPERATOR_MULTI(Name, Spelling, Unary, Binary, MemberOnly) in ConsumeOperator() argument
/freebsd-src/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp81 const char *Spelling = SM.getCharacterData(Tok.getLocation(), &Invalid); in print() local
H A DParseExprCXX.cpp2663 OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) ParseUnqualifiedIdOperator() argument
2668 OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly) ParseUnqualifiedIdOperator() argument
3779 TYPE_TRAIT_1(Spelling,Name,Key) TypeTraitFromTokKind() argument
3781 TYPE_TRAIT_2(Spelling,Name,Key) TypeTraitFromTokKind() argument
3784 TYPE_TRAIT_N(Spelling,Name,Key) TypeTraitFromTokKind() argument
3794 ARRAY_TYPE_TRAIT(Spelling,Name,Key) ArrayTypeTraitFromTokKind() argument
3805 EXPRESSION_TRAIT(Spelling,Name,Key) ExpressionTraitFromTokKind() argument
[all...]
H A DParseTentative.cpp970 OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemOnly) TryParseOperatorId() argument
972 OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemOnly) TryParseOperatorId() argument
/freebsd-src/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DLookup.cpp127 static std::string disambiguateSpellingInScope(StringRef Spelling, in disambiguateSpellingInScope()
/freebsd-src/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp875 ATTR_MATCH_RULE(Value,Spelling,IsAbstract) getParentAttrMatcherRule() argument
876 ATTR_MATCH_SUB_RULE(Value,Spelling,IsAbstract,Parent,IsNegated) getParentAttrMatcherRule() argument
888 ATTR_MATCH_RULE(Value,Spelling,IsAbstract) isNegatedAttrMatcherSubRule() argument
889 ATTR_MATCH_SUB_RULE(Value,Spelling,IsAbstract,Parent,IsNegated) isNegatedAttrMatcherSubRule() argument
/freebsd-src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DDeclarationFragments.h89 std::string Spelling; member
[all...]

12