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

1 2 3 4

  /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...]
NullEncodedValue.java 48 out.annotate("value_type=" + ValueType.VALUE_NULL.name() + ",value_arg=0");
50 out.writeByte(ValueType.VALUE_NULL.value);
64 public ValueType getValueType() {
65 return ValueType.VALUE_NULL;
BooleanEncodedValue.java 80 out.annotate("value_type=" + ValueType.VALUE_BOOLEAN.name() + ",value=" + Boolean.toString(value));
82 out.writeByte(ValueType.VALUE_BOOLEAN.value | ((value?1:0) << 5));
101 public ValueType getValueType() {
102 return ValueType.VALUE_BOOLEAN;
ByteEncodedValue.java 58 out.annotate(1, "value_type=" + ValueType.VALUE_BYTE.name() + ",value_arg=0");
61 out.writeByte(ValueType.VALUE_BYTE.value);
78 public ValueType getValueType() {
79 return ValueType.VALUE_BYTE;
ArrayEncodedValue.java 57 out.annotate("value_type=" + ValueType.VALUE_ARRAY.name() + ",value_arg=0");
59 out.writeByte(ValueType.VALUE_ARRAY.value);
CharEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_CHAR.name() + ",value_arg=" + (bytes.length - 1));
68 out.writeByte(ValueType.VALUE_CHAR.value | ((bytes.length - 1) << 5));
85 public ValueType getValueType() {
86 return ValueType.VALUE_CHAR;
DoubleEncodedValue.java 63 out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1));
67 out.writeByte(ValueType.VALUE_DOUBLE.value | ((bytes.length - 1) << 5));
85 public ValueType getValueType() {
86 return ValueType.VALUE_DOUBLE;
EnumEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1));
70 out.writeByte(ValueType.VALUE_ENUM.value | ((bytes.length - 1) << 5));
87 public ValueType getValueType() {
88 return ValueType.VALUE_ENUM;
FieldEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_FIELD.name() + ",value_arg=" + (bytes.length - 1));
70 out.writeByte(ValueType.VALUE_FIELD.value | ((bytes.length - 1) << 5));
87 public ValueType getValueType() {
88 return ValueType.VALUE_FIELD;
FloatEncodedValue.java 63 out.annotate(1, "value_type=" + ValueType.VALUE_FLOAT.name() + ",value_arg=" + (bytes.length - 1));
67 out.writeByte(ValueType.VALUE_FLOAT.value | ((bytes.length - 1) << 5));
85 public ValueType getValueType() {
86 return ValueType.VALUE_FLOAT;
IntEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_INT.name() + ",value_arg=" + (bytes.length - 1));
66 out.writeByte(ValueType.VALUE_INT.value | ((bytes.length - 1) << 5));
83 public ValueType getValueType() {
84 return ValueType.VALUE_INT;
LongEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_LONG.name() + ",value_arg=" + (bytes.length - 1));
66 out.writeByte(ValueType.VALUE_LONG.value | ((bytes.length - 1) << 5));
83 public ValueType getValueType() {
84 return ValueType.VALUE_LONG;
MethodEncodedValue.java 66 out.annotate(1, "value_type=" + ValueType.VALUE_METHOD.name() + ",value_arg=" + (bytes.length - 1));
70 out.writeByte(ValueType.VALUE_METHOD.value | ((bytes.length - 1) << 5));
87 public ValueType getValueType() {
88 return ValueType.VALUE_METHOD;
ShortEncodedValue.java 62 out.annotate(1, "value_type=" + ValueType.VALUE_SHORT.name() + ",value_arg=" + (bytes.length - 1));
66 out.writeByte(ValueType.VALUE_SHORT.value | ((bytes.length - 1) << 5));
83 public ValueType getValueType() {
84 return ValueType.VALUE_SHORT;
  /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;
  /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...]
  /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;
  /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;
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 28 typedef Path::ValueType ValueType;
33 explicit RealPath(const ValueType* s );
  /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...]
  /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/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; }

Completed in 414 milliseconds

1 2 3 4