Searched refs:List (Results 101 - 125 of 143) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h559 SubstTemplateParams(TemplateParameterList *List);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp1114 for (const auto &List : Attrs)
1115 MaxSize = std::max(MaxSize, List.getNumAttrSets());
1124 for (const auto &List : Attrs)
1125 CurBuilder.merge(List.getAttributes(I - 1));
H A DAsmWriter.cpp186 SmallVector<Entry, 64> List;
190 List.push_back(std::make_pair(&U, List.size()));
192 if (List.size() < 2)
200 llvm::sort(List, [&](const Entry &L, const Entry &R) {
232 List.begin(), List.end(),
238 Stack.emplace_back(V, F, List.size());
239 assert(List.size() == Stack.back().Shuffle.size() && "Wrong size");
240 for (size_t I = 0, E = List
[all...]
/freebsd-11-stable/sys/conf/
H A Dkmod.mk37 # SRCS List of source files.
39 # FIRMWS List of firmware images in format filename:shortname:version
/freebsd-11-stable/share/mk/
H A Dbsd.man.mk28 # MLINKS List of manual page links (using a suffix). The
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DError.h908 ErrorList &List = static_cast<ErrorList &>(*Payload); local
910 for (auto &P : List.Payloads)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp141 #pragma mark List::CommandOptions
145 #pragma mark List
152 "List all watchpoints at configurable levels of detail.", nullptr,
171 m_level(lldb::eDescriptionLevelBrief) // Watchpoint List defaults to
H A DCommandObjectBreakpoint.cpp1053 #pragma mark List::CommandOptions
1057 #pragma mark List
1064 "List some or all breakpoints at configurable levels of detail.",
1870 "List either the names for a breakpoint or info "
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h1120 std::initializer_list<std::pair<CallDescription, T>> &&List)
1121 : LinearMap(List) {}
1119 CallDescriptionMap( std::initializer_list<std::pair<CallDescription, T>> &&List) argument
/freebsd-11-stable/lib/libefivar/
H A Defivar-dp-parse.c173 @param List A string list separated by the specified separator
182 IN OUT CHAR16 **List,
189 Str = *List;
217 *List = Str;
225 @param List A string list separated by the specified separator
233 IN OUT CHAR16 **List
239 return SplitStr (List, ',');
181 SplitStr( IN OUT CHAR16 **List, IN CHAR16 Separator ) argument
/freebsd-11-stable/contrib/ntp/sntp/ag-tpl/0-old/
H A DMdoc.pm151 use List::Util qw(reduce);
/freebsd-11-stable/contrib/ntp/sntp/ag-tpl/
H A DMdoc.pm178 use List::Util qw(reduce);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.h102 List, member in class:lldb_private::python::PyObjectType
H A DPythonDataObjects.cpp97 return PyObjectType::List;
213 case PyObjectType::List:
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h331 void addToList(SDUse **List) { argument
332 Next = *List;
334 Prev = List;
335 *List = this;
628 /// List of uses for this SDNode.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDDG.h128 assert(!InstList.empty() && "Instruction List is empty.");
159 /// List of instructions associated with a single or multi-instruction node.
175 PiBlockDDGNode(const PiNodeList &List);
208 /// List of nodes in this pi-block.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFGraph.cpp198 PrintListV(const NodeList &L, const DataFlowGraph &G) : List(L), G(G) {}
201 const NodeList &List; member in struct:llvm::rdf::__anon82::PrintListV
207 unsigned N = P.List.size();
208 for (NodeAddr<T> A : P.List) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h3015 void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
3017 getTrailingASTTemplateKWAndArgsInfo()->copyInto(getTemplateArgs(), List); local
3247 void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
3250 getTrailingObjects<TemplateArgumentLoc>(), List); local
3696 void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
3699 getTrailingObjects<TemplateArgumentLoc>(), List); local
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp45 List = nullptr;
48 List = new (Ctx) void*[Elts];
50 memcpy(List, InList, sizeof(void*)*Elts);
H A DItaniumMangle.cpp3945 bool List = CE->isListInitialization(); local
3947 if (List)
3952 if (!List && N != 1)
3966 if (List || N != 1)
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp636 // terminating 0 are not added to V, so it will have the same size as List.
638 DiffVec &diffEncode(DiffVec &V, unsigned InitVal, SparseBitVector<> List) { argument
642 for (uint16_t Cur : List) {
884 // List of lane masks accompanying register unit sequences.
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp3815 InitListExpr *List,
3823 if (!S.isCompleteType(List->getExprLoc(), E)) {
3832 List->getNumInits()),
3837 List->getExprLoc(), List->getBeginLoc(), List->getEndLoc());
3838 TryListInitialization(S, HiddenArray, Kind, List, Sequence,
8704 auto *List = dyn_cast<InitListExpr>(Args[0]);
8705 if (List && List
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h356 /* List to manage incoming ACPI tables */
374 ACPI_HANDLE *List; member in struct:acpi_find_context
652 ACPI_GPE_NOTIFY_INFO *NotifyList; /* List of _PRW devices for implicit notifies */
712 ACPI_GPE_BLOCK_INFO *GpeBlockListHead; /* List of GPE blocks for this xrupt */
874 union acpi_operand_object *AcquiredMutexList; /* List of all currently acquired mutexes */
1090 * List struct used in the -ca option
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp2760 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
2801 "List of all attribute subject matching rules that Clang recognizes", OS);
3063 const std::map<std::string, std::vector<Record *>> &List) {
3066 for (auto I = List.cbegin(), E = List.cend(); I != E; ++I) {
3067 if (I != List.cbegin())
3258 emitSourceFileHeader("List of all attributes that Clang recognizes", OS);
4021 // List what spelling syntaxes the attribute supports.
4028 // TODO: List Microsoft (IDL-style attribute) spellings once we fully
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp823 delete RegList.List;
858 SmallVector<unsigned, 10> *List; member in struct:__anon2306::MipsOperand::RegListOp
1396 int Size = RegList.List->size();
1400 unsigned R0 = RegList.List->front();
1401 unsigned R1 = RegList.List->back();
1406 int PrevReg = *RegList.List->begin();
1408 int Reg = (*(RegList.List))[i];
1472 return *(RegList.List);
1576 Op->RegList.List = new SmallVector<unsigned, 10>(Regs.begin(), Regs.end());
1706 for (auto Reg : (*RegList.List))
[all...]

Completed in 688 milliseconds

123456