Home
last modified time | relevance | path

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

1234567

/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dt_integration.sh30 Names=
58 Names="${Names} ${name}"
129 for name in ${Names}; do
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp521 ArrayRef<const char *> Names = getGCCRegNames(); in isValidGCCRegisterName() local
527 return n < Names.size(); in isValidGCCRegisterName()
531 if (llvm::is_contained(Names, Name)) in isValidGCCRegisterName()
536 for (const char *AN : ARN.Names) { in isValidGCCRegisterName()
541 if (AN == Name && ARN.RegNum < Names.size()) in isValidGCCRegisterName()
564 ArrayRef<const char *> Names = getGCCRegNames(); in getNormalizedGCCRegisterName() local
570 assert(n < Names.size() && "Out of bounds register number!"); in getNormalizedGCCRegisterName()
571 return Names[n]; in getNormalizedGCCRegisterName()
577 for (const char *AN : ARN.Names) { in getNormalizedGCCRegisterName()
582 if (AN == Name && ARN.RegNum < Names.size()) in getNormalizedGCCRegisterName()
[all …]
H A DIdentifierTable.cpp465 bool Selector::isKeywordSelector(ArrayRef<StringRef> Names) const { in isKeywordSelector()
466 assert(!Names.empty() && "must have >= 1 selector slots"); in isKeywordSelector()
467 if (getNumArgs() != Names.size()) in isKeywordSelector()
469 for (unsigned I = 0, E = Names.size(); I != E; ++I) { in isKeywordSelector()
470 if (getNameForSlot(I) != Names[I]) in isKeywordSelector()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp328 static bool filterByName(const StringSet<> &Names, DWARFDie Die, in filterByName() argument
335 for (auto Pattern : Names.keys()) { in filterByName()
347 } else if (Names.count(Name)) { in filterByName()
356 static void filterByName(const StringSet<> &Names, in filterByName() argument
363 if (filterByName(Names, Die, Name, OS)) in filterByName()
366 filterByName(Names, Die, Name, OS); in filterByName()
410 static void filterByAccelName(ArrayRef<std::string> Names, DWARFContext &DICtx, in filterByAccelName() argument
413 for (const auto &Name : Names) { in filterByAccelName()
472 StringSet<> Names; in dumpObjectFile() local
476 filterByName(Names, DICtx.normal_units(), OS); in dumpObjectFile()
[all …]
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability2.ksh.out5 Identifier Names: Unstable
10 Identifier Names: Private
H A Dtst.TestTransStability1.ksh.out5 Identifier Names: Unstable
10 Identifier Names: Stable
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.h27 std::vector<std::unique_ptr<std::string>> Names; variable
32 Names.push_back(std::move(N)); in storeName()
33 return *Names.back(); in storeName()
/freebsd-13.1/contrib/llvm-project/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()
490 NumInputs, Names, Constraints, Exprs.data(), in ActOnGCCAsmStmt()
705 if (Names[i]) in ActOnGCCAsmStmt()
[all …]
/freebsd-13.1/contrib/llvm-project/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 …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/mfd/
H A Dhi6421.txt11 Device IRQ Names Supply Names Description
/freebsd-13.1/contrib/llvm-project/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()
298 for (auto Name : Symbol.Names) { in HandleTranslationUnit()
/freebsd-13.1/sys/contrib/device-tree/Bindings/nvmem/
H A Dnvmem-consumer.yaml28 Names for the each nvmem provider.
33 Names for each nvmem-cells specified.
/freebsd-13.1/contrib/llvm-project/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()
582 PatternSet Patterns(Names); in matchesNodeFullFast()
[all …]
/freebsd-13.1/contrib/ntp/scripts/monitoring/
H A Dntploopwatch720 local(%Names);
721 grep($Names{$_} = 1,@newfiles);
724 next if defined($Names{$_});
728 %Names = ();
730 grep($Names{$_} = 1,values(%F_key));
733 next if defined($Names{$_});
739 next if defined($Names{$_});
745 next if defined($Names{$_});
751 next if defined($Names{$_});
757 next if defined($Names{$_});
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCore.h194 Symbols.reserve(Names.size());
195 for (auto &Name : Names)
202 const SymbolNameSet &Names,
204 Symbols.reserve(Names.size());
205 for (const auto &Name : Names)
216 Symbols.reserve(Names.size());
217 for (const auto &Name : Names)
332 SymbolNameVector Names; in getSymbolNames() local
333 Names.reserve(Symbols.size()); in getSymbolNames()
335 Names.push_back(KV.first); in getSymbolNames()
[all …]
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2404 Names.clear(); in reset()
2430 makeNodeArray(Names.begin() + (long)FromPosition, Names.end()); in popTrailingNodeArray()
2713 Names.push_back(T); in parseUnnamedTypeName()
2747 Names.push_back(P); in parseUnnamedTypeName()
3509 Names.push_back(T); in parseFunctionType()
3544 Names.push_back(T); in parseFunctionType()
4165 Names.push_back(Ex); in parseNewExpr()
4207 Names.push_back(E); in parseConversionExpr()
5041 Names.push_back(E); in parseExpr()
5305 Names.push_back(Ty); in parseEncoding()
[all …]
/freebsd-13.1/contrib/sendmail/vacation/
H A Dvacation.c86 ALIAS *Names = NULL; variable
207 cur->next = Names;
208 Names = cur;
445 cur->next = Names;
446 Names = cur;
604 for (cur = Names;
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/kyua/
H A DAUTHORS6 # Names are sorted alphabetically and should be added to this file as:

1234567