Home
last modified time | relevance | path

Searched refs:Names (Results 1 – 25 of 529) sorted by relevance

12345678910>>...22

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DTypeTableCollection.cpp20 Names.resize(Records.size()); in TypeTableCollection()
47 if (Names[I].data() == nullptr) { in getTypeName()
49 Names[I] = Result; in getTypeName()
51 return Names[I]; in getTypeName()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DPseudoProbePrinter.cpp42 Names[Name] = GUID; in PseudoProbeHandler()
63 assert(Names.count(Name) && "Pseudo probe descriptor missing for function"); in emitPseudoProbe()
64 uint64_t CallerGuid = Names[Name]; in emitPseudoProbe()
81 for (const auto &Item : Names) in dump()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstraintSystem.cpp110 void ConstraintSystem::dump(ArrayRef<std::string> Names) const { in dump()
122 Parts.push_back(Coefficient + Names[I - 1]); in dump()
131 SmallVector<std::string, 16> Names; in dump() local
133 Names.push_back("x" + std::to_string(i)); in dump()
135 dump(Names); in dump()
H A DStackLifetime.cpp352 SmallVector<StringRef, 16> Names; in printInstrAlive() local
355 Names.push_back(KV.getFirst()->getName()); in printInstrAlive()
357 llvm::sort(Names); in printInstrAlive()
358 OS << " ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInstrAlive()
374 SmallVector<StringRef, 16> Names; in printInfoComment() local
377 Names.push_back(KV.getFirst()->getName()); in printInfoComment()
379 llvm::sort(Names); in printInfoComment()
380 OS << "\n ; Alive: <" << llvm::join(Names, " ") << ">\n"; in printInfoComment()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DTargetInfo.cpp499 ArrayRef<const char *> Names = getGCCRegNames(); in isValidGCCRegisterName() local
505 return n < Names.size(); in isValidGCCRegisterName()
509 if (llvm::is_contained(Names, Name)) in isValidGCCRegisterName()
514 for (const char *AN : ARN.Names) { in isValidGCCRegisterName()
519 if (AN == Name && ARN.RegNum < Names.size()) in isValidGCCRegisterName()
542 ArrayRef<const char *> Names = getGCCRegNames(); in getNormalizedGCCRegisterName() local
548 assert(n < Names.size() && "Out of bounds register number!"); in getNormalizedGCCRegisterName()
549 return Names[n]; in getNormalizedGCCRegisterName()
555 for (const char *AN : ARN.Names) { in getNormalizedGCCRegisterName()
560 if (AN == Name && ARN.RegNum < Names.size()) in getNormalizedGCCRegisterName()
[all …]
H A DIdentifierTable.cpp460 bool Selector::isKeywordSelector(ArrayRef<StringRef> Names) const { in isKeywordSelector()
461 assert(!Names.empty() && "must have >= 1 selector slots"); in isKeywordSelector()
462 if (getNumArgs() != Names.size()) in isKeywordSelector()
464 for (unsigned I = 0, E = Names.size(); I != E; ++I) { in isKeywordSelector()
465 if (getNameForSlot(I) != Names[I]) in isKeywordSelector()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp323 static bool filterByName(const StringSet<> &Names, DWARFDie Die, in filterByName() argument
330 for (auto Pattern : Names.keys()) { in filterByName()
342 } else if (Names.count(Name)) { in filterByName()
351 static void filterByName(const StringSet<> &Names, in filterByName() argument
358 if (filterByName(Names, Die, Name, OS)) in filterByName()
361 filterByName(Names, Die, Name, OS); in filterByName()
405 static void filterByAccelName(ArrayRef<std::string> Names, DWARFContext &DICtx, in filterByAccelName() argument
408 for (const auto &Name : Names) { in filterByAccelName()
467 StringSet<> Names; in dumpObjectFile() local
469 Names.insert((IgnoreCase && !UseRegex) ? StringRef(name).lower() : name); in dumpObjectFile()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DSubtargetFeatureInfo.cpp73 std::vector<std::string> Names; in emitNameTable() local
75 Names.resize(IndexUB); in emitNameTable()
77 Names[SF.second.Index] = SF.second.getEnumName(); in emitNameTable()
81 OS << " \"" << Names[I] << "\",\n"; in emitNameTable()
H A DDAGISelMatcherGen.cpp122 bool recordUniqueNode(ArrayRef<std::string> Names);
468 bool MatcherGen::recordUniqueNode(ArrayRef<std::string> Names) { in recordUniqueNode() argument
470 for (const std::string &Name : Names) { in recordUniqueNode()
481 for (const std::string &Name : Names) { in recordUniqueNode()
497 for (const std::string &Name : Names) in recordUniqueNode()
520 SmallVector<std::string, 4> Names; in EmitMatchCode() local
522 Names.push_back(N->getName()); in EmitMatchCode()
525 Names.push_back(("pred:" + Twine(Name.getScope()) + ":" + Name.getIdentifier()).str()); in EmitMatchCode()
528 if (!Names.empty()) { in EmitMatchCode()
529 if (!recordUniqueNode(Names)) in EmitMatchCode()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.h27 std::vector<std::unique_ptr<std::string>> Names; variable
31 Names.push_back(std::move(N)); in storeName()
32 return *Names.back(); in storeName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAsm.cpp243 unsigned NumInputs, IdentifierInfo **Names, in ActOnGCCAsmStmt() argument
268 if (Names[i]) in ActOnGCCAsmStmt()
269 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt()
278 NumInputs, Names, Constraints, Exprs.data(), AsmString, in ActOnGCCAsmStmt()
347 NumInputs, Names, Constraints, Exprs.data(), AsmString, in ActOnGCCAsmStmt()
359 if (Names[i]) in ActOnGCCAsmStmt()
360 InputName = Names[i]->getName(); in ActOnGCCAsmStmt()
369 NumInputs, Names, Constraints, Exprs.data(), AsmString, in ActOnGCCAsmStmt()
470 NumInputs, Names, Constraints, Exprs.data(), AsmString, in ActOnGCCAsmStmt()
484 Names, Constraints, Exprs.data(), AsmString, NumClobbers, in ActOnGCCAsmStmt()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmtAsm.cpp757 SmallVector<IdentifierInfo *, 4> Names; in ParseAsmStatement() local
778 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
782 unsigned NumOutputs = Names.size(); in ParseAsmStatement()
794 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs)) in ParseAsmStatement()
798 assert(Names.size() == Constraints.size() && in ParseAsmStatement()
801 unsigned NumInputs = Names.size() - NumOutputs; in ParseAsmStatement()
846 Names.push_back(Tok.getIdentifierInfo()); in ParseAsmStatement()
866 NumInputs, Names.data(), Constraints, Exprs, in ParseAsmStatement()
884 bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names, in ParseAsmOperandsOpt() argument
906 Names.push_back(II); in ParseAsmOperandsOpt()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h190 std::initializer_list<SymbolStringPtr> Names,
192 Symbols.reserve(Names.size());
193 for (auto &Name : Names)
200 const SymbolNameSet &Names,
202 Symbols.reserve(Names.size());
203 for (const auto &Name : Names)
212 ArrayRef<SymbolStringPtr> Names,
214 Symbols.reserve(Names.size());
215 for (const auto &Name : Names)
318 SymbolNameVector Names; in getSymbolNames() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp31 std::vector<std::string> Names; member
35 std::vector<std::string> Names) in MangledSymbol()
36 : ParentName(ParentName), Type(Type), Binding(Binding), Names(Names) {} in MangledSymbol()
301 for (auto Name : Symbol.Names) { in HandleTranslationUnit()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp444 std::vector<std::string> Names; in vectorFromRefs() local
445 Names.reserve(NameRefs.size()); in vectorFromRefs()
447 Names.emplace_back(*Name); in vectorFromRefs()
448 return Names; in vectorFromRefs()
473 Names(std::move(N)) {
475 for (StringRef Name : Names)
529 PatternSet(ArrayRef<std::string> Names) { in PatternSet() argument
530 Patterns.reserve(Names.size()); in PatternSet()
531 for (StringRef Name : Names) in PatternSet()
576 return llvm::any_of(Names, [&](StringRef Name) { in matchesNodeUnqualified()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2346 PODSmallVector<Node *, 32> Names; member
2404 Names.clear(); in reset()
2428 assert(FromPosition <= Names.size()); in popTrailingNodeArray()
2430 makeNodeArray(Names.begin() + (long)FromPosition, Names.end()); in popTrailingNodeArray()
2431 Names.dropBack(FromPosition); in popTrailingNodeArray()
2667 size_t BindingsBegin = Names.size(); in parseUnqualifiedName()
2672 Names.push_back(Binding); in parseUnqualifiedName()
2707 size_t ParamsBegin = Names.size(); in parseUnnamedTypeName()
2713 Names.push_back(T); in parseUnnamedTypeName()
2747 Names.push_back(P); in parseUnnamedTypeName()
[all …]
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc4514.txt14 String Representation of Distinguished Names
60 RFC 4514 LDAP: Distinguished Names June 2006
69 Names used in LDAP [RFC4511][RFC4517]. Section 2 details the
116 RFC 4514 LDAP: Distinguished Names June 2006
172 RFC 4514 LDAP: Distinguished Names June 2006
228 RFC 4514 LDAP: Distinguished Names June 2006
254 The string representation of Distinguished Names is restricted to
284 RFC 4514 LDAP: Distinguished Names June 2006
340 RFC 4514 LDAP: Distinguished Names June 2006
396 RFC 4514 LDAP: Distinguished Names June 2006
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleList.cpp269 BinaryStreamReader Names(NamesBuffer); in getFileName() local
274 Names.setOffset(FileOffset); in getFileName()
276 if (auto EC = Names.readCString(Name)) in getFileName()
/netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/
H A Dstring.bench.cpp62 static constexpr const char* Names[] = {"Empty", "Small", "Large", "Huge"}; member
67 static constexpr const char* Names[] = {"Opaque", "Transparent"}; member
72 static constexpr const char* Names[] = {"Control", "ChangeFirst", member
397 static constexpr const char* Names[] = {"Eq", "Less", "Compare"}; member
484 static constexpr const char* Names[] = {"Shallow", "Deep"}; member
489 static constexpr const char* Names[] = {"Hot", "Cold"}; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DLLVMContext.cpp270 void LLVMContext::getMDKindNames(SmallVectorImpl<StringRef> &Names) const { in getMDKindNames()
271 Names.resize(pImpl->CustomMDKindNames.size()); in getMDKindNames()
274 Names[I->second] = I->first(); in getMDKindNames()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOpenCLBuiltinEmitter.cpp79 SmallVector<StringRef, 4> Names; member
521 for (const auto &Name : SLM.second.Names) { in EmitBuiltinTable()
593 SignatureListMap.find(Candidate)->second.Names.push_back(Fct.first); in GroupBySignature()
623 for (const auto &FctName : SLM.second.Names) { in EmitStringMatcher()
/netbsd-src/external/gpl3/binutils.old/dist/gas/doc/
H A Dc-metag.texi60 * Meta-Regs:: Register Names
80 @subsection Register Names
/netbsd-src/external/gpl3/binutils/dist/gas/doc/
H A Dc-metag.texi60 * Meta-Regs:: Register Names
80 @subsection Register Names
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp540 std::vector<std::string> Names; in getSectionNames() local
542 Names.push_back(H.Name); in getSectionNames()
543 return Names; in getSectionNames()
1932 Visitor(LinePrinter &P, ArrayRef<std::string> Names) : P(P), Names(Names) { in dumpSectionContribs() argument
1934 Names.begin(), Names.end(), in dumpSectionContribs()
1936 MaxNameLen = (Max == Names.end() ? 0 : Max->size()); in dumpSectionContribs()
1939 dumpSectionContrib(P, SC, Names, MaxNameLen); in dumpSectionContribs()
1942 dumpSectionContrib(P, SC, Names, MaxNameLen); in dumpSectionContribs()
1948 ArrayRef<std::string> Names; in dumpSectionContribs() member in DumpOutputStyle::dumpSectionContribs::Visitor
1951 std::vector<std::string> Names = getSectionNames(getPdb()); in dumpSectionContribs() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h921 explicit HasOverloadedOperatorNameMatcher(std::vector<std::string> Names)
922 : SingleNodeMatcherInterface<T>(), Names(std::move(Names)) {}
934 return llvm::is_contained(Names, getOperatorSpelling(Node.getOperator()));
942 Names, getOperatorSpelling(Node.getOverloadedOperator()));
945 std::vector<std::string> Names;
953 explicit HasNameMatcher(std::vector<std::string> Names);
980 std::vector<std::string> Names;
2241 explicit HasAnyOperatorNameMatcher(std::vector<std::string> Names)
2242 : SingleNodeMatcherInterface<T>(), Names(std::move(Names)) {}
2248 return llvm::any_of(Names, [OpName = *OptOpName](const std::string &Name) {
[all …]

12345678910>>...22