Searched refs:ValueType (Results 1 - 25 of 134) sorted by relevance

123456

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DEncodedValueUtils.java34 import org.jf.dexlib2.ValueType;
40 case ValueType.BOOLEAN:
42 case ValueType.BYTE:
44 case ValueType.CHAR:
46 case ValueType.DOUBLE:
48 case ValueType.FLOAT:
50 case ValueType.INT:
52 case ValueType.LONG:
54 case ValueType.NULL:
56 case ValueType
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
H A DDexBackedEncodedValue.java34 import org.jf.dexlib2.ValueType;
54 case ValueType.BYTE:
57 case ValueType.SHORT:
60 case ValueType.CHAR:
63 case ValueType.INT:
66 case ValueType.LONG:
69 case ValueType.FLOAT:
73 case ValueType.DOUBLE:
77 case ValueType.STRING:
80 case ValueType
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
H A DEncodedValueAdaptor.java33 import org.jf.dexlib2.ValueType;
47 case ValueType.ANNOTATION:
50 case ValueType.ARRAY:
53 case ValueType.BOOLEAN:
56 case ValueType.BYTE:
59 case ValueType.CHAR:
62 case ValueType.DOUBLE:
65 case ValueType.ENUM:
74 case ValueType.FIELD:
82 case ValueType
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableEncodedValueFactory.java36 import org.jf.dexlib2.ValueType;
48 case ValueType.BYTE:
50 case ValueType.SHORT:
52 case ValueType.CHAR:
54 case ValueType.INT:
56 case ValueType.LONG:
58 case ValueType.FLOAT:
60 case ValueType.DOUBLE:
62 case ValueType.STRING:
64 case ValueType
[all...]
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator-inl.h69 template<typename ValueType>
70 bool PostfixEvaluator<ValueType>::EvaluateToken(
103 ValueType operand1 = ValueType();
104 ValueType operand2 = ValueType();
112 ValueType result;
131 operand1 & (static_cast<ValueType>(-1) ^ (operand2 - 1));
151 ValueType address;
158 ValueType valu
[all...]
H A Dpostfix_evaluator.h44 // either literal values suitable for ValueType, or constants or variables,
86 template<typename ValueType>
89 typedef map<string, ValueType> DictionaryType;
114 bool EvaluateForValue(const string &expression, ValueType *result);
135 PopResult PopValueOrIdentifier(ValueType *value, string *identifier);
141 bool PopValue(ValueType *value);
146 bool PopValues(ValueType *value1, ValueType *value2);
149 void PushValue(const ValueType &value);
/external/deqp/framework/delibs/decpp/
H A DdeCommandLine.hpp41 template<typename ValueType>
42 void parseType (const char* src, ValueType* dst);
54 typedef typename OptName::ValueType ValueType; typedef in struct:de::cmdline::Option
55 typedef void (*ParseFunc) (const char* src, ValueType* dst);
65 const NamedValue<ValueType>* namedValues; //!< Named values or null.
66 const NamedValue<ValueType>* namedValuesEnd; //!< Named value list end.
74 , parse (parseType<ValueType>)
93 Option (const char* shortName_, const char* longName_, const char* description_, const NamedValue<ValueType>* namedValues_, const NamedValue<ValueType>* namedValuesEnd
121 typedef typename Option::ValueType ValueType; typedef in struct:de::cmdline::OptTraits
152 typedef typename OptTraits<Name>::ValueType ValueType; typedef in struct:de::cmdline::detail::TypedFieldTraits
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DEncodedValueWriter.java35 import org.jf.dexlib2.ValueType;
73 writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0);
87 writer.writeEncodedValueHeader(ValueType.ARRAY, 0);
95 writer.writeEncodedValueHeader(ValueType.BOOLEAN, value ? 1 : 0);
99 writer.writeEncodedInt(ValueType.BYTE, value);
103 writer.writeEncodedUint(ValueType.CHAR, value);
107 writer.writeEncodedDouble(ValueType.DOUBLE, value);
111 writer.writeEncodedUint(ValueType.ENUM, fieldSection.getItemIndex(value));
115 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value));
119 writer.writeEncodedFloat(ValueType
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DValueType.java34 public final class ValueType { class
52 private ValueType() {} method in class:ValueType
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DDexPool.java35 import org.jf.dexlib2.ValueType;
113 case ValueType.ANNOTATION:
117 case ValueType.ARRAY:
121 case ValueType.BOOLEAN:
124 case ValueType.BYTE:
127 case ValueType.CHAR:
130 case ValueType.DOUBLE:
133 case ValueType.ENUM:
136 case ValueType.FIELD:
139 case ValueType
[all...]
/external/clang/test/SemaCXX/
H A DPR11358.cpp29 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/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
H A DBaseNullEncodedValue.java35 import org.jf.dexlib2.ValueType;
58 public int getValueType() { return ValueType.NULL; }
H A DBaseArrayEncodedValue.java35 import org.jf.dexlib2.ValueType;
63 public int getValueType() { return ValueType.ARRAY; }
H A DBaseBooleanEncodedValue.java36 import org.jf.dexlib2.ValueType;
64 public int getValueType() { return ValueType.BOOLEAN; }
H A DBaseByteEncodedValue.java35 import org.jf.dexlib2.ValueType;
63 public int getValueType() { return ValueType.BYTE; }
H A DBaseCharEncodedValue.java36 import org.jf.dexlib2.ValueType;
64 public int getValueType() { return ValueType.CHAR; }
H A DBaseDoubleEncodedValue.java35 import org.jf.dexlib2.ValueType;
65 public int getValueType() { return ValueType.DOUBLE; }
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffVector.h32 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,OtherValueTyp
[all...]
H A DAutoDiffJacobian.h36 typedef typename Functor::ValueType ValueType; typedef in class:Eigen::AutoDiffJacobian
37 typedef typename ValueType::Scalar Scalar;
41 ValuesAtCompileTime = ValueType::RowsAtCompileTime
57 void operator() (const InputType& x, ValueType* v) const
62 void operator() (const InputType& x, ValueType* v, JacobianType* _jac,
65 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderContext.java38 import org.jf.dexlib2.ValueType;
101 case ValueType.ANNOTATION:
103 case ValueType.ARRAY:
105 case ValueType.BOOLEAN:
108 case ValueType.BYTE:
110 case ValueType.CHAR:
112 case ValueType.DOUBLE:
114 case ValueType.ENUM:
116 case ValueType.FIELD:
118 case ValueType
[all...]
H A DDexBuilder.java39 import org.jf.dexlib2.ValueType;
225 case ValueType.ANNOTATION:
229 case ValueType.ARRAY:
233 case ValueType.BOOLEAN:
236 case ValueType.BYTE:
239 case ValueType.CHAR:
242 case ValueType.DOUBLE:
245 case ValueType.ENUM:
248 case ValueType.FIELD:
251 case ValueType
[all...]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
H A DDWARFFormValue.h22 struct ValueType { struct in class:llvm::DWARFFormValue
23 ValueType() : data(NULL) { function in struct:llvm::DWARFFormValue::ValueType
45 ValueType Value; // Contains all data for the form.
50 const ValueType& value() const { return Value; }
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DZHash.java26 public class ZHash<KeyType, ValueType> implements ZIndexable<KeyType> {
28 private HashMap<KeyType, ValueType> hash;
34 hash = new HashMap<KeyType, ValueType>();
44 public ValueType get(KeyType key) {
58 public synchronized void addToTop(KeyType key, ValueType value) {
75 public synchronized void addToBottom(KeyType key, ValueType value) {
/external/libcxx/test/libcxx/algorithms/
H A Ddebug_less.pass.cpp46 template <class ValueType>
48 bool operator()(ValueType const& lhs, ValueType const& rhs) const {
54 template <class ValueType>
56 bool operator()(ValueType const&, ValueType const&) const {
/external/llvm/lib/Target/Mips/
H A DMipsOptimizePICCall.cpp38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef in namespace:__anon13081
42 ScopedHashTableVal<ValueType, CntRegP> >
44 typedef ScopedHashTable<ValueType, CntRegP, DenseMapInfo<ValueType>,
83 ValueType &Val) const;
87 unsigned getCount(ValueType Entry);
91 unsigned getReg(ValueType Entry);
94 void incCntAndSetReg(ValueType Entry, unsigned Reg);
215 ValueType Entry;
247 ValueType
[all...]

Completed in 1214 milliseconds

123456