Searched defs:ValueType (Results 1 - 25 of 46) sorted by relevance

12

/external/lldb/include/lldb/Core/
H A DError.h33 /// of type Error::ValueType. This value should be large enough to hold
52 /// to fit into ValueType.
54 typedef uint32_t ValueType; typedef in class:lldb_private::Error
70 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric);
147 ValueType
226 SetError (ValueType err, lldb::ErrorType type);
304 ValueType m_code; ///< Error code as an integer value.
H A DUUID.h26 typedef uint8_t ValueType[20]; typedef in class:lldb_private::UUID
90 DecodeUUIDBytesFromCString (const char *cstr, ValueType &uuid_bytes, const char **end, uint32_t num_uuid_bytes = 16);
97 ValueType m_uuid;
H A DFlags.h33 typedef uint32_t ValueType; typedef in class:lldb_private::Flags
44 Flags (ValueType flags = 0) :
73 /// Returns all of the flags as a Flags::ValueType.
75 ValueType
91 return sizeof (ValueType) * 8;
101 Reset (ValueType flags)
115 ValueType
116 Clear (ValueType mask = ~(ValueType)0) argument
133 ValueType
[all...]
H A DValue.h34 enum ValueType enum in class:lldb_private::Value
139 ValueType
152 SetValueType (ValueType value_type)
260 GetValueTypeAsCString (ValueType context_type);
276 ValueType m_value_type;
/external/lldb/tools/lldb-perf/lib/
H A DGauge.h24 typedef T ValueType; typedef in class:lldb_perf::Gauge
36 virtual ValueType
39 virtual ValueType
42 virtual ValueType
45 virtual ValueType
/external/lldb/include/lldb/Utility/
H A DRange.h22 typedef uint64_t ValueType; typedef in class:lldb_utility::Range
24 static const ValueType OPEN_END = UINT64_MAX;
28 Range (ValueType low = 0,
29 ValueType high = OPEN_END);
34 ValueType
40 ValueType
47 SetLow (ValueType low)
53 SetHigh (ValueType high)
67 typedef bool (*RangeCallback)(ValueType index);
72 ValueType
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DValueType.java34 public final class ValueType { class
52 private ValueType() {} method in class:ValueType
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h36 typedef typename Functor::ValueType ValueType; typedef in class:Eigen::AutoDiffJacobian
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h42 typedef typename Functor::ValueType ValueType; typedef in class:Eigen::NumericalDiff
73 ValueType val1, val2;
/external/eigen/unsupported/test/
H A DNumericalDiff.cpp21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType; typedef in struct:Functor
H A Dforward_adolc.cpp34 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType; typedef in struct:TestFunc1
65 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
104 typename Func::ValueType y(f.values()), yref(f.values());
H A Dautodiff.cpp40 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType; typedef in struct:TestFunc1
71 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
110 typename Func::ValueType y(f.values()), yref(f.values());
/external/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h29 typedef TypeCategoryImpl ValueType; typedef in class:lldb_private::TypeCategoryMap
30 typedef ValueType::SharedPointer ValueSP;
143 friend class FormatNavigator<KeyType, ValueType>;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h36 } ValueType; typedef in class:DWARFFormValue
50 const ValueType& Value() const { return m_value; }
77 ValueType m_value; // Contains all data for the form
/external/lldb/tools/debugserver/source/
H A DDNBError.h25 typedef uint32_t ValueType; typedef in class:DNBError
36 explicit DNBError( ValueType err = 0,
45 ValueType Error() const { return m_err; }
48 ValueType operator = (kern_return_t err)
70 void SetError(ValueType err, FlavorType flavor)
90 ValueType m_err;
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h38 struct ValueType { struct in class:llvm::DWARFFormValue
39 ValueType() : data(nullptr) { function in struct:llvm::DWARFFormValue::ValueType
52 ValueType Value; // Contains all data for the form.
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h138 MVT ValueType; member in class:llvm::ScheduleDAGSDNodes::RegDefIter
146 return ValueType;
H A DStatepointLowering.cpp66 StatepointLoweringState::allocateStackSlot(EVT ValueType, argument
90 SDValue SpillSlot = Builder.DAG.CreateStackTemporary(ValueType);
99 return Builder.DAG.getFrameIndex(FI, ValueType);
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h304 enum ValueType { enum in class:clang::ast_matchers::dynamic::VariantValue
318 ValueType Type;
/external/clang/test/SemaTemplate/
H A Dinstantiate-local-class.cpp19 typedef T ValueType; typedef
21 Y() { V = ValueType(); }
23 ValueType V;
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.cpp39 struct Help { typedef bool ValueType; }; typedef in struct:de::cmdline::__anon2994::Help
H A DdeCommandLine.hpp41 template<typename ValueType>
42 void parseType (const char* src, ValueType* dst);
54 typedef typename OptName::ValueType ValueType; typedef in struct:de::cmdline::Option
55 typedef void (*ParseFunc) (const char* src, ValueType* dst);
65 const NamedValue<ValueType>* namedValues; //!< Named values or null.
66 const NamedValue<ValueType>* namedValuesEnd; //!< Named value list end.
74 , parse (parseType<ValueType>)
93 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<ValueType>* namedValuesEnd
121 typedef typename Option::ValueType ValueType; typedef in struct:de::cmdline::OptTraits
152 typedef typename OptTraits<Name>::ValueType ValueType; typedef in struct:de::cmdline::detail::TypedFieldTraits
[all...]
/external/google-breakpad/src/processor/
H A Dstatic_map_unittest.cc41 typedef int ValueType; typedef
43 typedef google_breakpad::StaticMap< KeyType, ValueType > TestMap;
44 typedef std::map< KeyType, ValueType > StdMap;
127 header[2] = kHeaderOffset + sizeof(ValueType);
174 sizeof(uint32_t) + sizeof(KeyType) + sizeof(ValueType);
311 SimpleMapSerializer<KeyType, ValueType> serializer;
/external/llvm/lib/Target/Mips/
H A DMipsOptimizePICCall.cpp38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef in namespace:__anon10771
42 ScopedHashTableVal<ValueType, CntRegP> >
44 typedef ScopedHashTable<ValueType, CntRegP, DenseMapInfo<ValueType>,
83 ValueType &Val) const;
87 unsigned getCount(ValueType Entry);
91 unsigned getReg(ValueType Entry);
94 void incCntAndSetReg(ValueType Entry, unsigned Reg);
215 ValueType Entry;
247 ValueType
[all...]
/external/clang/include/clang/AST/
H A DExternalASTSource.h395 typedef llvm::PointerUnion<T, LazyData*> ValueType; typedef in struct:clang::LazyGenerationalUpdatePtr
396 ValueType Value;
398 LazyGenerationalUpdatePtr(ValueType V) : Value(V) {}
401 static ValueType makeValue(const ASTContext &Ctx, T Value);
451 return LazyGenerationalUpdatePtr(ValueType::getFromOpaqueValue(Ptr));

Completed in 587 milliseconds

12