HomeSort by: relevance | last modified time | path
    Searched refs:ValueType (Results 1 - 25 of 60) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
EnumeratedArray.h 20 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,
44 ValueType Underlying[Size];
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RefactoringOptions.h 33 using ValueType = Optional<T>;
35 const ValueType &getValue() const { return Value; }
46 using ValueType = T;
48 const ValueType &getValue() const {
RefactoringActionRuleRequirements.h 105 Expected<typename OptionType::ValueType>
  /src/external/bsd/kyua-cli/dist/utils/config/
nodes.hpp 142 template< typename ValueType >
146 typedef ValueType value_type;
193 template< typename ValueType >
194 class native_leaf_node : public typed_leaf_node< ValueType > {
235 template< typename ValueType >
239 typedef std::set< ValueType > value_type;
291 virtual ValueType parse_one(const std::string& raw_value) const = 0;
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
algorithms.bench.cpp 17 enum class ValueType { Uint32, Uint64, Pair, Tuple, String };
18 struct AllValueTypes : EnumValuesAsTuple<AllValueTypes, ValueType, 5> {
26 V() == ValueType::Uint32, uint32_t,
28 V() == ValueType::Uint64, uint64_t,
30 V() == ValueType::Pair, std::pair<uint32_t, uint32_t>,
31 std::conditional_t<V() == ValueType::Tuple,
141 template <class ValueType>
142 std::vector<std::vector<Value<ValueType> > > makeOrderedValues(size_t N,
144 std::vector<std::vector<Value<ValueType> > > Ret;
168 template <class ValueType, class F
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsOptimizePICCall.cpp 57 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);
234 ValueType Entry;
266 ValueType &Val) const
    [all...]
MipsDelaySlotFiller.cpp 188 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>;
195 bool updateDefsUses(ValueType V, bool MayStore);
199 SmallVectorImpl<ValueType> &Objects) const;
202 SmallPtrSet<ValueType, 4> Uses, Defs;
501 SmallVector<ValueType, 4> Objs;
503 for (ValueType VT : Objs)
518 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
529 SmallVectorImpl<ValueType> &Objects) const {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryStreamArray.h 66 /// You create a VarStreamArray by specifying a ValueType and an Extractor type.
68 /// VarStreamArrayExtractor<T> for your ValueType.
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;
119 VarStreamArray<ValueType, Extractor> substream(uint32_t Begin,
153 template <typename ValueType, typename Extractor>
155 : public iterator_facade_base<VarStreamArrayIterator<ValueType, Extractor>
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
AMDGPUMetadata.cpp 74 struct ScalarEnumerationTraits<ValueType> {
75 static void enumeration(IO &YIO, ValueType &EN) {
76 YIO.enumCase(EN, "Struct", ValueType::Struct);
77 YIO.enumCase(EN, "I8", ValueType::I8);
78 YIO.enumCase(EN, "U8", ValueType::U8);
79 YIO.enumCase(EN, "I16", ValueType::I16);
80 YIO.enumCase(EN, "U16", ValueType::U16);
81 YIO.enumCase(EN, "F16", ValueType::F16);
82 YIO.enumCase(EN, "I32", ValueType::I32);
83 YIO.enumCase(EN, "U32", ValueType::U32)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFFormValue.h 42 struct ValueType {
43 ValueType() { uval = 0; }
44 ValueType(int64_t V) : sval(V) {}
45 ValueType(uint64_t V) : uval(V) {}
46 ValueType(const char *V) : cstr(V) {}
60 ValueType Value; /// Contains all data for the form.
64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {}
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 153 struct ValueType {
174 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS)
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::getValueType<bool>()
    [all...]
ThreadSafetyTraverse.h 556 ValueType VT = E->valueType();
558 case ValueType::BT_Void:
561 case ValueType::BT_Bool:
567 case ValueType::BT_Int:
569 case ValueType::ST_8:
575 case ValueType::ST_16:
581 case ValueType::ST_32:
587 case ValueType::ST_64:
597 case ValueType::BT_Float
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 106 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);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 112 template <RewriteDescriptor::Type DT, typename ValueType,
113 ValueType *(Module::*Get)(StringRef) const>
133 template <RewriteDescriptor::Type DT, typename ValueType,
134 ValueType *(Module::*Get)(StringRef) const>
135 bool ExplicitRewriteDescriptor<DT, ValueType, Get>::performOnModule(Module &M) {
137 if (ValueType *S = (M.*Get)(Source)) {
153 template <RewriteDescriptor::Type DT, typename ValueType,
154 ValueType *(Module::*Get)(StringRef) const,
155 iterator_range<typename iplist<ValueType>::iterator>
175 template <RewriteDescriptor::Type DT, typename ValueType,
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 143 MVT ValueType;
152 return ValueType;
StatepointLowering.h 88 /// Get a stack slot we can use to store an value of type ValueType. This
90 SDValue allocateStackSlot(EVT ValueType, SelectionDAGBuilder &Builder);
  /src/external/gpl3/binutils/dist/gprofng/src/
enums.h 63 enum ValueType
  /src/external/gpl3/binutils.old/dist/gprofng/src/
enums.h 63 enum ValueType
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 30 LLVM_YAML_STRONG_TYPEDEF(uint32_t, ValueType)
68 ValueType ElemKind;
75 ValueType Type;
100 ValueType Type;
152 std::vector<ValueType> ParamTypes;
153 std::vector<ValueType> ReturnTypes;
409 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ValueType)
553 template <> struct ScalarEnumerationTraits<WasmYAML::ValueType> {
554 static void enumeration(IO &IO, WasmYAML::ValueType &Type);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExternalASTSource.h 403 using ValueType = llvm::PointerUnion<T, LazyData*>;
404 ValueType Value;
406 LazyGenerationalUpdatePtr(ValueType V) : Value(V) {}
409 static ValueType makeValue(const ASTContext &Ctx, T Value);
459 return LazyGenerationalUpdatePtr(ValueType::getFromOpaqueValue(Ptr));
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalValue.h 79 ValueType(Ty), Visibility(DefaultVisibility),
88 Type *ValueType;
273 Type *getValueType() const { return ValueType; }
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 331 enum ValueType {
351 ValueType Type;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
benchmark_test.cc 101 typename ValueType = typename Container::value_type>
103 ValueType v = 42;
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
benchmark_test.cc 101 typename ValueType = typename Container::value_type>
103 ValueType v = 42;
  /src/external/gpl3/gcc/dist/gcc/
coretypes.h 378 template <typename ValueType>
382 const ValueType value; /* the value of the name */

Completed in 38 milliseconds

1 2 3