Home
last modified time | relevance | path

Searched refs:QualName (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSectionXCOFF.h36 MCSymbolXCOFF *const QualName; variable
43 XCOFF::SymbolType ST, SectionKind K, MCSymbolXCOFF *QualName, in MCSectionXCOFF() argument
47 CsectProp(XCOFF::CsectProperties(SMC, ST)), QualName(QualName), in MCSectionXCOFF()
53 assert(QualName != nullptr && "QualName is needed."); in MCSectionXCOFF()
58 QualName->setRepresentedCsect(this); in MCSectionXCOFF()
59 QualName->setStorageClass(XCOFF::C_HIDEXT); in MCSectionXCOFF()
65 MCSectionXCOFF(StringRef Name, SectionKind K, MCSymbolXCOFF *QualName, in MCSectionXCOFF() argument
69 : MCSection(SV_XCOFF, Name, K, Begin), QualName(QualName), in MCSectionXCOFF()
72 assert(QualName != nullptr && "QualName is needed."); in MCSectionXCOFF()
75 QualName->setRepresentedCsect(this); in MCSectionXCOFF()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp68 std::string QualName; in reportGlobalToASan() local
69 llvm::raw_string_ostream OS(QualName); in reportGlobalToASan()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp745 MCSymbolXCOFF *QualName = nullptr; in getXCOFFSection() local
748 QualName = cast<MCSymbolXCOFF>(getOrCreateSymbol(CachedName)); in getXCOFFSection()
750 QualName = cast<MCSymbolXCOFF>(getOrCreateSymbol( in getXCOFFSection()
763 MCSectionXCOFF(QualName->getUnqualifiedName(), Kind, QualName, in getXCOFFSection()
768 MCSectionXCOFF(QualName->getUnqualifiedName(), CsectProp->MappingClass, in getXCOFFSection()
769 CsectProp->Type, Kind, QualName, Begin, CachedName, in getXCOFFSection()
H A DMCSectionXCOFF.cpp21 OS << "\t.csect " << QualName->getName() << "," << Log2_32(getAlignment()) in printCsectDirective()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DItaniumDemangle.cpp138 struct QualName { Qualifiers Q; const char *Name; } Names[] = { in print() struct
143 for (QualName Name : Names) { in print()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp1567 std::string QualName; in getQualifiedNameAsString() local
1568 llvm::raw_string_ostream OS(QualName); in getQualifiedNameAsString()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp10232 [DiagID, &S, &DiagOccured](DeclSpec::TQ, StringRef QualName, in checkMethodTypeQualifiers()
10238 S.Diag(SL, DiagID) << QualName << SourceRange(SL); in checkMethodTypeQualifiers()
H A DSemaType.cpp5564 [&](DeclSpec::TQ TypeQual, StringRef QualName, in GetFullTypeForDeclarator()