HomeSort by relevance Sort by last modified time
    Searched defs:ValueType (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/lldb/include/lldb/Core/
Error.h 33 /// of type Error::ValueType. This value should be large enough to hold
52 /// to fit into ValueType.
54 typedef uint32_t ValueType;
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.
UUID.h 26 typedef uint8_t ValueType[20];
90 DecodeUUIDBytesFromCString (const char *cstr, ValueType &uuid_bytes, const char **end, uint32_t num_uuid_bytes = 16);
97 ValueType m_uuid;
Flags.h 33 typedef uint32_t ValueType;
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)
133 ValueType
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Gauge.h 24 typedef T ValueType;
36 virtual ValueType
39 virtual ValueType
42 virtual ValueType
45 virtual ValueType
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_context.h 38 typedef base::Value ValueType;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
AttributeCollection.h 45 typedef typename Container::ValueType ValueType;
46 typedef ValueType* iterator;
52 ValueType& operator[](unsigned index) const { return at(index); }
53 ValueType& at(unsigned index) const
79 typedef const Attribute ValueType;
  /external/chromium_org/third_party/WebKit/public/platform/
WebVector.h 66 typedef T ValueType;
  /external/lldb/include/lldb/Utility/
Range.h 22 typedef uint64_t ValueType;
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/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 38 typedef KeyValuePair<KeyType, MappedType> ValueType;
46 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
47 const ValueType& operator*() const { return *get(); }
48 const ValueType* operator->() const { return get(); }
61 typedef KeyValuePair<KeyType, MappedType> ValueType;
69 ValueType* get() const { return (ValueType*)m_impl.get(); }
70 ValueType& operator*() const { return *get(); }
71 ValueType* operator->() const { return get();
    [all...]
OwnPtr.h 43 typedef typename RemoveExtent<T>::Type ValueType;
44 typedef ValueType* PtrType;
77 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
80 ValueType& operator[](std::ptrdiff_t i) const;
152 template<typename T> inline typename OwnPtr<T>::ValueType& OwnPtr<T>::operator[](std::ptrdiff_t i) const
PassOwnPtr.h 43 typedef typename RemoveExtent<T>::Type ValueType;
44 typedef ValueType* PtrType;
61 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
HashCountedSet.h 42 typedef Value ValueType;
61 iterator find(const ValueType& value) { return m_impl.find(value); }
62 const_iterator find(const ValueType& value) const { return m_impl.find(value); }
63 bool contains(const ValueType& value ) const { return m_impl.contains(value); }
64 unsigned count(const ValueType& value ) const { return m_impl.get(value); }
69 AddResult add(const ValueType&);
73 bool remove(const ValueType& value) { return remove(find(value)); }
77 void removeAll(const ValueType& value) { removeAll(find(value)); }
90 inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 36 typedef typename Functor::ValueType ValueType;
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
  /external/eigen/unsupported/test/
forward_adolc.cpp 34 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
65 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
104 typename Func::ValueType y(f.values()), yref(f.values());
NumericalDiff.cpp 21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
autodiff.cpp 40 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
71 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
110 typename Func::ValueType y(f.values()), yref(f.values());
  /external/lldb/tools/debugserver/source/
DNBError.h 25 typedef uint32_t ValueType;
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/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 42 typedef typename Functor::ValueType ValueType;
73 ValueType val1, val2;
  /external/lldb/include/lldb/DataFormatters/
TypeCategoryMap.h 29 typedef TypeCategoryImpl ValueType;
30 typedef ValueType::SharedPointer ValueSP;
143 friend class FormatNavigator<KeyType, ValueType>;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFFormValue.h 36 } ValueType;
50 const ValueType& Value() const { return m_value; }
77 ValueType m_value; // Contains all data for the form
  /external/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 38 struct ValueType {
39 ValueType() : data(nullptr) {
52 ValueType Value; // Contains all data for the form.
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 138 MVT ValueType;
146 return ValueType;
  /external/chromium_org/base/
tuple.h 38 // ValueType: the bare, nonref version of a type (same as the type for nonrefs).
44 typedef P ValueType;
51 typedef P ValueType;
280 typedef Tuple1<typename TupleTraits<A>::ValueType> ValueTuple;
287 typedef Tuple2<typename TupleTraits<A>::ValueType,
288 typename TupleTraits<B>::ValueType> ValueTuple;
297 typedef Tuple3<typename TupleTraits<A>::ValueType,
298 typename TupleTraits<B>::ValueType,
299 typename TupleTraits<C>::ValueType> ValueTuple;
310 typedef Tuple4<typename TupleTraits<A>::ValueType,
    [all...]
  /external/chromium_org/chrome/browser/devtools/
devtools_embedder_message_dispatcher.cc 54 typedef typename StorageTraits<A>::StorageType ValueType;
60 ValueType value() const { return value_; }
64 ValueType value_;
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 238 enum ValueType {
252 ValueType Type;

Completed in 2559 milliseconds

1 2 3