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

1 2

  /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...]
GcEventContainer.java 19 import com.android.ddmlib.log.EventValueDescription.ValueType;
159 ValueType.MILLISECONDS),
161 ValueType.OBJECTS),
162 new EventValueDescription("Freed Bytes", EventValueType.LONG, ValueType.BYTES),
163 new EventValueDescription("Soft Limit", EventValueType.LONG, ValueType.BYTES),
165 ValueType.BYTES),
167 ValueType.BYTES),
169 EventValueType.LONG, ValueType.OBJECTS),
171 ValueType.BYTES),
172 new EventValueDescription("Actual Size", EventValueType.LONG, ValueType.BYTES)
    [all...]
InvalidValueTypeException.java 20 import com.android.ddmlib.log.EventValueDescription.ValueType;
26 * {@link ValueType}.
EventLogParser.java 23 import com.android.ddmlib.log.EventValueDescription.ValueType;
219 ValueType valueType = ValueType.getValueType(typeValue);
221 list.add(new EventValueDescription(name, eventValueType, valueType));
  /external/webkit/WebCore/bindings/v8/
V8DOMMap.h 44 template <class KeyType, class ValueType> class AbstractWeakReferenceMap {
51 virtual void visitDOMWrapper(KeyType* key, v8::Persistent<ValueType> object) = 0;
56 virtual v8::Persistent<ValueType> get(KeyType* obj) = 0;
57 virtual void set(KeyType* obj, v8::Persistent<ValueType> wrapper) = 0;
73 template<class KeyType, class ValueType> class WeakReferenceMap : public AbstractWeakReferenceMap<KeyType, ValueType> {
75 typedef AbstractWeakReferenceMap<KeyType, ValueType> Parent;
86 virtual v8::Persistent<ValueType> get(KeyType* obj)
88 ValueType* wrapper = m_map.get(obj);
89 return wrapper ? v8::Persistent<ValueType>(wrapper) : v8::Persistent<ValueType>()
    [all...]
  /external/webkit/WebKit/win/
COMPropertyBag.h 37 template<typename ValueType, typename KeyType = typename WebCore::String, typename HashType = typename WebCore::StringHash>
40 typedef HashMap<KeyType, ValueType, HashType> HashMapType;
80 template<typename ValueType, typename KeyType, typename HashType>
81 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap)
88 template<typename ValueType, typename KeyType, typename HashType>
89 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap)
98 template<typename ValueType, typename KeyType, typename HashType>
99 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::QueryInterface(REFIID riid, void** ppvObject)
    [all...]
COMEnumVariant.h 140 COMVariantSetter<ContainerType::ValueType>::setVariant(&rgVar[i], *m_currentPos);
  /external/webkit/JavaScriptCore/wtf/
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...]
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...]
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...]
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...]
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...]
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; }
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...]
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...]
PassOwnPtr.h 41 typedef typename RemovePointer<T>::Type ValueType;
42 typedef ValueType* PtrType;
59 ValueType& operator*() const { ASSERT(m_ptr); return *m_ptr; }
RetainPtr.h 52 typedef typename RemovePointer<T>::Type ValueType;
53 typedef ValueType* PtrType;
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginHostTypes.h 51 enum ValueType {
  /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/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/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
DisplayGraph.java 157 // get the data set for this ValueType
270 * Returns a {@link TimeSeriesCollection} for a specific {@link com.android.ddmlib.log.EventValueDescription.ValueType}.
273 * @param type the {@link com.android.ddmlib.log.EventValueDescription.ValueType} of the data set.
276 private TimeSeriesCollection getValueDataset(EventValueDescription.ValueType type, boolean accumulateValues) {
283 // create the renderer and configure it depending on the ValueType
285 if (type == EventValueDescription.ValueType.PERCENT && accumulateValues) {
289 r.setBaseShapesVisible(type != EventValueDescription.ValueType.PERCENT);
302 if (type == EventValueDescription.ValueType.PERCENT) {
EventDisplay.java 24 import com.android.ddmlib.log.EventValueDescription.ValueType;
344 * This is a map of (ValueType, dataset)
346 protected final HashMap<ValueType, TimeSeriesCollection> mValueTypeDataSetMap =
347 new HashMap<ValueType, TimeSeriesCollection>();
    [all...]
  /external/webkit/WebCore/rendering/
SVGRenderTreeAsText.cpp 84 template<typename ValueType>
85 static void writeNameValuePair(TextStream& ts, const char* name, ValueType value)
90 template<typename ValueType>
91 static void writeNameAndQuotedValue(TextStream& ts, const char* name, ValueType value)
102 template<typename ValueType>
103 static void writeIfNotDefault(TextStream& ts, const char* name, ValueType value, ValueType defaultValue)
  /external/webkit/WebKit/chromium/public/
WebVector.h 64 typedef T ValueType;

Completed in 261 milliseconds

1 2