/external/lldb/include/lldb/Core/ |
H A D | 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; 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 D | UUID.h | 26 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 D | Flags.h | 33 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...] |
/external/lldb/tools/lldb-perf/lib/ |
H A D | Gauge.h | 24 typedef T ValueType; typedef in class:lldb_perf::Gauge 36 virtual ValueType 39 virtual ValueType 42 virtual ValueType 45 virtual ValueType
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
H A D | screen_context.h | 38 typedef base::Value ValueType; typedef in class:chromeos::ScreenContext
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | AttributeCollection.h | 45 typedef typename Container::ValueType ValueType; typedef in class:blink::AttributeCollectionGeneric 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/ |
H A D | WebVector.h | 66 typedef T ValueType; typedef in class:blink::WebVector
|
/external/lldb/include/lldb/Utility/ |
H A D | Range.h | 22 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 D | ValueType.java | 34 public final class ValueType { class 52 private ValueType() {} method in class:ValueType
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
H A D | AutoDiffJacobian.h | 36 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 D | NumericalDiff.h | 42 typedef typename Functor::ValueType ValueType; typedef in class:Eigen::NumericalDiff 73 ValueType val1, val2;
|
/external/eigen/unsupported/test/ |
H A D | NumericalDiff.cpp | 21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType; typedef in struct:Functor
|
H A D | forward_adolc.cpp | 34 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 D | autodiff.cpp | 40 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 D | TypeCategoryMap.h | 29 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 D | DWARFFormValue.h | 36 } 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 D | DNBError.h | 25 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/ |
H A D | DWARFFormValue.h | 38 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 D | ScheduleDAGSDNodes.h | 138 MVT ValueType; member in class:llvm::ScheduleDAGSDNodes::RegDefIter 146 return ValueType;
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
H A D | HashIterators.h | 38 typedef KeyValuePair<KeyType, MappedType> ValueType; typedef in struct:WTF::HashTableConstIteratorAdapter 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; typedef in struct:WTF::HashTableIteratorAdapter 69 ValueType* get() const { return (ValueType*)m_impl.get(); } 70 ValueType& operator*() const { return *get(); } 71 ValueType* operato [all...] |
H A D | HashCountedSet.h | 42 typedef Value ValueType; typedef in class:WTF::HashCountedSet 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)
|
H A D | OwnPtr.h | 43 typedef typename RemoveExtent<T>::Type ValueType; typedef in class:WTF::OwnPtr 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
|
H A D | PassOwnPtr.h | 43 typedef typename RemoveExtent<T>::Type ValueType; typedef in class:WTF::PassOwnPtr 44 typedef ValueType* PtrType; 61 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
|
/external/chromium_org/chrome/browser/devtools/ |
H A D | devtools_embedder_message_dispatcher.cc | 54 typedef typename StorageTraits<A>::StorageType ValueType; typedef in class:__anon3547::Argument 60 ValueType value() const { return value_; } 64 ValueType value_;
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
H A D | VariantValue.h | 238 enum ValueType { enum in class:clang::ast_matchers::dynamic::VariantValue 252 ValueType Type;
|