HomeSort by relevance Sort by last modified time
    Searched full:valuetype (Results 1 - 25 of 301) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/CodeGen/
ValueTypes.td 1 //===- 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 valu
    [all...]
  /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...]
EncodedValue.java 52 ValueType valueType = ValueType.fromByte((byte)(b & 0x1f));
55 switch (valueType) {
110 * @return the <code>ValueType</code> representing the type of this <code>EncodedValue</code>
112 public abstract ValueType getValueType();
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format_autogen.h 13 typedef ActiveTexture ValueType;
18 return static_cast<uint32>(sizeof(ValueType)); // NOLINT
22 header.SetCmd<ValueType>();
31 static_cast<ValueType*>(cmd)->Init(_texture);
32 return NextCmdAddress<ValueType>(cmd);
47 typedef AttachShader ValueType;
52 return static_cast<uint32>(sizeof(ValueType)); // NOLINT
56 header.SetCmd<ValueType>();
66 static_cast<ValueType*>(cmd)->Init(_program, _shader);
67 return NextCmdAddress<ValueType>(cmd)
    [all...]
gles2_cmd_format.h 182 typedef GetAttribLocation ValueType;
189 return static_cast<uint32>(sizeof(ValueType)); // NOLINT
193 header.SetCmd<ValueType>();
213 static_cast<ValueType*>(
217 return NextCmdAddress<ValueType>(cmd);
248 typedef GetAttribLocationBucket ValueType;
255 return static_cast<uint32>(sizeof(ValueType)); // NOLINT
259 header.SetCmd<ValueType>();
275 static_cast<ValueType*>(
279 return NextCmdAddress<ValueType>(cmd)
    [all...]
cmd_buffer_common.h 177 typedef Noop ValueType;
191 static_cast<ValueType*>(cmd)->Init(skip_count);
192 return NextImmediateCmdAddress<ValueType>(
205 typedef SetToken ValueType;
210 header.SetCmd<ValueType>();
218 static_cast<ValueType*>(cmd)->Init(token);
219 return NextCmdAddress<ValueType>(cmd);
245 typedef SetBucketSize ValueType;
250 header.SetCmd<ValueType>();
259 static_cast<ValueType*>(cmd)->Init(_bucket_id, _size)
    [all...]
  /external/llvm/test/TableGen/
intrinsic-order.td 5 class ValueType<int size, int value> {
11 class LLVMType<ValueType vt> {
12 ValueType VT = vt;
24 def iAny : ValueType<0, 254>;
TargetInstrSpec.td 4 class ValueType<int size, int value> {
9 def v2i64 : ValueType<128, 22>; // 2 x i64 vector value
10 def v2f64 : ValueType<128, 28>; // 2 x f64 vector value
36 class RegisterClass<list<ValueType> regTypes, list<Register> regList> {
37 list<ValueType> RegTypes = regTypes;
cast.td 3 class ValueType<int size, int value> {
8 def v2i64 : ValueType<128, 22>; // 2 x i64 vector value
9 def v2f64 : ValueType<128, 28>; // 2 x f64 vector value
35 class RegisterClass<list<ValueType> regTypes, list<Register> regList> {
36 list<ValueType> RegTypes = regTypes;
  /external/clang/test/SemaCXX/
PR11358.cpp 29 template <typename KeyType, typename ValueType>
30 void MapTest(hash_map<KeyType, ValueType> map) {
31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 20 typedef T ValueType;
22 Y() { V = ValueType(); }
24 ValueType V;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EnumBiMap.java 38 private transient Class<V> valueType;
45 * @param valueType the value type
48 create(Class<K> keyType, Class<V> valueType) {
49 return new EnumBiMap<K, V>(keyType, valueType);
69 private EnumBiMap(Class<K> keyType, Class<V> valueType) {
71 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
73 this.valueType = valueType;
89 return ((EnumBiMap<?, V>) map).valueType;
101 public Class<V> valueType() {
    [all...]
  /frameworks/base/core/java/android/util/
ReflectiveProperty.java 45 public ReflectiveProperty(Class<T> propertyHolder, Class<V> valueType, String name) {
47 super(valueType, name);
64 if (!typesMatch(valueType, fieldType)) {
66 "does not match Property type (" + valueType + ")");
77 // Check to make sure our getter type matches our valueType
78 if (!typesMatch(valueType, getterType)) {
80 "does not match Property type (" + valueType + ")");
97 private boolean typesMatch(Class<V> valueType, Class getterType) {
98 if (getterType != valueType) {
100 return (getterType == float.class && valueType == Float.class) |
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 35 template <typename KeyType, typename ValueType, typename KeyCompare>
40 typedef ValueType value_type;
44 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
58 ValueType& value()
61 const ValueType& value() const
64 void setValue(const ValueType& pValue)
71 ValueType m_Value;
HashEntry.tcc 12 template <typename KeyType, typename ValueType, typename KeyCompare>
13 HashEntry<KeyType, ValueType, KeyCompare>::HashEntry(const KeyType& pKey)
17 template <typename KeyType, typename ValueType, typename KeyCompare>
18 HashEntry<KeyType, ValueType, KeyCompare>::~HashEntry()
22 template <typename KeyType, typename ValueType, typename KeyCompare>
23 bool HashEntry<KeyType, ValueType, KeyCompare>::compare(const KeyType& pKey)
  /external/chromium_org/third_party/WebKit/Source/wtf/
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...]
ListHashSet.h 74 typedef ValueArg ValueType;
76 typedef ListHashSetIterator<ValueType, inlineCapacity, HashArg> iterator;
77 typedef ListHashSetConstIterator<ValueType, inlineCapacity, HashArg> const_iterator;
78 friend class ListHashSetConstIterator<ValueType, inlineCapacity, HashArg>;
80 typedef ListHashSetReverseIterator<ValueType, inlineCapacity, HashArg> reverse_iterator;
81 typedef ListHashSetConstReverseIterator<ValueType, inlineCapacity, HashArg> const_reverse_iterator;
82 friend class ListHashSetConstReverseIterator<ValueType, inlineCapacity, HashArg>;
109 ValueType& first();
110 const ValueType& first() const;
113 ValueType& last()
    [all...]
HashTable.h 76 typedef Value ValueType;
77 typedef const ValueType& ReferenceType;
78 typedef const ValueType* PointerType;
151 typedef Value ValueType;
152 typedef ValueType& ReferenceType;
153 typedef ValueType* PointerType;
223 typedef Value ValueType;
297 AddResult add(const ValueType& value) { return add<IdentityTranslatorType>(Extractor::extract(value), value); }
318 static bool isEmptyBucket(const ValueType& value) { return isHashTraitsEmptyValue<KeyTraits>(Extractor::extract(value)); }
319 static bool isDeletedBucket(const ValueType& value) { return KeyTraits::isDeletedValue(Extractor::extract(value));
    [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...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffVector.h 32 template<typename ValueType, typename JacobianType>
36 //typedef typename internal::traits<ValueType>::Scalar Scalar;
37 typedef typename internal::traits<ValueType>::Scalar BaseScalar;
45 inline AutoDiffVector(const ValueType& values)
67 inline AutoDiffVector(const ValueType& values, const JacobianType& jac)
95 inline const ValueType& values() const { return m_values; }
96 inline ValueType& values() { return m_values; }
103 typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,ValueType,OtherValueType>::Type,
108 typename MakeCwiseBinaryOp<internal::scalar_sum_op<BaseScalar>,ValueType,OtherValueType>::Type,
125 typename MakeCwiseBinaryOp<internal::scalar_difference_op<Scalar>,ValueType,OtherValueType>::Type
    [all...]
  /external/guava/guava/src/com/google/common/collect/
EnumBiMap.java 42 private transient Class<V> valueType;
49 * @param valueType the value type
52 create(Class<K> keyType, Class<V> valueType) {
53 return new EnumBiMap<K, V>(keyType, valueType);
73 private EnumBiMap(Class<K> keyType, Class<V> valueType) {
75 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
77 this.valueType = valueType;
93 return ((EnumBiMap<?, V>) map).valueType;
105 public Class<V> valueType() {
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/iterator/
input_iterator_facade.hpp 57 typename ValueType,
58 typename Reference = ValueType const&,
60 class input_iterator_facade : public iterator_facade<Derived,ValueType,Traversal,Reference>
75 ValueType m_value;
  /frameworks/base/core/res/res/animator/
fragment_close_exit.xml 23 android:valueType="floatType"
29 android:valueType="floatType"
35 android:valueType="floatType"
fragment_open_enter.xml 23 android:valueType="floatType"
29 android:valueType="floatType"
35 android:valueType="floatType"
  /external/smack/src/org/jivesoftware/smack/util/collections/
ReferenceMap.java 88 * @param valueType the type of reference to use for values;
91 public ReferenceMap(int keyType, int valueType) {
92 super(keyType, valueType, DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR, false);
101 * @param valueType the type of reference to use for values;
106 public ReferenceMap(int keyType, int valueType, boolean purgeValues) {
107 super(keyType, valueType, DEFAULT_CAPACITY, DEFAULT_LOAD_FACTOR, purgeValues);
117 * @param valueType the type of reference to use for values;
122 public ReferenceMap(int keyType, int valueType, int capacity, float loadFactor) {
123 super(keyType, valueType, capacity, loadFactor, false);
133 * @param valueType the type of reference to use for values
    [all...]

Completed in 908 milliseconds

1 2 3 4 5 6 7 8 91011>>