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

123456

/external/lldb/include/lldb/Core/
H A DFlags.h33 typedef uint32_t ValueType; typedef in class:lldb_private::Flags
44 Flags (ValueType flags = 0) :
73 /// Returns all of the flags as a Flags::ValueType.
75 ValueType
91 return sizeof (ValueType) * 8;
101 Reset (ValueType flags)
115 ValueType
116 Clear (ValueType mask = ~(ValueType)0) argument
133 ValueType
[all...]
H A DError.h33 /// of type Error::ValueType. This value should be large enough to hold
52 /// to fit into ValueType.
54 typedef uint32_t ValueType; typedef in class:lldb_private::Error
70 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric);
147 ValueType
226 SetError (ValueType err, lldb::ErrorType type);
304 ValueType m_code; ///< Error code as an integer value.
/external/lldb/include/lldb/Utility/
H A DRange.h22 typedef uint64_t ValueType; typedef in class:lldb_utility::Range
24 static const ValueType OPEN_END = UINT64_MAX;
28 Range (ValueType low = 0,
29 ValueType high = OPEN_END);
34 ValueType
40 ValueType
47 SetLow (ValueType low)
53 SetHigh (ValueType high)
67 typedef bool (*RangeCallback)(ValueType index);
72 ValueType
[all...]
/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/lldb/tools/lldb-perf/lib/
H A DMetric.h21 template <class ValueType>
35 Append (ValueType v);
37 ValueType
43 ValueType
46 ValueType
68 std::vector<ValueType> m_dataset;
H A DGauge.h24 typedef T ValueType; typedef in class:lldb_perf::Gauge
36 virtual ValueType
39 virtual ValueType
42 virtual ValueType
45 virtual ValueType
H A DMemoryGauge.h103 ValueType
106 virtual ValueType
112 virtual ValueType
118 virtual ValueType
129 ValueType
133 ValueType m_start;
134 ValueType m_stop;
135 ValueType m_delta;
/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.java34 import org.jf.dexlib2.ValueType;
70 writer.writeEncodedValueHeader(ValueType.ANNOTATION, 0);
80 writer.writeEncodedValueHeader(ValueType.ARRAY, 0);
88 writer.writeEncodedValueHeader(ValueType.BOOLEAN, value ? 1 : 0);
92 writer.writeEncodedInt(ValueType.BYTE, value);
96 writer.writeEncodedUint(ValueType.CHAR, value);
100 writer.writeEncodedDouble(ValueType.DOUBLE, value);
104 writer.writeEncodedUint(ValueType.ENUM, fieldSection.getItemIndex(value));
108 writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value));
112 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/lldb/tools/debugserver/source/
H A DDNBError.h25 typedef uint32_t ValueType; typedef in class:DNBError
36 explicit DNBError( ValueType err = 0,
45 ValueType Error() const { return m_err; }
48 ValueType operator = (kern_return_t err)
70 void SetError(ValueType err, FlavorType flavor)
90 ValueType m_err;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DDexPool.java34 import org.jf.dexlib2.ValueType;
105 case ValueType.ANNOTATION:
109 case ValueType.ARRAY:
113 case ValueType.BOOLEAN:
116 case ValueType.BYTE:
119 case ValueType.CHAR:
122 case ValueType.DOUBLE:
125 case ValueType.ENUM:
128 case ValueType.FIELD:
131 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; }
/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...]
/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.java38 import org.jf.dexlib2.ValueType;
212 case ValueType.ANNOTATION:
216 case ValueType.ARRAY:
220 case ValueType.BOOLEAN:
223 case ValueType.BYTE:
226 case ValueType.CHAR:
229 case ValueType.DOUBLE:
232 case ValueType.ENUM:
235 case ValueType.FIELD:
238 case ValueType
[all...]
/external/lldb/source/Utility/
H A DRange.cpp21 Range::Range (Range::ValueType low,
22 Range::ValueType high) :
79 ValueType counter = m_low;
95 Range::ValueType
/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/llvm/lib/Target/Mips/
H A DMipsOptimizePICCall.cpp38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef in namespace:__anon10771
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 691 milliseconds

123456