Home
last modified time | relevance | path

Searched defs:get (Results 1 – 25 of 457) sorted by relevance

12345678910>>...19

/llvm-project/mlir/lib/Tools/PDLL/AST/
H A DTypes.cpp57 AttributeType AttributeType::get(Context &context) { in get() function in AttributeType
65 ConstraintType ConstraintType::get(Context &context) { in get() function in ConstraintType
73 OperationType OperationType::get(Context &context, in get() function in OperationType
95 RangeType RangeType::get(Context &context, Type elementType) { in get() function in RangeType
112 TypeRangeType TypeRangeType::get(Context &context) { in get() function in TypeRangeType
125 ValueRangeType ValueRangeType::get(Context &context) { in get() function in ValueRangeType
134 RewriteType RewriteType::get(Context &context) { in get() function in RewriteType
142 TupleType TupleType::get(Context &context, ArrayRef<Type> elementTypes, in get() function in TupleType
148 TupleType TupleType::get(Context &context, ArrayRef<Type> elementTypes) { in get() function in TupleType
165 TypeType TypeType::get(Context &context) { in get() function in TypeType
[all …]
/llvm-project/libcxx/test/support/
H A Dpropagate_const_helpers.h8 constexpr const int *get() const { return &i_; } in get() function
9 constexpr int *get() { return &i_; } in get() function
22 constexpr const int *get() const { return &i_; } in get() function
23 constexpr int *get() { return &i_; } in get() function
37 constexpr const int *get() const { return &i_; } in get() function
38 constexpr int *get() { return &i_; } in get() function
52 constexpr const int *get() const { return &i_; } in get() function
53 constexpr int *get() { return &i_; } in get() function
66 constexpr const int *get() const { return &i_; } in get() function
67 constexpr int *get() { return &i_; } in get() function
[all …]
/llvm-project/lldb/test/API/lang/objc/objc-super/
H A Dclass.m5 -(int)get; method
10 {
17 -(int)get; method
22 {
/llvm-project/clang/test/Analysis/
H A Duninit-structured-binding-tuple.cpp42 get(std::mock_pair<T1, T2> &p) noexcept { in get() function
51 get(const std::mock_pair<T1, T2> &p) noexcept { in get() function
60 get(std::mock_pair<T1, T2> &&p) noexcept { in get() function
70 get(const std::mock_pair<T1, T2> &&p) noexcept { in get() function
170 int get(Test t) { in get() function
207 int get(Test2 &t) { in get() function
302 const std::tuple_element_t<I, MixedTest> &get(const MixedTest &t) {} in get() function
305 const std::tuple_element_t<0, MixedTest> &get<0>(const MixedTest &t) { in get() function
310 const std::tuple_element_t<1, MixedTest> &get<1>(const MixedTest &t) { in get() function
315 const std::tuple_element_t<2, MixedTest> &get<2>(const MixedTest &t) { in get() function
[all …]
/llvm-project/llvm/lib/Analysis/
H A DMemoryLocation.cpp36 MemoryLocation MemoryLocation::get(const LoadInst *LI) { get() function in MemoryLocation
45 MemoryLocation MemoryLocation::get(const StoreInst *SI) { get() function in MemoryLocation
54 MemoryLocation MemoryLocation::get(const VAArgInst *VI) { get() function in MemoryLocation
59 MemoryLocation MemoryLocation::get(const AtomicCmpXchgInst *CXI) { get() function in MemoryLocation
68 MemoryLocation MemoryLocation::get(const AtomicRMWInst *RMWI) { get() function in MemoryLocation
[all...]
/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfileCollector.cpp39 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) {} in get() function in __anon4fd607190111::PluginChain
51 void get(InstrProfValueKind K, std::vector<CandidateInfo> &Candidates) { in get() function in __anon4fd607190111::PluginChain
73 ValueProfileCollector::get(InstrProfValueKind Kind) const { in get() function in ValueProfileCollector
/llvm-project/clang/test/Modules/
H A Dmerge-static-locals.cpp9 auto get() { static int n; return X<&n>(); } in get() function
19 auto get() { static int n; return X<&n>(); } in get() function
/llvm-project/lldb/source/Host/macosx/cfcpp/
H A DCFCReleaser.h80 T get() { return _ptr; } in get() function
82 const T get() const { return _ptr; } in get() function
/llvm-project/mlir/lib/Bindings/Python/
H A DIRModule.h83 T *get() { return referrent; } in get() function
185 MlirContext get() { return context; } get() function
324 MlirLocation get() const { return loc; } get() function
459 MlirDialect get() { return dialect; } get() function
506 MlirDialectRegistry get() const { return registry; } get() function
541 MlirModule get() { return module; } get() function
648 MlirOperation get() const { get() function
774 MlirRegion get() { return region; } get() function
810 MlirAsmState get() { return state; } get() function
827 MlirBlock get() { return block; } get() function
886 MlirType get() const { return type; } get() function
912 MlirTypeID get() { return typeID; } get() function
1008 MlirAttribute get() const { return attr; } get() function
1143 MlirValue get() { return value; } get() function
1169 MlirAffineExpr get() const { return affineExpr; } get() function
1196 MlirAffineMap get() const { return affineMap; } get() function
1217 MlirIntegerSet get() const { return integerSet; } get() function
[all...]
/llvm-project/lldb/tools/debugserver/source/MacOSX/
H A DCFUtils.h48 const T get() const { return _ptr; } in get() function
49 T get() { return _ptr; } in get() function
/llvm-project/mlir/include/mlir/Support/
H A DStorageUniquer.h195 Storage *get(function_ref<void(Storage *)> initFn, TypeID id, in get() function
222 Storage *get(function_ref<void(Storage *)> initFn, Args &&...args) { in get() function
230 Storage *get(TypeID id) { in get() function
235 Storage *get() { in get() function
/llvm-project/flang/test/Lower/Intrinsics/
H A Drandom.f9044 integer :: size, get(5) = -9 local
64 integer, optional :: get(5) local
85 integer, optional :: get(5) local
[all...]
/llvm-project/flang/lib/Optimizer/Dialect/
H A DFIRAttr.cpp90 ExactTypeAttr fir::ExactTypeAttr::get(mlir::Type value) { in get() function in fir::ExactTypeAttr
96 SubclassAttr fir::SubclassAttr::get(mlir::Type value) { in get() function in fir::SubclassAttr
108 ClosedIntervalAttr fir::ClosedIntervalAttr::get(mlir::MLIRContext *ctxt) { in get() function in fir::ClosedIntervalAttr
112 UpperBoundAttr fir::UpperBoundAttr::get(mlir::MLIRContext *ctxt) { in get() function in fir::UpperBoundAttr
116 LowerBoundAttr fir::LowerBoundAttr::get(mlir::MLIRContext *ctxt) { in get() function in fir::LowerBoundAttr
120 PointIntervalAttr fir::PointIntervalAttr::get(mlir::MLIRContext *ctxt) { get() function in fir::PointIntervalAttr
128 RealAttr fir::RealAttr::get(mlir::MLIRContext *ctxt, get() function in fir::RealAttr
[all...]
/llvm-project/mlir/lib/IR/
H A DMLIRContext.cpp1012 Float8E5M2Type Float8E5M2Type::get(MLIRContext *context) { get() function in Float8E5M2Type
1015 Float8E4M3FNType Float8E4M3FNType::get(MLIRContext *context) { get() function in Float8E4M3FNType
1018 Float8E5M2FNUZType Float8E5M2FNUZType::get(MLIRContext *context) { get() function in Float8E5M2FNUZType
1021 Float8E4M3FNUZType Float8E4M3FNUZType::get(MLIRContext *context) { get() function in Float8E4M3FNUZType
1024 Float8E4M3B11FNUZType Float8E4M3B11FNUZType::get(MLIRContext *context) { get() function in Float8E4M3B11FNUZType
1027 BFloat16Type BFloat16Type::get(MLIRContext *context) { get() function in BFloat16Type
1030 Float16Type Float16Type::get(MLIRContext *context) { get() function in Float16Type
1033 FloatTF32Type FloatTF32Type::get(MLIRContext *context) { get() function in FloatTF32Type
1036 Float32Type Float32Type::get(MLIRContext *context) { get() function in Float32Type
1039 Float64Type Float64Type::get(MLIRContext *context) { get() function in Float64Type
1042 Float80Type Float80Type::get(MLIRContext *context) { get() function in Float80Type
1045 Float128Type Float128Type::get(MLIRContext *context) { get() function in Float128Type
1050 IndexType IndexType::get(MLIRContext *context) { get() function in IndexType
1081 IntegerType IntegerType::get(MLIRContext *context, unsigned width, get() function in IntegerType
1098 NoneType NoneType::get(MLIRContext *context) { get() function in NoneType
1123 BoolAttr BoolAttr::get(MLIRContext *context, bool value) { get() function in BoolAttr
1127 UnitAttr UnitAttr::get(MLIRContext *context) { get() function in UnitAttr
1131 UnknownLoc UnknownLoc::get(MLIRContext *context) { get() function in UnknownLoc
1165 StringAttr StringAttr::get(MLIRContext *context) { get() function in StringAttr
1210 AffineMap AffineMap::get(MLIRContext *context) { get() function in AffineMap
1214 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount, get() function in AffineMap
1219 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount, get() function in AffineMap
1225 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount, get() function in AffineMap
1236 IntegerSet IntegerSet::get(unsigned dimCount, unsigned symbolCount, get() function in IntegerSet
[all...]
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_hash.h33 u32 get() { in get() function
57 u64 get() { in get() function
/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h196 LineEntry &get(size_t i) { in get() function
200 const LineEntry &get(size_t i) const { in get() function
/llvm-project/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.elem/
H A Darrow.pass.cpp36 int get() const {return data_;} get() function in A
59 int get() const {return data_;} get() function in B
73 TEST_CONSTEXPR int get() const {return data_;} get() function in C
[all...]
/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
H A DLLVMAttrs.cpp115 MemoryEffectsAttr MemoryEffectsAttr::get(MLIRContext *context, get() function in MemoryEffectsAttr
140 DIExpressionAttr DIExpressionAttr::get(MLIRContext *context) { get() function in DIExpressionAttr
221 TargetFeaturesAttr TargetFeaturesAttr::get(MLIRContext *context, get() function in TargetFeaturesAttr
229 TargetFeaturesAttr TargetFeaturesAttr::get(MLIRContext *context, get() function in TargetFeaturesAttr
[all...]
/llvm-project/clang/test/CodeGenCXX/
H A Dmingw-thread-local.cpp5 int get() { in get() function
/llvm-project/clang/test/Modules/Inputs/multiple-include/
H A Db.h3 inline int get() { return c; } in get() function
/llvm-project/clang/test/SemaCXX/
H A Ddiscrim-union.cpp49 constexpr const T &get(select<0>) { return val; } in get() function
50 …template<unsigned N> constexpr const decltype(static_cast<const rest_t&>(rest).get(select<N-1>{}))… in get() function
88 constexpr const_get_result<N> get() { in get() function in either
96 constexpr const U &get() { in get() function in either
H A Dconsteval-cleanup.cpp11 const int& get() const { get() function
50 consteval int get() { return *p; } get() function
/llvm-project/mlir/utils/vscode/src/
H A Dconfig.ts6 export function get<T>(key: string, function
/llvm-project/llvm/lib/IR/
H A DType.cpp278 IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) { get() function in IntegerType
328 FunctionType *FunctionType::get(Type *ReturnType, get() function in FunctionType
354 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { get() function in FunctionType
373 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, get() function in StructType
520 StructType *StructType::get(LLVMContext &Context, bool isPacked) { get() function in StructType
647 ArrayType *ArrayType::get(Type *ElementType, uint64_t NumElements) { get() function in ArrayType
676 VectorType *VectorType::get(Type *ElementType, ElementCount EC) { get() function in VectorType
692 FixedVectorType *FixedVectorType::get(Type *ElementType, unsigned NumElts) { get() function in FixedVectorType
713 ScalableVectorType *ScalableVectorType::get(Type *ElementType, get() function in ScalableVectorType
735 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) { get() function in PointerType
743 PointerType *PointerType::get(LLVMContext &C, unsigned AddressSpace) { get() function in PointerType
796 TargetExtType *TargetExtType::get(LLVMContext &C, StringRef Name, get() function in TargetExtType
[all...]
/llvm-project/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp16.cpp32 void get(U i) {} in get() function
37 …void Test<T>::get<double>(double i) {} // expected-error{{cannot specialize (with 'template<>') a… in get() function in PR10024::Test

12345678910>>...19