| /llvm-project/libcxx/test/std/iterators/iterator.requirements/alg.req.ind.copy/ |
| H A D | indirectly_copyable_storable.compile.pass.cpp | 50 struct ValueType; 53 ReferenceType& operator=(ValueType const&); 54 ReferenceType& operator=(ValueType&) = delete; 55 ReferenceType& operator=(ValueType&&); 56 ReferenceType& operator=(ValueType const&&); 59 struct ValueType { struct 63 using value_type = ValueType; 77 struct ValueType; 80 ReferenceType& operator=(ValueType const&) = delete; 81 ReferenceType& operator=(ValueType&); [all …]
|
| /llvm-project/libcxx/test/std/iterators/iterator.requirements/alg.req.ind.move/ |
| H A D | indirectly_movable_storable.compile.pass.cpp | 39 struct ValueType; 42 ReferenceType& operator=(ValueType) = delete; 47 struct ValueType { struct 51 using value_type = ValueType; 75 struct ValueType; 78 ReferenceType& operator=(ValueType const&); 81 struct ValueType { struct 82 ValueType() = default; 83 ValueType(const ReferenceType&); 86 using value_type = ValueType; [all …]
|
| /llvm-project/lldb/include/lldb/Utility/ |
| H A D | Flags.h | 25 typedef uint32_t ValueType; typedef 34 Flags(ValueType flags = 0) : m_flags(flags) {} in m_flags() 40 ValueType Get() const { return m_flags; } in Get() 46 size_t GetBitSize() const { return sizeof(ValueType) * 8; } in GetBitSize() 52 void Reset(ValueType flags) { m_flags = flags; } in Reset() 61 ValueType Clear(ValueType mask = ~static_cast<ValueType>(0)) { 73 ValueType Set(ValueType mask) { in Set() 83 bool AllSet(ValueType mask) const { return (m_flags & mask) == mask; } in AllSet() 90 bool AnySet(ValueType mask) const { return (m_flags & mask) != 0; } in AnySet() 96 bool Test(ValueType bit) const { return (m_flags & bit) != 0; } in Test() [all …]
|
| /llvm-project/mlir/lib/Query/Matcher/ |
| H A D | VariantValue.cpp | 45 : type(ValueType::Nothing) { in VariantValue() 50 : type(ValueType::String) { in VariantValue() 55 : type(ValueType::Matcher) { in VariantValue() 66 case ValueType::String: in operator =() 69 case ValueType::Matcher: in operator =() 72 case ValueType::Nothing: in operator =() 73 type = ValueType::Nothing; in operator =() 81 case ValueType::String: in reset() 84 case ValueType::Matcher: in reset() 88 case ValueType::Nothing: in reset() [all …]
|
| /llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 48 : m_value(), m_compiler_type(), m_value_type(ValueType::HostAddress), in Value() 89 m_value_type = ValueType::HostAddress; in SetBytes() 95 m_value_type = ValueType::HostAddress; in AppendBytes() 109 Value::ValueType Value::GetValueType() const { return m_value_type; } in GetValueType() 113 case ValueType::Invalid: in GetValueAddressType() 114 case ValueType::Scalar: in GetValueAddressType() 116 case ValueType::LoadAddress: in GetValueAddressType() 118 case ValueType::FileAddress: in GetValueAddressType() 120 case ValueType::HostAddress: in GetValueAddressType() 126 Value::ValueType Valu [all...] |
| H A D | ValueObjectMemory.cpp | |
| H A D | ValueObjectChild.cpp | |
| H A D | ValueObjectVariable.cpp | |
| /llvm-project/llvm/include/llvm/ADT/ |
| H A D | EnumeratedArray.h | 23 template <typename ValueType, typename Enumeration, 28 using iterator = ValueType *; 29 using const_iterator = const ValueType *; 34 using value_type = ValueType; 35 using reference = ValueType &; 36 using const_reference = const ValueType &; 37 using pointer = ValueType *; 38 using const_pointer = const ValueType *; 41 EnumeratedArray(ValueType V) { in EnumeratedArray() 46 EnumeratedArray(std::initializer_list<ValueType> Init) { in EnumeratedArray() [all …]
|
| /llvm-project/llvm/lib/Target/VE/ |
| H A D | VVPInstrPatternsVec.td | 20 multiclass VectorStore<ValueType DataVT, 21 ValueType PtrVT, ValueType MaskVT, 54 multiclass VectorLoad<ValueType DataVT, 55 ValueType PtrVT, ValueType MaskVT, 98 multiclass VectorGather<ValueType DataVT, 99 ValueType PtrVT, ValueType MaskVT, 115 multiclass VectorScatter<ValueType DataVT, 116 ValueType PtrVT, ValueType MaskVT, 142 multiclass FNeg<ValueType DataVT> { 182 ValueType ScalarVT, ValueType DataVT, [all …]
|
| H A D | VEInstrPatternsVec.td | 43 multiclass vbrd_elem32<ValueType v32, ValueType s32, SDPatternOperator ImmOp, 54 multiclass vbrd_elem64<ValueType v64, ValueType s64, 65 multiclass extract_insert_elem32<ValueType v32, ValueType s32, 83 multiclass extract_insert_elem64<ValueType v64, ValueType s64> { 99 multiclass patterns_elem32<ValueType v32, ValueType s32, 106 multiclass patterns_elem64<ValueType v64, ValueType s64, 123 class Mask_Binary<ValueType MaskVT, SDPatternOperator MaskOp, string InstName> : 144 multiclass Packing<ValueType PackVT> {
|
| /llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | fold-init-type.cpp | 39 template <typename ValueType> struct ByValueTemplateIterator { 40 ValueType operator*() const; 43 template <typename ValueType> struct ByRefTemplateIterator { 44 ValueType &operator*(); 47 template <typename ValueType> struct ByRefTemplateIteratorWithAlias { 48 using reference = const ValueType&; 52 template <typename ValueType> struct AutoByValueTemplateIterator { 53 auto operator*() const { return ValueType{}; } in operator *() 56 template <typename ValueType> struct AutoByRefTemplateIterator { 58 ValueType value_; [all …]
|
| /llvm-project/mlir/test/python/dialects/ |
| H A D | pdl_types.py | 24 assert not pdl.ValueType.isinstance(parsedType) 30 assert not pdl.ValueType.isinstance(constructedType) 51 assert not pdl.ValueType.isinstance(parsedType) 57 assert not pdl.ValueType.isinstance(constructedType) 80 assert not pdl.ValueType.isinstance(parsedType) 86 assert not pdl.ValueType.isinstance(constructedType) 110 assert not pdl.ValueType.isinstance(parsedType) 116 assert not pdl.ValueType.isinstance(constructedType) 131 constructedType = pdl.ValueType.get() 137 assert pdl.ValueType.isinstance(parsedType) [all …]
|
| /llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsOptimizePICCall.cpp | 56 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>; typedef 59 ScopedHashTableVal<ValueType, CntRegP>>; 60 using ScopedHTType = ScopedHashTable<ValueType, CntRegP, 61 DenseMapInfo<ValueType>, AllocatorTy>; 100 ValueType &Val) const; 104 unsigned getCount(ValueType Entry); 108 unsigned getReg(ValueType Entry); 111 void incCntAndSetReg(ValueType Entry, unsigned Reg); 234 ValueType Entry; in visitNode() 266 ValueType &Val) const { in isCallViaRegister() [all …]
|
| /llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 41 enum class ValueType { enum 83 ValueType GetValueType() const; 89 void SetValueType(ValueType value_type) { m_value_type = value_type; } in SetValueType() 102 SetValueType(ValueType::Scalar); in SetContext() 137 static const char *GetValueTypeAsCString(ValueType context_type); 148 static ValueType GetValueTypeFromAddressType(AddressType address_type); 154 ValueType m_value_type = ValueType::Scalar;
|
| /llvm-project/llvm/include/llvm/Support/ |
| H A D | BinaryStreamArray.h | 88 template <typename ValueType, typename Extractor> class VarStreamArrayIterator; 90 template <typename ValueType, 91 typename Extractor = VarStreamArrayExtractor<ValueType>> 93 friend class VarStreamArrayIterator<ValueType, Extractor>; 96 typedef VarStreamArrayIterator<ValueType, Extractor> Iterator; 121 VarStreamArray<ValueType, Extractor> substream(uint32_t Begin, in substream() 155 template <typename ValueType, typename Extractor> 157 : public iterator_facade_base<VarStreamArrayIterator<ValueType, Extractor>, 158 std::forward_iterator_tag, const ValueType> { 159 typedef VarStreamArrayIterator<ValueType, Extractor> IterType; [all …]
|
| /llvm-project/llvm/lib/Support/ |
| H A D | AMDGPUMetadata.cpp | 75 struct ScalarEnumerationTraits<ValueType> { 76 static void enumeration(IO &YIO, ValueType &EN) { in enumeration() 77 YIO.enumCase(EN, "Struct", ValueType::Struct); in enumeration() 78 YIO.enumCase(EN, "I8", ValueType::I8); in enumeration() 79 YIO.enumCase(EN, "U8", ValueType::U8); in enumeration() 80 YIO.enumCase(EN, "I16", ValueType::I16); in enumeration() 81 YIO.enumCase(EN, "U16", ValueType::U16); in enumeration() 82 YIO.enumCase(EN, "F16", ValueType::F16); in enumeration() 83 YIO.enumCase(EN, "I32", ValueType::I32); in enumeration() 84 YIO.enumCase(EN, "U32", ValueType::U32); in enumeration() [all …]
|
| /llvm-project/lldb/tools/debugserver/source/ |
| H A D | DNBError.h | 23 typedef uint32_t ValueType; typedef 42 explicit DNBError(ValueType err = 0, FlavorType flavor = Generic) 51 ValueType Status() const { return m_err; } in Status() 54 ValueType operator=(kern_return_t err) { 73 void SetError(ValueType err, FlavorType flavor) { in SetError() 92 ValueType m_err;
|
| /llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTIL.h | 152 struct ValueType { struct 173 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) in ValueType() argument 179 inline static ValueType getValueType(); 189 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { in getSizeType() argument 201 inline ValueType ValueType::getValueType<void>() { 202 return ValueType(BT_Void, ST_0, false, 0); 206 inline ValueType ValueType [all...] |
| /llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUGISel.td | 306 ValueType dst_vt, 307 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < 316 ValueType dst_vt, 317 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < 326 ValueType dst_vt, 327 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat < 336 ValueType dst_v [all...] |
| /llvm-project/llvm/lib/ObjectYAML/ |
| H A D | GOFFEmitter.cpp | 33 template <typename ValueType> struct BinaryBeImpl { 34 ValueType Value; 35 BinaryBeImpl(ValueType V) : Value(V) {} 38 template <typename ValueType> 39 raw_ostream &operator<<(raw_ostream &OS, const BinaryBeImpl<ValueType> &BBE) { 41 support::endian::write<ValueType, llvm::endianness::big, support::unaligned>( in operator <<() 47 template <typename ValueType> BinaryBeImpl<ValueType> binaryBe(ValueType V) { 48 return BinaryBeImpl<ValueType>( [all...] |
| /llvm-project/bolt/include/bolt/Passes/ |
| H A D | ReorderUtils.h | 70 template <typename Cluster, typename ValueType> class ClusterPairCache { 79 ValueType get(const Cluster *First, const Cluster *Second) const { in get() 84 void set(const Cluster *First, const Cluster *Second, ValueType Value) { in set() 102 std::vector<ValueType> Cache; 110 template <typename Cluster, typename ValueType> 120 ValueType get(const Cluster *First, const Cluster *Second) const { in get() 125 void set(const Cluster *First, const Cluster *Second, ValueType Value) { in set() 141 std::vector<ValueType> Cache;
|
| /llvm-project/libcxx/test/std/containers/associative/map/ |
| H A D | get_allocator.pass.cpp | 23 typedef std::pair<const int, std::string> ValueType; in main() typedef 25 std::allocator<ValueType> alloc; in main() 30 other_allocator<ValueType> alloc(1); in main() 32 other_allocator<ValueType> > m(alloc); in main()
|
| /llvm-project/libcxx/test/std/containers/associative/multimap/ |
| H A D | get_allocator.pass.cpp | 23 typedef std::pair<const int, std::string> ValueType; in main() typedef 25 std::allocator<ValueType> alloc; in main() 30 other_allocator<ValueType> alloc(1); in main() 32 other_allocator<ValueType> > m(alloc); in main()
|
| /llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | ValueTypes.td | 1 //===- ValueTypes.td - ValueType definitions ---------------*- tablegen -*-===// 9 // ValueTypes.td - list of ValueType instances supported by the the 14 class ValueType<int size, int value> { 20 ValueType ElementType = ?; 33 class VTAny<int value> : ValueType<0, value> { 38 : ValueType<size, value> { 43 : ValueType<size, value> { 47 class VTVec<int nelem, ValueType elt, int value> 48 : ValueType<!mul(nelem, elt.Size), value> { 56 class VTScalableVec<int nelem, ValueType el [all...] |