Home
last modified time | relevance | path

Searched refs:ValueType (Results 1 – 25 of 103) sorted by relevance

12345

/external/llvm/include/llvm/CodeGen/
DValueTypes.td1 //===- ValueTypes.td - ValueType definitions ---------------*- tablegen -*-===//
16 class ValueType<int size, int value> {
22 def OtherVT: ValueType<0 , 0>; // "Other" value
23 def i1 : ValueType<1 , 1>; // One bit boolean value
24 def i8 : ValueType<8 , 2>; // 8-bit integer value
25 def i16 : ValueType<16 , 3>; // 16-bit integer value
26 def i32 : ValueType<32 , 4>; // 32-bit integer value
27 def i64 : ValueType<64 , 5>; // 64-bit integer value
28 def i128 : ValueType<128, 6>; // 128-bit integer value
29 def f16 : ValueType<16 , 7>; // 32-bit floating point value
[all …]
/external/webkit/Source/WebKit/win/
DCOMPropertyBag.h38 template<typename ValueType, typename KeyType = typename WTF::String, typename HashType = typename …
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, … in createInstance()
90 template<typename ValueType, typename KeyType, typename HashType>
91 COMPropertyBag<ValueType, KeyType, HashType>* COMPropertyBag<typename ValueType, typename KeyType, … in adopt()
100 template<typename ValueType, typename KeyType, typename HashType>
101 HRESULT STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::QueryInterface(REFIID riid,… in QueryInterface()
117 template<typename ValueType, typename KeyType, typename HashType>
118 ULONG STDMETHODCALLTYPE COMPropertyBag<ValueType, KeyType, HashType>::AddRef() in AddRef()
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DV8DOMMap.h45 template <class KeyType, class ValueType> class AbstractWeakReferenceMap {
54 …tual 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<…
78 typedef AbstractWeakReferenceMap<KeyType, ValueType> Parent;
83 virtual v8::Persistent<ValueType> get(KeyType* obj) in get()
85 ValueType* wrapper = m_map.get(obj); in get()
86 return wrapper ? v8::Persistent<ValueType>(wrapper) : v8::Persistent<ValueType>(); in get()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DListHashSet.h72 typedef ValueArg ValueType; typedef
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 …]
DHashSet.h45 typedef typename ValueTraits::TraitType ValueType; typedef
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;
77 pair<iterator, bool> add(const ValueType&);
87 void remove(const ValueType&);
102 template<typename ValueType, typename ValueTraits, typename T, typename Translator>
105 static bool equal(const ValueType& a, const T& b) { return Translator::equal(a, b); } in equal()
[all …]
DHashTable.h100 typedef Value ValueType; typedef
101 typedef const ValueType& ReferenceType;
102 typedef const ValueType* PointerType;
228 typedef Value ValueType; typedef
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, IdentityTranslat…
341 …static bool isEmptyBucket(const ValueType& value) { return Extractor::extract(value) == KeyTraits:…
[all …]
DHashCountedSet.h36 typedef Value ValueType; typedef
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 …tions, Traits>::iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value) in find()
127 …s>::const_iterator HashCountedSet<Value, HashFunctions, Traits>::find(const ValueType& value) const in find()
[all …]
DHashIterators.h38 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(); }
74 operator HashTableConstIteratorAdapter<HashTableType, ValueType>() {
DHashMap.h42 typedef typename ValueTraits::TraitType ValueType; typedef
47 typedef HashTable<KeyType, ValueType, PairFirstExtractor<ValueType>,
51 typedef HashTableIteratorAdapter<HashTableType, ValueType> iterator;
52 typedef HashTableConstIteratorAdapter<HashTableType, ValueType> const_iterator;
116 template<typename ValueType, typename ValueTraits, typename HashFunctions>
118 typedef typename ValueType::first_type KeyType;
119 typedef typename ValueType::second_type MappedType;
123 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped) in translate()
130 template<typename ValueType, typename ValueTraits, typename T, typename Translator>
132 typedef typename ValueType::first_type KeyType;
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
DValueType.java33 public enum ValueType { enum
55 private final static SparseArray<ValueType> valueTypeIntegerMap;
59 valueTypeIntegerMap = new SparseArray<ValueType>(16);
61 for (ValueType valueType : ValueType.values()) {
71 private ValueType(byte value) { in ValueType() method in ValueType
83 public static ValueType fromByte(byte valueType) { in fromByte()
DNullEncodedValue.java48 out.annotate("value_type=" + ValueType.VALUE_NULL.name() + ",value_arg=0"); in writeValue()
50 out.writeByte(ValueType.VALUE_NULL.value); in writeValue()
64 public ValueType getValueType() { in getValueType()
65 return ValueType.VALUE_NULL; in getValueType()
DBooleanEncodedValue.java80 …out.annotate("value_type=" + ValueType.VALUE_BOOLEAN.name() + ",value=" + Boolean.toString(value)); in writeValue()
82 out.writeByte(ValueType.VALUE_BOOLEAN.value | ((value?1:0) << 5)); in writeValue()
101 public ValueType getValueType() { in getValueType()
102 return ValueType.VALUE_BOOLEAN; in getValueType()
DByteEncodedValue.java58 out.annotate(1, "value_type=" + ValueType.VALUE_BYTE.name() + ",value_arg=0"); in writeValue()
61 out.writeByte(ValueType.VALUE_BYTE.value); in writeValue()
78 public ValueType getValueType() { in getValueType()
79 return ValueType.VALUE_BYTE; in getValueType()
DLongEncodedValue.java62 … out.annotate(1, "value_type=" + ValueType.VALUE_LONG.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
66 out.writeByte(ValueType.VALUE_LONG.value | ((bytes.length - 1) << 5)); in writeValue()
83 public ValueType getValueType() { in getValueType()
84 return ValueType.VALUE_LONG; in getValueType()
DCharEncodedValue.java62 … out.annotate(1, "value_type=" + ValueType.VALUE_CHAR.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
68 out.writeByte(ValueType.VALUE_CHAR.value | ((bytes.length - 1) << 5)); in writeValue()
85 public ValueType getValueType() { in getValueType()
86 return ValueType.VALUE_CHAR; in getValueType()
DShortEncodedValue.java62 …out.annotate(1, "value_type=" + ValueType.VALUE_SHORT.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
66 out.writeByte(ValueType.VALUE_SHORT.value | ((bytes.length - 1) << 5)); in writeValue()
83 public ValueType getValueType() { in getValueType()
84 return ValueType.VALUE_SHORT; in getValueType()
DIntEncodedValue.java62 … out.annotate(1, "value_type=" + ValueType.VALUE_INT.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
66 out.writeByte(ValueType.VALUE_INT.value | ((bytes.length - 1) << 5)); in writeValue()
83 public ValueType getValueType() { in getValueType()
84 return ValueType.VALUE_INT; in getValueType()
DDoubleEncodedValue.java63 …out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1)… in writeValue()
67 out.writeByte(ValueType.VALUE_DOUBLE.value | ((bytes.length - 1) << 5)); in writeValue()
85 public ValueType getValueType() { in getValueType()
86 return ValueType.VALUE_DOUBLE; in getValueType()
DFloatEncodedValue.java63 …out.annotate(1, "value_type=" + ValueType.VALUE_FLOAT.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
67 out.writeByte(ValueType.VALUE_FLOAT.value | ((bytes.length - 1) << 5)); in writeValue()
85 public ValueType getValueType() { in getValueType()
86 return ValueType.VALUE_FLOAT; in getValueType()
DFieldEncodedValue.java66 …out.annotate(1, "value_type=" + ValueType.VALUE_FIELD.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
70 out.writeByte(ValueType.VALUE_FIELD.value | ((bytes.length - 1) << 5)); in writeValue()
87 public ValueType getValueType() { in getValueType()
88 return ValueType.VALUE_FIELD; in getValueType()
DMethodEncodedValue.java66 …out.annotate(1, "value_type=" + ValueType.VALUE_METHOD.name() + ",value_arg=" + (bytes.length - 1)… in writeValue()
70 out.writeByte(ValueType.VALUE_METHOD.value | ((bytes.length - 1) << 5)); in writeValue()
87 public ValueType getValueType() { in getValueType()
88 return ValueType.VALUE_METHOD; in getValueType()
DEnumEncodedValue.java66 … out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1)); in writeValue()
70 out.writeByte(ValueType.VALUE_ENUM.value | ((bytes.length - 1) << 5)); in writeValue()
87 public ValueType getValueType() { in getValueType()
88 return ValueType.VALUE_ENUM; in getValueType()
/external/chromium/chrome/browser/prefs/
Dpref_member.h130 template <typename ValueType>
175 ValueType GetValue() const { in GetValue()
181 ValueType operator*() const {
187 void SetValue(const ValueType& value) { in SetValue()
196 void SetValueIfNotManaged(const ValueType& value) { in SetValueIfNotManaged()
210 Internal() : value_(ValueType()) {} in Internal()
212 ValueType value() { in value()
224 mutable ValueType value_;
235 virtual void UpdatePref(const ValueType& value);
/external/webkit/Source/JavaScriptCore/runtime/
DPropertyMapHashTable.h133 typedef PropertyMapEntry ValueType; typedef
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); in find()
355 inline std::pair<PropertyTable::find_iterator, bool> PropertyTable::add(const ValueType& entry) in add()
[all …]
/external/llvm/lib/DebugInfo/
DDWARFFormValue.h22 struct ValueType { struct
23 ValueType() : data(NULL) { in ValueType() argument
45 ValueType Value; // Contains all data for the form. argument
50 const ValueType& value() const { return Value; } in value()

12345