HomeSort by: relevance | last modified time | path
    Searched defs:Namespace (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NestedNameSpecifier.h 28 namespace clang {
46 /// specifiers, each of which can be a namespace, type, identifier
49 /// nested-namespace-specifier.
72 /// IdentifierInfo*, Namespace*, or Type*, depending on the kind of
83 /// A namespace, stored as a NamespaceDecl*.
84 Namespace,
86 /// A namespace alias, stored as a NamespaceAliasDecl*.
129 /// Builds a nested name specifier that names a namespace.
134 /// Builds a nested name specifier that names a namespace alias.
183 /// Retrieve the namespace stored in this nested nam
    [all...]
DeclCXX.h 54 namespace clang {
2873 /// using namespace std;
2883 /// The location of the \c namespace keyword.
2886 /// The nested-name-specifier that precedes the namespace.
2889 /// The namespace nominated by this using-directive.
2893 /// namespace.
2923 /// name of the namespace, with source-location information.
2927 /// name of the namespace.
2937 /// Returns the namespace nominated by this using-directive.
2945 /// its nominated namespace
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenInstruction.h 24 namespace llvm {
221 StringRef Namespace; // The namespace the instruction is in.
CodeGenMapTable.cpp 81 using namespace llvm;
86 namespace {
161 } // end anonymous namespace
170 namespace {
219 } // end anonymous namespace
364 StringRef Namespace = Target.getInstNamespace();
384 OutStr += Namespace;
391 OS << " { " << Namespace << "::" << CurInstr->getName();
398 OS << " { " << Namespace << "::" << "INSTRUCTION_LIST_END, ";
399 OS << Namespace << "::" << "INSTRUCTION_LIST_END }"
    [all...]
CodeGenTarget.cpp 28 using namespace llvm;
236 /// namespace qualifier if the record contains one.
239 std::string Namespace;
240 if (R->getValue("Namespace"))
241 Namespace = std::string(R->getValueAsString("Namespace"));
242 if (Namespace.empty())
244 return Namespace + "::" + R->getName().str();
266 /// namespace. The namespace is cached because it is requested multiple times
    [all...]
InstrInfoEmitter.cpp 37 using namespace llvm;
39 namespace {
86 StringRef Namespace,
93 raw_ostream &OS, StringRef Namespace,
96 raw_ostream &OS, StringRef Namespace,
104 } // end anonymous namespace
237 StringRef Namespace,
254 OperandMap[OpList].push_back(Namespace.str() + "::" +
263 /// - An enum in the llvm::TargetNamespace::OpName namespace, with one entry
273 StringRef Namespace = Target.getInstNamespace()
    [all...]
RISCVCompressInstEmitter.cpp 77 using namespace llvm;
81 namespace {
139 } // End anonymous namespace.
559 StringRef Namespace = Target.getName();
660 CaseStream.indent(4) << "case " + Namespace + "::" + CurOp + ": {\n";
679 CondStream.indent(6) << Not << "STI.getFeatureBits()[" << Namespace
690 CondStream << Not << "STI.getFeatureBits()[" << Namespace
723 << "(MI.getOperand(" << OpNo << ").getReg() == " << Namespace
731 CodeStream.indent(6) << "OutInst.setOpcode(" << Namespace
747 CondStream.indent(6) << "(MRI.getRegClass(" << Namespace
    [all...]
AsmWriterEmitter.cpp 51 using namespace llvm;
55 namespace {
85 } // end anonymous namespace
131 O << " case " << FirstInst.CGI->Namespace << "::"
134 O << " case " << AWI.CGI->Namespace << "::"
146 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace.str() + "::" +
151 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace.str()+"::" +
609 StringRef Namespace = Registers.front().TheDef->getValueAsString("Namespace");
636 if (!Namespace.empty()
    [all...]
CodeGenRegisters.h 42 namespace llvm {
66 std::string Namespace;
92 const std::string &getNamespace() const { return Namespace; }
328 StringRef Namespace;
538 CodeGenSubRegIndex *createSubRegIndex(StringRef Name, StringRef NameSpace);
804 } // end namespace llvm
RegisterInfoEmitter.cpp 45 using namespace llvm;
54 namespace {
99 } // end anonymous namespace
109 StringRef Namespace = Registers.front().TheDef->getValueAsString("Namespace");
116 OS << "namespace llvm {\n\n";
122 if (!Namespace.empty())
123 OS << "namespace " << Namespace << " {\n";
132 if (!Namespace.empty()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexSymbol.h 17 namespace clang {
21 namespace index {
27 Namespace,
171 } // namespace index
172 } // namespace clang
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 30 using namespace clang;
78 namespace {
135 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
138 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override;
139 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override;
140 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
185 } // end anonymous namespace
446 StringRef Namespace,
452 if (!Namespace.empty())
453 OS << Namespace << ' ';
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Pragma.cpp 55 using namespace clang;
93 "A handler with this name is already registered in this namespace");
100 "Handler not registered in this namespace");
108 // Read the 'namespace' that the directive is in, e.g. STDC. Do not macro
130 namespace {
162 } // namespace
175 // Invoke the first level of pragma handlers which reads the namespace id.
893 /// If 'Namespace' is non-null, then it is a token required to exist on the
895 void Preprocessor::AddPragmaHandler(StringRef Namespace,
899 // If this is specified to be in a namespace, step down into it
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParsePragma.cpp 25 using namespace clang;
27 namespace {
301 } // end namespace
574 namespace {
580 } // end anonymous namespace
763 namespace {
1085 namespace {
1091 } // end anonymous namespace
1298 namespace {
1303 const IdentifierInfo *Namespace = nullptr
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp 45 using namespace llvm;
47 namespace {
55 const std::string &Namespace, bool KnownToGCC) :
56 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
63 NS = std::string(Spelling.getValueAsString("Namespace"));
68 const std::string &nameSpace() const { return NS; }
72 } // end anonymous namespace
195 namespace {
1296 } // end anonymous namespace
1439 // The actual spelling of the name and namespace (if applicable
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 53 using namespace clang;
54 using namespace sema;
65 namespace {
122 } // end anonymous namespace
168 namespace {
174 } // end anonymous namespace
1323 // If a variable member of a namespace is defined outside of the
1324 // scope of its namespace then any name used in the definition of
1327 // namespace.
3052 namespace {
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 72 namespace llvm {
80 namespace clang {
215 namespace sema {
231 namespace threadSafety {
740 /// The namespace of this push group.
741 const IdentifierInfo *Namespace;
1098 /// to lookup file scope declarations in the "ordinary" C decl namespace.
1102 /// The C++ "std" namespace, where the standard library resides.
1113 /// The C++ "std::experimental" namespace, where the experimental parts
2142 /// Namespace definitions that we will export when they finish
    [all...]

Completed in 84 milliseconds