Searched refs:Namespace (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h197 /// \param Namespace The namespace of the message directive.
200 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace, argument
207 StringRef Namespace) {
213 StringRef Namespace) {
217 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, argument
394 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
396 First->PragmaMessage(Loc, Namespace, Kind, Str);
397 Second->PragmaMessage(Loc, Namespace, Kind, Str);
400 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override {
401 First->PragmaDiagnosticPush(Loc, Namespace);
206 PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) argument
212 PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) argument
[all...]
/freebsd-11.0-release/contrib/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp63 const std::string &Namespace,
202 const std::string &Namespace,
220 OperandMap[OpList].push_back(Namespace + "::" + Inst->TheDef->getName());
239 const std::string &Namespace = Target.getInstNamespace(); local
246 initOperandMapData(NumberedInstructions, Namespace, Operands, OperandMap);
251 OS << "namespace " << Namespace << " {\n"; local
260 OS << "} // end namespace " << Namespace << "\n"; local
267 OS << "namespace " << Namespace << " {\n"; local
300 OS << "} // end namespace " << Namespace << "\n"; local
312 const std::string &Namespace local
200 initOperandMapData( const std::vector<const CodeGenInstruction *> &NumberedInstructions, const std::string &Namespace, std::map<std::string, unsigned> &Operands, OpNameMapTy &OperandMap) argument
318 OS << "namespace " << Namespace << " {\\n"; local
331 OS << "} // end namespace " << Namespace << "\\n"; local
575 std::string Namespace = Target.getInstNamespace(); local
583 OS << "namespace " << Namespace << " {\\n"; local
598 OS << "} // end " << Namespace << " namespace\\n"; local
[all...]
H A DRegisterInfoEmitter.cpp78 std::string Namespace = local
79 Registers.front().TheDef->getValueAsString("Namespace");
89 << "extern const MCRegisterClass " << Namespace local
92 if (!Namespace.empty())
93 OS << "namespace " << Namespace << " {\n"; local
102 if (!Namespace.empty())
113 if (!Namespace.empty())
114 OS << "namespace " << Namespace << " {\n"; local
120 if (!Namespace.empty())
129 if (!Namespace
130 OS << "namespace " << Namespace << " {\\n"; local
143 std::string Namespace = SubRegIndices.front().getNamespace(); local
145 OS << "namespace " << Namespace << " {\\n"; local
347 std::string Namespace = Regs.front().TheDef->getValueAsString("Namespace"); local
349 OS << "// " << Namespace << " Dwarf<->LLVM register mappings.\\n"; local
354 OS << "extern const MCRegisterInfo::DwarfLLVMRegPair " << Namespace; local
409 OS << "extern const MCRegisterInfo::DwarfLLVMRegPair " << Namespace; local
[all...]
H A DCodeGenTarget.cpp137 std::string Namespace; local
138 if (R->getValue("Namespace"))
139 Namespace = R->getValueAsString("Namespace");
140 if (Namespace.empty()) return R->getName();
141 return Namespace + "::" + R->getName();
168 if (Inst->Namespace != "TargetOpcode")
169 return Inst->Namespace;
316 assert(Instr->Namespace == "TargetOpcode" && "Bad namespace");
323 if (CGI->Namespace !
[all...]
H A DAsmWriterEmitter.cpp110 O << " case " << FirstInst.CGI->Namespace << "::"
113 O << " case " << AWI.CGI->Namespace << "::"
125 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
130 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
583 std::string Namespace = local
584 Registers.front().TheDef->getValueAsString("Namespace");
610 std::string Prefix = !Namespace.empty() ? Namespace + "::" : "";
H A DCodeGenRegisters.h57 std::string Namespace; member in class:llvm::CodeGenSubRegIndex
74 const std::string &getNamespace() const { return Namespace; }
302 std::string Namespace; member in class:llvm::CodeGenRegisterClass
H A DPseudoLoweringEmitter.cpp211 o << " case " << Source.Namespace << "::"
215 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
245 o << Reg->getValueAsString("Namespace") << "::"
H A DCodeGenInstruction.h210 std::string Namespace; // The namespace the instruction is in. member in class:llvm::CodeGenInstruction
H A DCodeGenRegisters.cpp36 if (R->getValue("Namespace"))
37 Namespace = R->getValueAsString("Namespace");
44 : TheDef(nullptr), Name(N), Namespace(Nspace), Size(-1), Offset(-1),
708 Namespace = R->getValueAsString("Namespace");
749 Namespace = Super.Namespace;
843 if (Namespace.empty())
846 return Namespace
1014 createSubRegIndex(StringRef Name, StringRef Namespace) argument
[all...]
H A DFixedLenDecoderEmitter.cpp101 StringRef Namespace) const;
699 StringRef Namespace) const {
700 OS.indent(Indentation) << "static const uint8_t DecoderTable" << Namespace
2262 if (Def->getValueAsString("Namespace") == "TargetOpcode" ||
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp132 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
135 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override;
136 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override;
137 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
387 StringRef Namespace,
393 if (!Namespace.empty())
394 OS << Namespace << ' '; local
426 PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) { argument
429 OS << "#pragma " << Namespace << " diagnostic push"; local
434 PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) { argument
386 PragmaMessage(SourceLocation Loc, StringRef Namespace, PragmaMessageKind Kind, StringRef Str) argument
437 OS << "#pragma " << Namespace << " diagnostic pop"; local
441 PragmaDiagnostic(SourceLocation Loc, StringRef Namespace, diag::Severity Map, StringRef Str) argument
447 OS << "#pragma " << Namespace << " diagnostic "; local
[all...]
H A DASTConsumers.cpp204 case Decl::Namespace: {
386 case Decl::Namespace:
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DNestedNameSpecifier.cpp62 assert(NS && "Namespace cannot be NULL");
78 assert(Alias && "Namespace alias cannot be NULL");
143 return isa<NamespaceDecl>(ND) ? Namespace : NamespaceAlias;
188 case Namespace:
218 case Namespace:
237 case Namespace:
264 case Namespace:
343 case NestedNameSpecifier::Namespace:
409 case NestedNameSpecifier::Namespace:
566 NamespaceDecl *Namespace,
565 Extend(ASTContext &Context, NamespaceDecl *Namespace, SourceLocation NamespaceLoc, SourceLocation ColonColonLoc) argument
[all...]
H A DDeclCXX.cpp2009 : NamedDecl(Namespace, DC, IdLoc, Id), DeclContext(Namespace),
2075 NamedDecl *Namespace) {
2077 if (NamespaceDecl *NS = dyn_cast_or_null<NamespaceDecl>(Namespace))
2078 Namespace = NS->getOriginalNamespace();
2080 QualifierLoc, IdentLoc, Namespace);
H A DComment.cpp227 case Decl::Namespace:
H A DDeclBase.cpp621 case Namespace:
963 case Decl::Namespace:
1020 if (DeclKind != Decl::Namespace) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DPragma.cpp727 /// If 'Namespace' is non-null, then it is a token required to exist on the
729 void Preprocessor::AddPragmaHandler(StringRef Namespace, argument
734 if (!Namespace.empty()) {
738 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) {
745 InsertNS = new PragmaNamespace(Namespace);
757 /// preprocessor. If \arg Namespace is non-null, then it should be the
760 void Preprocessor::RemovePragmaHandler(StringRef Namespace, argument
765 if (!Namespace.empty()) {
766 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace);
767 assert(Existing && "Namespace containin
967 const char *Namespace; member in struct:__anon3926::PragmaDiagnosticHandler
1186 const StringRef Namespace; member in struct:__anon3926::PragmaMessageHandler
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-enumerations.h254 Namespace, member in class:lldb_private::TypeValidatorResult::CompilerContextKind
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTCommon.cpp212 case Decl::Namespace:
272 case Decl::Namespace:
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DNestedNameSpecifier.h67 /// IdentifierInfo*, Namespace*, or Type*, depending on the kind of
78 Namespace, enumerator in enum:clang::NestedNameSpecifier::SpecifierKind
412 /// \param Namespace The namespace.
417 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
H A DDeclCXX.h2666 NamedDecl *Namespace; member in class:clang::NamespaceAliasDecl
2671 SourceLocation IdentLoc, NamedDecl *Namespace)
2674 QualifierLoc(QualifierLoc), Namespace(Namespace) {}
2690 NamedDecl *Namespace);
2721 if (NamespaceAliasDecl *AD = dyn_cast<NamespaceAliasDecl>(Namespace))
2724 return cast<NamespaceDecl>(Namespace);
2743 NamedDecl *getAliasedNamespace() const { return Namespace; }
2668 NamespaceAliasDecl(ASTContext &C, DeclContext *DC, SourceLocation NamespaceLoc, SourceLocation AliasLoc, IdentifierInfo *Alias, NestedNameSpecifierLoc QualifierLoc, SourceLocation IdentLoc, NamedDecl *Namespace) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangAttrEmitter.cpp38 const std::string &Namespace, bool KnownToGCC) :
39 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
47 NS = Spelling.getValueAsString("Namespace");
1158 std::string Namespace = Spellings[I].nameSpace(); local
1159 if (!Namespace.empty()) {
1160 Spelling += Namespace;
1172 std::string Namespace = Spellings[I].nameSpace(); local
1173 if (!Namespace.empty()) {
1174 Spelling += Namespace;
1308 std::string Namespace local
37 FlattenedSpelling(const std::string &Variety, const std::string &Name, const std::string &Namespace, bool KnownToGCC) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp136 case NestedNameSpecifier::Namespace:
296 // Namespace and namespace aliases are fine.
680 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(SD)) {
681 SS.Extend(Context, Namespace, IdentifierLoc, CCLoc);
1005 case NestedNameSpecifier::Namespace:
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp90 case Decl::Namespace:
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp328 context.push_back(CompilerContext(CompilerContextKind::Namespace, ConstString(GetName())));

Completed in 317 milliseconds

123