Searched refs:ScopeName (Results 1 - 10 of 10) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DAttributes.cpp17 StringRef ScopeName = Scope ? Scope->getName() : ""; local
18 if (ScopeName == "__gnu__")
19 ScopeName = "gnu";
20 else if (ScopeName == "_Clang")
21 ScopeName = "clang";
39 normalizeAttrScopeName(StringRef ScopeName, argument
45 if (ScopeName == "__gnu__")
46 ScopeName = "gnu";
47 else if (ScopeName == "_Clang")
48 ScopeName
78 getParsedKind(const IdentifierInfo *Name, const IdentifierInfo *ScopeName, Syntax SyntaxUsed) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DAttributeCommonInfo.h63 const IdentifierInfo *ScopeName = nullptr; member in class:clang::AttributeCommonInfo
85 const IdentifierInfo *ScopeName, SourceRange AttrRange,
87 : AttrName(AttrName), ScopeName(ScopeName), AttrRange(AttrRange),
89 AttrKind(getParsedKind(AttrName, ScopeName, SyntaxUsed)),
93 const IdentifierInfo *ScopeName, SourceRange AttrRange,
95 : AttrName(AttrName), ScopeName(ScopeName), AttrRange(AttrRange),
100 const IdentifierInfo *ScopeName, SourceRange AttrRange,
103 : AttrName(AttrName), ScopeName(ScopeNam
84 AttributeCommonInfo(const IdentifierInfo *AttrName, const IdentifierInfo *ScopeName, SourceRange AttrRange, SourceLocation ScopeLoc, Syntax SyntaxUsed) argument
92 AttributeCommonInfo(const IdentifierInfo *AttrName, const IdentifierInfo *ScopeName, SourceRange AttrRange, SourceLocation ScopeLoc, Kind AttrKind, Syntax SyntaxUsed) argument
99 AttributeCommonInfo(const IdentifierInfo *AttrName, const IdentifierInfo *ScopeName, SourceRange AttrRange, SourceLocation ScopeLoc, Kind AttrKind, Syntax SyntaxUsed, unsigned Spelling) argument
[all...]
/freebsd-12-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnssearch.c221 char *ScopeName; local
223 ScopeName = AcpiNsGetNormalizedPathname (ParentNode, TRUE);
224 if (ScopeName)
228 ScopeName, ParentNode, ACPI_CAST_PTR (char, &TargetName),
231 ACPI_FREE (ScopeName);
H A Dnsinit.c854 char *ScopeName = AcpiNsGetNormalizedPathname (DeviceNode, TRUE); local
857 ScopeName));
858 ACPI_FREE (ScopeName);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp3986 IdentifierInfo *ScopeName) {
3988 ParsedAttr::getParsedKind(AttrName, ScopeName, ParsedAttr::AS_CXX11)) {
3996 return !ScopeName && AttrName->getName().equals("nodiscard");
3998 return !ScopeName && AttrName->getName().equals("maybe_unused");
4022 IdentifierInfo *ScopeName,
4032 if (!hasAttribute(LO.CPlusPlus ? AttrSyntax::CXX : AttrSyntax::C, ScopeName,
4040 if (ScopeName && (ScopeName->isStr("gnu") || ScopeName->isStr("__gnu__"))) {
4043 ParseGNUAttributeArgs(AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
3985 IsBuiltInOrStandardCXX11Attribute(IdentifierInfo *AttrName, IdentifierInfo *ScopeName) argument
4018 ParseCXX11AttributeArgs(IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc) argument
4148 IdentifierInfo *ScopeName = nullptr, *AttrName = nullptr; local
[all...]
H A DParseDecl.cpp305 IdentifierInfo *ScopeName,
324 ScopeName, ScopeLoc, T.get(), Syntax);
327 ScopeName, ScopeLoc, nullptr, 0, Syntax);
332 ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName,
350 ParsedAttr::getParsedKind(AttrName, ScopeName, Syntax);
414 ScopeName, ScopeLoc, TheParsedType, Syntax);
416 Attrs.addNew(AttrName, SourceRange(AttrLoc, RParen), ScopeName, ScopeLoc,
433 IdentifierInfo *ScopeName,
441 ParsedAttr::getParsedKind(AttrName, ScopeName, Syntax);
444 ParseAvailabilityAttribute(*AttrName, AttrNameLoc, Attrs, EndLoc, ScopeName,
301 ParseAttributeWithTypeArg(IdentifierInfo &AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
330 ParseAttributeArgsCommon( IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
429 ParseGNUAttributeArgs(IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax, Declarator *D) argument
484 ParseClangAttributeArgs( IdentifierInfo *AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
991 ParseAvailabilityAttribute(IdentifierInfo &Availability, SourceLocation AvailabilityLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
1226 ParseExternalSourceSymbolAttribute( IdentifierInfo &ExternalSourceSymbol, SourceLocation Loc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
1337 ParseObjCBridgeRelatedAttribute(IdentifierInfo &ObjCBridgeRelated, SourceLocation ObjCBridgeRelatedLoc, ParsedAttributes &attrs, SourceLocation *endLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
1560 ParseTypeTagForDatatypeAttribute(IdentifierInfo &AttrName, SourceLocation AttrNameLoc, ParsedAttributes &Attrs, SourceLocation *EndLoc, IdentifierInfo *ScopeName, SourceLocation ScopeLoc, ParsedAttr::Syntax Syntax) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DARMAttributeParser.cpp666 StringRef ScopeName, IndexName; local
670 ScopeName = "FileAttributes";
673 ScopeName = "SectionAttributes";
678 ScopeName = "SymbolAttributes";
688 DictScope ASS(*SW, ScopeName);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2524 IdentifierInfo *ScopeName, SourceLocation ScopeLoc,
2549 IdentifierInfo *ScopeName, SourceLocation ScopeLoc,
2556 IdentifierInfo *ScopeName, SourceLocation ScopeLoc,
2592 IdentifierInfo *ScopeName,
2641 IdentifierInfo *ScopeName,
2652 IdentifierInfo *ScopeName,
2660 IdentifierInfo *ScopeName,
2668 IdentifierInfo *ScopeName,
2675 SourceLocation *EndLoc, IdentifierInfo *ScopeName,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp289 StringRef ScopeName = Scope->getName(); local
290 if (!ScopeName.empty())
291 return ScopeName;
312 StringRef ScopeName = getPrettyScopeName(Scope); local
313 if (!ScopeName.empty())
314 QualifiedNameComponents.push_back(ScopeName);
368 std::string ScopeName = getFullyQualifiedName(Scope);
369 StringIdRecord SID(TypeIndex(), ScopeName); local
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2766 IdentifierInfo *ScopeName = Record.readIdentifier(); local
2773 AttributeCommonInfo Info(AttrName, ScopeName, AttrRange, ScopeLoc,

Completed in 139 milliseconds