Searched refs:List (Results 126 - 150 of 152) sorted by relevance

1234567

/freebsd-12-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
H A DExpr.h1332 void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
1335 getTrailingObjects<TemplateArgumentLoc>(), List); local
2984 void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const {
2987 getTrailingObjects<TemplateArgumentLoc>(), List); local
/freebsd-12-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-12-stable/contrib/llvm-project/lldb/source/Commands/
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-12-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-12-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...]
H A DSemaExprCXX.cpp1342 "List initialization must have initializer list as expression.");
1712 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer))
1713 DirectInitRange = List->getSourceRange();
1799 if (ParenListExpr *List = dyn_cast_or_null<ParenListExpr>(Initializer)) {
1801 Inits = List->getExprs();
1802 NumInits = List->getNumExprs();
3002 /// List of mismatching new-expressions used for initialization of the pointee
H A DSemaDeclCXX.cpp3463 // List of Decls to generate a warning on. Also remove Decls that become
3466 // List of base classes of the record. Classes are removed after their
4022 Expr *List = ParenListExpr::Create(Context, LParenLoc, Args, RParenLoc);
4024 DS, IdLoc, List, EllipsisLoc);
/freebsd-12-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-12-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-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp823 delete RegList.List;
858 SmallVector<unsigned, 10> *List; member in struct:__anon5236::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...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1675 /// @param UsedCands List of used GlobalCand entries. Every BundleCand value
2893 /// Using the given \p List, compute the cost of the broken hints if
2895 /// \return The cost of \p List for \p PhysReg.
2896 BlockFrequency RAGreedy::getBrokenHintFreq(const HintsInfo &List,
2899 for (const HintInfo &Info : List) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp184 void set(std::unique_ptr<SpecialCaseList> List) { SCL = std::move(List); } argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h1824 VAArgInst(Value *List, Type *Ty, const Twine &NameStr = "", argument
1826 : UnaryInstruction(Ty, VAArg, List, InsertBefore) {
1830 VAArgInst(Value *List, Type *Ty, const Twine &NameStr, argument
1832 : UnaryInstruction(Ty, VAArg, List, InsertAtEnd) {
H A DIRBuilder.h2516 VAArgInst *CreateVAArg(Value *List, Type *Ty, const Twine &Name = "") { argument
2517 return Insert(new VAArgInst(List, Ty), Name);
/freebsd-12-stable/contrib/googletest/googletest/test/
H A Dgoogletest-printers-test.cc880 TEST(PrintStlContainerTest, List) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2035 void AsmPrinter::EmitXXStructorList(const DataLayout &DL, const Constant *List, argument
2039 if (!isa<ConstantArray>(List)) return;
2042 const ConstantArray *InitList = dyn_cast<ConstantArray>(List);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp1926 std::vector<llvm::WeakTrackingVH> &List) {
1928 if (List.empty())
1931 // Convert List to what ConstantArray needs.
1933 UsedArray.resize(List.size());
1934 for (unsigned i = 0, e = List.size(); i != e; ++i) {
1937 cast<llvm::Constant>(&*List[i]), CGM.Int8PtrTy);
1925 emitUsed(CodeGenModule &CGM, StringRef Name, std::vector<llvm::WeakTrackingVH> &List) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp3980 for (ObjCMethodList *List = &Start; List; List = List->getNext()) {
3982 if (List->getMethod() == Method) {
3990 if (List->getNext())
3991 List->setMethod(List->getNext()->getMethod());
3993 List->setMethod(Method);
8047 ObjCMethodList &List) {
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3037 LoopVectorizationLegality::InductionList *List = Legal->getInductionVars();
3038 for (auto &InductionEntry : *List) {
5457 InstrList &List = TransposeEnds[i];
5458 for (Instruction *ToRemove : List)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h3896 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef, LLVMValueRef List, LLVMTypeRef Ty,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3865 LLVMValueRef LLVMBuildVAArg(LLVMBuilderRef B, LLVMValueRef List,
3867 return wrap(unwrap(B)->CreateVAArg(unwrap(List), unwrap(Ty), Name));
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp2353 /// List of GPU architectures to use in this compilation.
3339 // FIXME: Understand why the last Phase List length is used here.
4733 const ToolChain::path_list &List = TC.getProgramPaths();
4734 for (const auto &Path : List) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1262 /// List of SourceLocations where 'self' is implicitly retained inside a
3989 void addMethodToGlobalList(ObjCMethodList *List, ObjCMethodDecl *Method);
8163 /// List of active code synthesis contexts.
9880 /// \param Clauses List of clauses for the current OpenMP region.

Completed in 815 milliseconds

1234567