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

1 2 3

  /external/webkit/Source/WebCore/bindings/v8/
V8DOMMap.h 45 template <class KeyType, class ValueType> class AbstractWeakReferenceMap {
54 virtual void visitDOMWrapper(DOMDataStore* store, KeyType* key, v8::Persistent<ValueType> object) = 0;
59 virtual v8::Persistent<ValueType> get(KeyType* obj) = 0;
60 virtual void set(KeyType* obj, v8::Persistent<ValueType> wrapper) = 0;
63 virtual bool removeIfPresent(KeyType*, v8::Persistent<ValueType>) = 0;
76 template<class KeyType, class ValueType> class WeakReferenceMap : public AbstractWeakReferenceMap<KeyType, ValueType> {
78 typedef AbstractWeakReferenceMap<KeyType, ValueType> Parent;
83 virtual v8::Persistent<ValueType> get(KeyType* obj)
85 ValueType* wrapper = m_map.get(obj)
    [all...]
  /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}.
  /external/webkit/Source/WebKit/win/
COMPropertyBag.h 38 template<typename ValueType, typename KeyType = typename WTF::String, typename HashType = typename WTF::StringHash>
42 typedef HashMap<KeyType, ValueType, HashType> HashMapType;
82 template<typename ValueType, typename KeyType, typename HashType>
83 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::createInstance(const HashMapType& hashMap)
90 template<typename ValueType, typename KeyType, typename HashType>
91 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, HashType>::adopt(HashMapType& hashMap)
100 template<typename ValueType, typename KeyType, typename HashType>
101 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::QueryInterface(REFIID riid, void** ppvObject
    [all...]
  /external/chromium/chrome/browser/prefs/
pref_member.h 130 template <typename ValueType>
175 ValueType GetValue() const {
181 ValueType operator*() const {
187 void SetValue(const ValueType& value) {
196 void SetValueIfNotManaged(const ValueType& value) {
210 Internal() : value_(ValueType()) {}
212 ValueType value() {
224 mutable ValueType value_;
235 virtual void UpdatePref(const ValueType& value);
default_pref_store.h 26 Value::ValueType GetType(const std::string& key) const;
scoped_user_pref_update.h 40 Value* Get(Value::ValueType type);
64 template <typename T, Value::ValueType type_enum_value>
default_pref_store.cc 16 Value::ValueType DefaultPrefStore::GetType(const std::string& key) const {
scoped_user_pref_update.cc 23 Value* ScopedUserPrefUpdateBase::Get(Value::ValueType type) {
pref_service.h 49 Value::ValueType type);
57 Value::ValueType GetType() const;
108 Value::ValueType type_;
332 Value* GetMutableUserPref(const char* path, Value::ValueType type);
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 19 typedef T ValueType;
21 Y() { V = ValueType(); }
23 ValueType V;
  /external/webkit/Source/JavaScriptCore/wtf/
HashSet.h 45 typedef typename ValueTraits::TraitType ValueType;
48 typedef HashTable<ValueType, ValueType, IdentityExtractor<ValueType>,
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> iterator;
53 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
64 iterator find(const ValueType&) const;
65 bool contains(const ValueType&) const;
71 // static bool equal(const ValueType&, const T&);
77 pair<iterator, bool> add(const ValueType&)
    [all...]
ListHashSet.h 72 typedef ValueArg ValueType;
73 typedef ListHashSetIterator<ValueType, inlineCapacity, HashArg> iterator;
74 typedef ListHashSetConstIterator<ValueType, inlineCapacity, HashArg> const_iterator;
76 friend class ListHashSetConstIterator<ValueType, inlineCapacity, HashArg>;
94 ValueType& first();
95 const ValueType& first() const;
97 ValueType& last();
98 const ValueType& last() const;
101 iterator find(const ValueType&);
102 const_iterator find(const ValueType&) const
    [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 bool 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;
293 typedef Value ValueType;
302 m_table = (ValueType*)(uintptr_t)0xbbadbeef;
319 pair<iterator, bool> add(const ValueType& value) { return add<KeyType, ValueType, IdentityTranslatorType>(Extractor::extract(value), value);
    [all...]
HashMap.h 42 typedef typename ValueTraits::TraitType ValueType;
47 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
51 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
91 // static bool equal(const ValueType&, const T&);
100 // static bool equal(const ValueType&, const T&);
101 // static translate(ValueType&, const T&, unsigned hashCode);
116 template<typename ValueType, typename ValueTraits, typename HashFunctions>
118 typedef typename ValueType::first_type KeyType
    [all...]
  /external/llvm/lib/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/webkit/Source/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 {
55 ValueType(String value) {
63 public static ValueType getEnum(String value) {
64 for (ValueType type : values()) {
76 private ValueType mType;
95 public ValueType getType() {
113 return mType != ValueType.STRING;
152 prop.mType = ValueType.getEnum(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/webkit/Source/JavaScriptCore/runtime/
PropertyMapHashTable.h 133 typedef PropertyMapEntry ValueType;
136 typedef ordered_iterator<ValueType> iterator;
137 typedef ordered_iterator<const ValueType> const_iterator;
142 typedef std::pair<ValueType*, unsigned> find_iterator;
159 std::pair<find_iterator, bool> add(const ValueType& entry);
190 void reinsert(const ValueType& entry);
212 ValueType* table();
213 const ValueType* table() const;
337 return std::make_pair((ValueType*)0, hash & m_indexMask);
355 inline std::pair<PropertyTable::find_iterator, bool> PropertyTable::add(const ValueType& entry
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.h 65 EVT ValueType);
67 EVT ValueType);
69 EVT ValueType);
71 EVT ValueType);
73 EVT ValueType);
109 /// getSetCCResultType - Return the ValueType for ISD::SETCC
  /external/chromium/chrome/browser/policy/
configuration_policy_provider.h 39 Value::ValueType value_type;

Completed in 551 milliseconds

1 2 3