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

  /external/webkit/JavaScriptCore/wtf/
HashIterators.h 38 typedef std::pair<KeyType, MappedType> ValueType;
45 const ValueType* get() const { return (const ValueType*)m_impl.get(); }
46 const ValueType& operator*() const { return *get(); }
47 const ValueType* operator->() const { return get(); }
60 typedef std::pair<KeyType, MappedType> ValueType;
67 ValueType* get() const { return (ValueType*)m_impl.get(); }
68 ValueType& operator*() const { return *get(); }
69 ValueType* operator->() const { return get();
    [all...]
HashCountedSet.h 36 typedef Value ValueType;
52 iterator find(const ValueType&);
53 const_iterator find(const ValueType&) const;
54 bool contains(const ValueType&) const;
55 unsigned count(const ValueType&) const;
60 std::pair<iterator, bool> add(const ValueType&);
64 void remove(const ValueType&);
69 void removeAll(const ValueType&);
121 inline typename HashCountedSet<Value, HashFunctions, Traits>::iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value)
127 inline typename HashCountedSet<Value, HashFunctions, Traits>::const_iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value) cons
    [all...]
OwnPtr.h 39 typedef typename RemovePointer<T>::Type ValueType;
40 typedef ValueType* PtrType;
43 OwnPtr(std::auto_ptr<ValueType> autoPtr) : m_ptr(autoPtr.release()) { }
51 OwnPtr(const OwnPtr<ValueType>& o);
61 void adopt(std::auto_ptr<ValueType> autoPtr) { ASSERT(!autoPtr.get() || m_ptr != autoPtr.get()); deleteOwnedPtr(m_ptr); m_ptr = autoPtr.release(); }
65 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
PassOwnPtr.h 41 typedef typename RemovePointer<T>::Type ValueType;
42 typedef ValueType* PtrType;
59 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
HashSet.h 44 typedef typename ValueTraits::TraitType ValueType;
47 typedef HashTable<ValueType, ValueType, IdentityExtractor<ValueType>,
51 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
65 iterator find(const ValueType&);
66 const_iterator find(const ValueType&) const;
67 bool contains(const ValueType&) const;
73 // static bool equal(const ValueType&, const T&)
    [all...]
RefPtrHashMap.h 28 template<typename RawKeyType, typename ValueType, typename ValueTraits, typename HashFunctions>
30 typedef typename ValueType::first_type KeyType;
31 typedef typename ValueType::second_type MappedType;
37 static void translate(ValueType& location, RawKeyType key, const MappedType& mapped)
55 typedef typename ValueTraits::TraitType ValueType;
60 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
63 typedef RefPtrHashMapRawKeyTranslator<RawKeyType, ValueType, ValueTraits, HashFunctions>
67 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
68 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator
    [all...]
RetainPtr.h 52 typedef typename RemovePointer<T>::Type ValueType;
53 typedef ValueType* PtrType;
HashMap.h 41 typedef typename ValueTraits::TraitType ValueType;
46 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
50 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
51 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
90 // static bool equal(const ValueType&, const T&);
99 // static bool equal(const ValueType&, const T&);
100 // static translate(ValueType&, const T&, unsigned hashCode);
115 template<typename ValueType, typename ValueTraits, typename HashFunctions>
117 typedef typename ValueType::first_type KeyType
    [all...]
HashTable.h 100 typedef Value ValueType;
101 typedef const ValueType& ReferenceType;
102 typedef const ValueType* PointerType;
228 typedef Value ValueType;
229 typedef ValueType& ReferenceType;
230 typedef ValueType* PointerType;
291 typedef Value ValueType;
300 m_table = (ValueType*)(uintptr_t)0xbbadbeef;
317 pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslatorType>(Extractor::extract(value), value);
    [all...]
Vector.h 472 typedef T ValueType;
ListHashSet.h 69 typedef ValueArg ValueType;
70 typedef ListHashSetIterator<ValueType, HashArg> iterator;
71 typedef ListHashSetConstIterator<ValueType, HashArg> const_iterator;
73 friend class ListHashSetConstIterator<ValueType, HashArg>;
91 iterator find(const ValueType&);
92 const_iterator find(const ValueType&) const;
93 bool contains(const ValueType&) const;
97 pair<iterator, bool> add(const ValueType&);
99 pair<iterator, bool> insertBefore(const ValueType& beforeValue, const ValueType& newValue)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebVector.h 64 typedef T ValueType;
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginHostTypes.h 51 enum ValueType {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventValueDescription.java 26 * name, type ({@link EventValueType}), and (if needed) value unit ({@link ValueType}).
39 public static enum ValueType {
51 * Checks that the {@link EventValueType} is compatible with the {@link ValueType}.
64 * Returns a {@link ValueType} from an integer value, or <code>null</code> if no match
68 public static ValueType getValueType(int value) {
69 for (ValueType type : values()) {
89 private ValueType(int value) {
96 private ValueType mValueType;
102 * {@link #mValueType} is set to {@link ValueType#BYTES} by default. It set to
103 * {@link ValueType#NOT_APPLICABLE} for all other {@link EventValueType} values
    [all...]
  /external/chromium/base/
tuple.h 36 // ValueType: the bare, nonref version of a type (same as the type for nonrefs).
42 typedef P ValueType;
49 typedef P ValueType;
78 typedef Tuple1<typename TupleTraits<A>::ValueType> ValueTuple;
93 typedef Tuple2<typename TupleTraits<A>::ValueType,
94 typename TupleTraits<B>::ValueType> ValueTuple;
116 typedef Tuple3<typename TupleTraits<A>::ValueType,
117 typename TupleTraits<B>::ValueType,
118 typename TupleTraits<C>::ValueType> ValueTuple;
145 typedef Tuple4<typename TupleTraits<A>::ValueType,
    [all...]
values.h 74 } ValueType;
78 // safe to use the ValueType to determine whether you can cast from
81 ValueType GetType() const { return type_; }
84 bool IsType(ValueType type) const { return type == type_; }
107 explicit Value(ValueType type) : type_(type) {}
112 ValueType type_;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/avd/
HardwareProperties.java 47 public enum ValueType {
54 ValueType(String value) {
62 public static ValueType getEnum(String value) {
63 for (ValueType type : values()) {
75 private ValueType mType;
85 public ValueType getType() {
137 prop.mType = ValueType.getEnum(value);
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 240 enum ValueType {FV_BOOL, FV_INT32, FV_INT64, FV_UINT64, FV_DOUBLE, FV_STRING};
254 ValueType type_; // how to interpret value_
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 

Completed in 661 milliseconds