Searched refs:ValueType (Results 1 - 25 of 108) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFlags.h25 typedef uint32_t ValueType; typedef in class:lldb_private::Flags
34 Flags(ValueType flags = 0) : m_flags(flags) {}
39 /// Returns all of the flags as a Flags::ValueType.
40 ValueType Get() const { return m_flags; }
46 size_t GetBitSize() const { return sizeof(ValueType) * 8; }
52 void Reset(ValueType flags) { m_flags = flags; }
61 ValueType Clear(ValueType mask = ~static_cast<ValueType>(0)) {
73 ValueType Se
[all...]
H A DStatus.h33 /// Status::ValueType. This value should be large enough to hold any and all
47 /// into ValueType.
48 typedef uint32_t ValueType; typedef in class:lldb_private::Status
59 explicit Status(ValueType err,
104 ValueType GetError() const;
136 void SetError(ValueType err, lldb::ErrorType type);
199 ValueType m_code; ///< Status code as an integer value.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEnumeratedArray.h20 template <typename ValueType, typename Enumeration,
26 EnumeratedArray(ValueType V) {
31 inline const ValueType &operator[](const Enumeration Index) const {
36 inline ValueType &operator[](const Enumeration Index) {
37 return const_cast<ValueType &>(
38 static_cast<const EnumeratedArray<ValueType, Enumeration, LargestEnum,
43 ValueType Underlying[Size];
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringOptions.h33 using ValueType = Optional<T>;
35 const ValueType &getValue() const { return Value; }
46 using ValueType = T;
48 const ValueType &getValue() const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOptimizePICCall.cpp57 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
60 ScopedHashTableVal<ValueType, CntRegP>>;
61 using ScopedHTType = ScopedHashTable<ValueType, CntRegP,
62 DenseMapInfo<ValueType>, AllocatorTy>;
101 ValueType &Val) const;
105 unsigned getCount(ValueType Entry);
109 unsigned getReg(ValueType Entry);
112 void incCntAndSetReg(ValueType Entry, unsigned Reg);
235 ValueType Entry;
267 ValueType
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h31 } ValueType; typedef in class:DWARFFormValue
49 const ValueType &Value() const { return m_value; }
50 ValueType &ValueRef() { return m_value; }
51 void SetValue(const ValueType &val) { m_value = val; }
86 ValueType m_value; // Contains all data for the form
H A DDWARFAttribute.h22 DWARFFormValue::ValueType value)
32 DWARFFormValue::ValueType &val) const {
47 DWARFFormValue::ValueType m_value;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamArray.h62 /// You create a VarStreamArray by specifying a ValueType and an Extractor type.
64 /// VarStreamArrayExtractor<T> for your ValueType.
84 template <typename ValueType, typename Extractor> class VarStreamArrayIterator;
86 template <typename ValueType,
87 typename Extractor = VarStreamArrayExtractor<ValueType>>
89 friend class VarStreamArrayIterator<ValueType, Extractor>;
92 typedef VarStreamArrayIterator<ValueType, Extractor> Iterator;
115 VarStreamArray<ValueType, Extractor> substream(uint32_t Begin,
149 template <typename ValueType, typename Extractor>
151 : public iterator_facade_base<VarStreamArrayIterator<ValueType, Extracto
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrameRecognizer.h126 /// value with the specified ValueType. Frame recognizers should return
131 static lldb::ValueObjectSP Create(ValueObject &parent, lldb::ValueType type) {
135 lldb::ValueType type)
141 lldb::ValueType GetValueType() const override { return m_type; }
156 lldb::ValueType m_type;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAMDGPUMetadata.cpp75 struct ScalarEnumerationTraits<ValueType> {
76 static void enumeration(IO &YIO, ValueType &EN) {
77 YIO.enumCase(EN, "Struct", ValueType::Struct);
78 YIO.enumCase(EN, "I8", ValueType::I8);
79 YIO.enumCase(EN, "U8", ValueType::U8);
80 YIO.enumCase(EN, "I16", ValueType::I16);
81 YIO.enumCase(EN, "U16", ValueType::U16);
82 YIO.enumCase(EN, "F16", ValueType::F16);
83 YIO.enumCase(EN, "I32", ValueType::I32);
84 YIO.enumCase(EN, "U32", ValueType
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariableList.h45 lldb::ValueType value_type,
60 size_t AppendVariablesWithScope(lldb::ValueType type, VariableList &var_list,
H A DVariable.h33 const lldb::SymbolFileTypeSP &symfile_type_sp, lldb::ValueType scope,
65 lldb::ValueType GetScope() const { return m_scope; }
116 lldb::ValueType m_scope;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h42 struct ValueType { struct in class:llvm::DWARFFormValue
43 ValueType() { uval = 0; } function in struct:llvm::DWARFFormValue::ValueType
44 ValueType(int64_t V) : sval(V) {} function in struct:llvm::DWARFFormValue::ValueType
45 ValueType(uint64_t V) : uval(V) {} function in struct:llvm::DWARFFormValue::ValueType
46 ValueType(const char *V) : cstr(V) {} function in struct:llvm::DWARFFormValue::ValueType
58 ValueType Value; /// Contains all data for the form.
62 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {}
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h27 typedef TypeCategoryImpl ValueType; typedef in class:lldb_private::TypeCategoryMap
28 typedef ValueType::SharedPointer ValueSP;
106 friend class FormattersContainer<KeyType, ValueType>;
H A DFormattersContainer.h62 template <typename KeyType, typename ValueType> class FormattersContainer;
64 template <typename KeyType, typename ValueType> class FormatMap {
66 typedef typename ValueType::SharedPointer ValueSP;
153 friend class FormattersContainer<KeyType, ValueType>;
157 template <typename KeyType, typename ValueType> class FormattersContainer {
159 typedef FormatMap<KeyType, ValueType> BackEndType;
165 typedef std::shared_ptr<ValueType> MapValueType;
167 typedef typename std::shared_ptr<FormattersContainer<KeyType, ValueType>>
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h153 struct ValueType { struct in namespace:clang::threadSafety::til
174 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) function in namespace:clang::threadSafety::til
180 inline static ValueType getValueType();
190 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) {
202 inline ValueType ValueType::getValueType<void>() {
203 return ValueType(BT_Void, ST_0, false, 0);
207 inline ValueType ValueType
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h37 lldb::ValueType GetValueType() const override;
H A DValue.h42 enum ValueType { enum in class:lldb_private::Value
138 ValueType GetValueType() const;
144 void SetValueType(ValueType value_type) { m_value_type = value_type; }
215 static const char *GetValueTypeAsCString(ValueType context_type);
231 ValueType m_value_type;
H A DValueObjectRegister.h39 lldb::ValueType GetValueType() const override {
78 lldb::ValueType GetValueType() const override {
125 lldb::ValueType GetValueType() const override {
H A DValueObjectChild.h41 lldb::ValueType GetValueType() const override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDAGInstrs.h106 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
108 struct UnderlyingObject : PointerIntPair<ValueType, 1, bool> {
109 UnderlyingObject(ValueType V, bool MayAlias)
110 : PointerIntPair<ValueType, 1, bool>(V, MayAlias) {}
112 ValueType getValue() const { return getPointer(); }
193 /// A map from ValueType to SUList, used during DAG construction, as
220 ValueType V);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp112 template <RewriteDescriptor::Type DT, typename ValueType,
113 ValueType *(Module::*Get)(StringRef) const>
132 template <RewriteDescriptor::Type DT, typename ValueType,
133 ValueType *(Module::*Get)(StringRef) const>
134 bool ExplicitRewriteDescriptor<DT, ValueType, Get>::performOnModule(Module &M) {
136 if (ValueType *S = (M.*Get)(Source)) {
152 template <RewriteDescriptor::Type DT, typename ValueType,
153 ValueType *(Module::*Get)(StringRef) const,
154 iterator_range<typename iplist<ValueType>::iterator>
173 template <RewriteDescriptor::Type DT, typename ValueType,
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h180 lldb::SBValue FindValue(const char *name, ValueType value_type);
182 lldb::SBValue FindValue(const char *name, ValueType value_type,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h143 MVT ValueType; member in class:llvm::ScheduleDAGSDNodes::RegDefIter
152 return ValueType;
H A DStatepointLowering.h90 /// Get a stack slot we can use to store an value of type ValueType. This
92 SDValue allocateStackSlot(EVT ValueType, SelectionDAGBuilder &Builder);

Completed in 265 milliseconds

12345