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

1 2 3

  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 28 typedef Path::ValueType ValueType;
33 explicit RealPath(const ValueType* s );
Path.h 49 typedef char ValueType;
54 Path(const ValueType* s);
63 Path& assign(const ValueType* s, unsigned int length);
79 const ValueType* c_str() const
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_context.h 38 typedef base::Value ValueType;
  /external/chromium_org/chromeos/ime/
input_method_config.h 24 enum ValueType {
33 ValueType type;
  /external/chromium_org/third_party/WebKit/public/platform/
WebVector.h 64 typedef T ValueType;
  /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...]
HashCountedSet.h 36 typedef Value ValueType;
55 iterator find(const ValueType&);
56 const_iterator find(const ValueType&) const;
57 bool contains(const ValueType&) const;
58 unsigned count(const ValueType&) const;
63 AddResult add(const ValueType&);
67 bool remove(const ValueType&);
72 void removeAll(const ValueType&);
130 inline typename HashCountedSet<Value, HashFunctions, Traits>::iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value)
136 inline typename HashCountedSet<Value, HashFunctions, Traits>::const_iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value) cons
    [all...]
OwnPtr.h 47 typedef typename RemovePointer<T>::Type ValueType;
48 typedef ValueType* PtrType;
61 OwnPtr(const OwnPtr<ValueType>&);
72 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
PassOwnPtr.h 45 typedef typename RemovePointer<T>::Type ValueType;
46 typedef ValueType* PtrType;
63 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
HashSet.h 43 typedef typename ValueTraits::TraitType ValueType;
46 typedef HashTable<ValueType, ValueType, IdentityExtractor,
50 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> iterator;
51 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
63 iterator find(const ValueType&) const;
64 bool contains(const ValueType&) const;
70 // static bool equal(const ValueType&, const T&);
76 AddResult add(const ValueType&);
82 // static bool equal(const ValueType&, const T&)
    [all...]
  /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/llvm/include/llvm/DebugInfo/
DWARFFormValue.h 22 struct ValueType {
23 ValueType() : data(NULL) {
45 ValueType Value; // Contains all data for the form.
50 const ValueType& value() const { return Value; }
  /external/chromium/chrome/browser/automation/
automation_resource_tracker.h 22 typedef T ValueType;
27 typedef T ValueType;
127 Source<typename AutomationResourceTraits<T>::ValueType>(source).ptr();
  /external/chromium_org/chrome/browser/automation/
automation_resource_tracker.h 21 typedef T ValueType;
26 typedef T ValueType;
126 ValueType>(source).ptr();
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 159 enum ValueType {
173 ValueType Type;
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 20 typedef T ValueType;
22 Y() { V = ValueType(); }
24 ValueType V;
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 42 typedef typename Functor::ValueType ValueType;
71 ValueType val1, val2;
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 138 MVT ValueType;
146 return ValueType;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ValueType.java 33 public enum ValueType {
53 * A map to facilitate looking up a <code>ValueType</code> by byte value
55 private final static SparseArray<ValueType> valueTypeIntegerMap;
59 valueTypeIntegerMap = new SparseArray<ValueType>(16);
61 for (ValueType valueType : ValueType.values()) {
62 valueTypeIntegerMap.put(valueType.value, valueType);
67 * The byte value for this ValueType
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 37 typedef uint64_t ValueType;
100 ValueType value() const
123 void setValue(ValueType pValue)
142 ValueType m_Value;
  /external/chromium/base/
tuple.h 41 // ValueType: the bare, nonref version of a type (same as the type for nonrefs).
47 typedef P ValueType;
54 typedef P ValueType;
283 typedef Tuple1<typename TupleTraits<A>::ValueType> ValueTuple;
290 typedef Tuple2<typename TupleTraits<A>::ValueType,
291 typename TupleTraits<B>::ValueType> ValueTuple;
300 typedef Tuple3<typename TupleTraits<A>::ValueType,
301 typename TupleTraits<B>::ValueType,
302 typename TupleTraits<C>::ValueType> ValueTuple;
313 typedef Tuple4<typename TupleTraits<A>::ValueType,
    [all...]
  /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...]

Completed in 489 milliseconds

1 2 3