HomeSort by: relevance | last modified time | path
    Searched refs:ParsedAttrInfo (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
ParsedAttr.cpp 112 const ParsedAttrInfo &ParsedAttrInfo::get(const AttributeCommonInfo &A) {
113 // If we have a ParsedAttrInfo for this ParsedAttr then return that.
117 // If this is an ignored attribute then return an appropriate ParsedAttrInfo.
118 static const ParsedAttrInfo IgnoredParsedAttrInfo(
125 static llvm::ManagedStatic<std::list<std::unique_ptr<ParsedAttrInfo>>>
131 // Search for a ParsedAttrInfo whose name and syntax match.
142 // If we failed to find a match then return a default ParsedAttrInfo.
143 static const ParsedAttrInfo DefaultParsedAttrInfo(
SemaDeclAttr.cpp 7708 if (AL.getInfo().handleDeclAttribute(S, D, AL) != ParsedAttrInfo::NotHandled)
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedAttr.h 45 struct ParsedAttrInfo {
71 ParsedAttrInfo(AttributeCommonInfo::Kind AttrKind =
77 virtual ~ParsedAttrInfo() = default;
119 /// If this ParsedAttrInfo knows how to handle this ParsedAttr applied to this
127 static const ParsedAttrInfo &get(const AttributeCommonInfo &A);
130 typedef llvm::Registry<ParsedAttrInfo> ParsedAttrInfoRegistry;
275 const ParsedAttrInfo &Info;
304 Info(ParsedAttrInfo::get(*this)) {
323 Info(ParsedAttrInfo::get(*this)) {
340 IsPragmaClangAttribute(false), Info(ParsedAttrInfo::get(*this))
    [all...]
  /src/external/apache2/llvm/dist/clang/examples/Attribute/
Attribute.cpp 24 struct ExampleAttrInfo : public ParsedAttrInfo {
28 // `ParsedAttrInfo` can hold, we will not use that much in this example.
  /src/external/apache2/llvm/dist/clang/examples/CallSuperAttribute/
CallSuperAttrInfo.cpp 156 struct CallSuperAttrInfo : public ParsedAttrInfo {

Completed in 23 milliseconds