HomeSort by: relevance | last modified time | path
    Searched refs:Namespace (Results 1 - 25 of 78) sorted by relevancy

1 2 3 4

  /src/external/mpl/bind/dist/bin/tests/system/tsiggss/
tests_isc_spnego_flaws.py 48 def __init__(self, opts: argparse.Namespace) -> None:
94 def __init__(self, opts: argparse.Namespace) -> None:
160 def parse_options() -> argparse.Namespace:
173 def send_crafted_tkey_query(opts: argparse.Namespace) -> None:
190 opts = argparse.Namespace(
204 opts = argparse.Namespace(
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
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...]
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...]
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...]
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...]
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...]
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...]
PseudoLoweringEmitter.cpp 20 using namespace llvm;
24 namespace {
66 } // End anonymous namespace
238 o << " case " << Source.Namespace << "::"
242 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
272 o << Reg->getValueAsString("Namespace") << "::"
316 namespace llvm {
322 } // End llvm namespace
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
CodeGenInstruction.h 24 namespace llvm {
221 StringRef Namespace; // The namespace the instruction is in.
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPCallbacks.h 24 namespace clang {
220 /// \param Namespace The namespace of the message directive.
223 virtual void PragmaMessage(SourceLocation Loc, StringRef Namespace,
230 StringRef Namespace) {
236 StringRef Namespace) {
240 virtual void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
470 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
472 First->PragmaMessage(Loc, Namespace, Kind, Str);
473 Second->PragmaMessage(Loc, Namespace, Kind, Str)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
QualTypeNames.cpp 18 namespace clang {
20 namespace TypeName {
28 /// \param[in] WithGlobalNsPrefix - Indicate whether the global namespace
43 /// \param[in] WithGlobalNsPrefix - Indicate whether the global namespace
192 // Ignore inline namespace;
218 case NestedNameSpecifier::Namespace:
222 // Namespace aliases are only valid for the duration of the
224 // invalid at the end of the TU. So use the namespace name more
303 // Decl's context was neither the TU, a namespace, nor a
340 const NamespaceDecl *Namespace,
    [all...]
NestedNameSpecifier.cpp 38 using namespace clang;
75 assert(NS && "Namespace cannot be NULL");
91 assert(Alias && "Namespace alias cannot be NULL");
155 return isa<NamespaceDecl>(ND) ? Namespace : NamespaceAlias;
168 /// Retrieve the namespace stored in this nested name specifier.
176 /// Retrieve the namespace alias stored in this nested name specifier.
213 case Namespace:
262 case Namespace:
367 case NestedNameSpecifier::Namespace:
370 // The location of the identifier or namespace name
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
entrypoint.py 28 def parse_arguments() -> Tuple[argparse.Namespace, List[str]]:
  /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/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/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...]
AbstractBasicReader.h 14 namespace clang {
15 namespace serialization {
261 case NestedNameSpecifier::Namespace:
294 } // end namespace serialization
295 } // end namespace clang
AbstractBasicWriter.h 15 namespace clang {
16 namespace serialization {
249 case NestedNameSpecifier::Namespace:
275 } // end namespace serialization
276 } // end namespace clang
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 21 using namespace clang;
198 // Handle classes that directly appear in std namespace.
479 // Push and pop can only occur at file or namespace scope.
744 namespace {
748 using namespace attr;
761 using namespace attr;
797 } // end anonymous namespace
933 const IdentifierInfo *Namespace) {
936 PragmaAttributeStack.back().Namespace = Namespace;
    [all...]
SemaCXXScopeSpec.cpp 24 using namespace clang;
144 case NestedNameSpecifier::Namespace:
321 // Namespace and namespace aliases are fine.
428 namespace {
534 // class-name-or-namespace-name::...
536 // the class-name-or-namespace-name following the . or -> operator is
542 // class-name or namespace-name. [...]
544 // Qualified name lookup into a class will not find a namespace-name,
584 // If identifier is not found as class-name-or-namespace-name, but is foun
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexSymbol.cpp 17 using namespace clang;
18 using namespace clang::index;
247 case Decl::Namespace:
248 Info.Kind = SymbolKind::Namespace;
504 case SymbolKind::Namespace: return "namespace";
505 case SymbolKind::NamespaceAlias: return "namespace-alias";
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTCommon.cpp 20 using namespace clang;
290 case Decl::Namespace:
351 case Decl::Namespace:
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
IssueHash.cpp 27 using namespace clang;
96 case Decl::Namespace:

Completed in 73 milliseconds

1 2 3 4