Home
last modified time | relevance | path

Searched refs:Aggregate (Results 1 – 25 of 40) sorted by relevance

12

/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_aggregate.pass.cpp45 struct Aggregate {}; struct
63 test_false<void(Aggregate::*)(int) const>(); in main()
64 test_false<Aggregate&>(); in main()
69 test_true<Aggregate>(); in main()
70 test_true<Aggregate[]>(); in main()
71 test_true<Aggregate[42][101]>(); in main()
/llvm-project-15.0.7/clang/test/CodeCompletion/
H A Dctor-signature.cpp44 struct Aggregate { struct
50 Aggregate a{1, 2, 3}; argument
59 Aggregate d{.second=1, .first=2, 3, 4, };
/llvm-project-15.0.7/clang/test/Modules/Inputs/merge-decl-context/
H A Da.h24 struct Aggregate { struct
27 bool operator==(Aggregate, Aggregate) = delete; argument
/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DStorageLocation.h30 enum class Kind { Scalar, Aggregate }; enumerator
77 : StorageLocation(Kind::Aggregate, Type), Children(std::move(Children)) {} in AggregateStorageLocation()
80 return Loc->getKind() == Kind::Aggregate; in classof()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dx86-method-vector-values.m20 struct Aggregate { __m128 v; }; struct
114 -(struct Aggregate)takesAndRetVectorInAggregate:(struct Aggregate)f { // no error argument
115 struct Aggregate result;
/llvm-project-15.0.7/clang/test/Sema/
H A Dbuiltin-align.c5 struct Aggregate { struct
14 struct Aggregate agg; in test_parameter_types() argument
H A Dbuiltins.c136 struct Aggregate { int n; char c; }; argument
169 F((struct Aggregate){0, 1}); in test17()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dcfg.cpp363 struct Aggregate { const LifetimeExtend a; const LifetimeExtend b; }; argument
398 Aggregate a{LifetimeExtend(4), LifetimeExtend(4)}; in test_lifetime_extended_temporaries()
/llvm-project-15.0.7/clang/test/Modules/
H A Dmerge-decl-context.cpp36 static_assert(Aggregate{.member = 1}.member == 1, "");
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h1084 OverloadCandidate(const RecordDecl *Aggregate) in OverloadCandidate() argument
1085 : Kind(CK_Aggregate), AggregateType(Aggregate) { in OverloadCandidate()
1086 assert(Aggregate != nullptr); in OverloadCandidate()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGValue.h40 enum Flavor { Scalar, Complex, Aggregate }; enumerator
56 bool isAggregate() const { return V1.getInt() == Aggregate; } in isAggregate()
113 ER.V1.setInt(Aggregate);
/llvm-project-15.0.7/compiler-rt/lib/lsan/
H A Dlsan_flags.inc23 "Aggregate two objects into one leak if this many stack frames match. If "
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclCXX.cpp77 Aggregate(true), PlainOldData(true), Empty(true), Polymorphic(false), in DefinitionData()
205 data().Aggregate = false; in setBases()
266 data().Aggregate = false; in setBases()
281 data().Aggregate = false; in setBases()
313 data().Aggregate = false; in setBases()
329 data().Aggregate = false; in setBases()
722 data().Aggregate = false; in addedMember()
810 data().Aggregate = false; in addedMember()
948 data().Aggregate = false; in addedMember()
1091 data().Aggregate = false; in addedMember()
[all …]
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dconstant-expression-cxx14.cpp1229 struct Aggregate { struct
1233 constexpr Aggregate aggr1;
1236 constexpr Aggregate aggr2 = {};
/llvm-project-15.0.7/llvm/cmake/modules/
H A DTensorFlowCompile.cmake61 # Aggregate the objects so that results of different tf_compile calls may be
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c2316 LLVMValueRef llvm_build_extractvalue(LLVMValueRef Aggregate, value Idx, in llvm_build_extractvalue() argument
2318 return LLVMBuildExtractValue(Builder_val(B), Aggregate, Int_val(Idx), in llvm_build_extractvalue()
2323 LLVMValueRef llvm_build_insertvalue(LLVMValueRef Aggregate, LLVMValueRef Val, in llvm_build_insertvalue() argument
2325 return LLVMBuildInsertValue(Builder_val(B), Aggregate, Val, Int_val(Idx), in llvm_build_insertvalue()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCXXRecordDeclDefinitionBits.def42 FIELD(Aggregate, 1, NO_MERGE)
H A DDeclCXX.h429 Aggregate = false; in LambdaDefinitionData()
1105 bool isAggregate() const { return data().Aggregate; } in isAggregate()
/llvm-project-15.0.7/llvm/docs/
H A DLexicon.rst119 First Class Aggregate
/llvm-project-15.0.7/flang/lib/Parser/
H A Dopenmp-parsers.cpp74 pure(OmpDefaultmapClause::VariableCategory::Aggregate) ||
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DVector.md293 between vector and aggregate types: `“Aggregate Types are a subset of derived
325 ### Nested Aggregate
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCCallingConv.td248 // Aggregate by value arguments are always placed in the local variable space
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsCallingConv.td201 // Aggregate returns are positioned at the lowest address in the slot for
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Doffset.ll621 ; Aggregate values
/llvm-project-15.0.7/llvm/unittests/Frontend/
H A DOpenMPIRBuilderTest.cpp266 static Value *findStoredValueInAggregateAt(LLVMContext &Ctx, Value *Aggregate, in findStoredValueInAggregateAt() argument
270 for (User *Usr : Aggregate->users()) { in findStoredValueInAggregateAt()
317 Value *Aggregate = GEP->getPointerOperand(); in findAggregateFromValue() local
319 return Aggregate; in findAggregateFromValue()

12