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

1 2 3 4 5 6 7 8 910

  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64RelocationFunctions.h 30 #define DECL_AARCH64_APPLY_RELOC_FUNC_PTRS(ValueType, MappedType) /* NOLINT */\
31 ValueType(0x0, MappedType(&none, "R_AARCH64_NULL", 0)), /* NOLINT */\
32 ValueType(0x1, MappedType(&none, "R_AARCH64_REWRITE_INSN", 32)), /* NOLINT */\
33 ValueType(0x100, MappedType(&none, "R_AARCH64_NONE", 0)), /* NOLINT */\
34 ValueType(0x101, MappedType(&abs, "R_AARCH64_ABS64", 64)), /* NOLINT */\
35 ValueType(0x102, MappedType(&abs, "R_AARCH64_ABS32", 32)), /* NOLINT */\
36 ValueType(0x103, MappedType(&abs, "R_AARCH64_ABS16", 16)), /* NOLINT */\
37 ValueType(0x104, MappedType(&rel, "R_AARCH64_PREL64", 64)), /* NOLINT */\
38 ValueType(0x105, MappedType(&rel, "R_AARCH64_PREL32", 32)), /* NOLINT */\
39 ValueType(0x106, MappedType(&rel, "R_AARCH64_PREL16", 16)), /* NOLINT */
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
EncodedValueUtils.java 34 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.SHORT
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedEncodedValue.java 34 import org.jf.dexlib2.ValueType;
50 int valueType = b & 0x1f;
53 switch (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
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 32 template <typename KeyType, typename ValueType, typename KeyCompare>
36 typedef ValueType value_type;
40 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
52 ValueType& value() { return m_Value; }
54 const ValueType& value() const { return m_Value; }
56 void setValue(const ValueType& pValue) { m_Value = pValue; }
62 ValueType m_Value;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
EncodedValueAdaptor.java 33 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.FLOAT
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableEncodedValueFactory.java 36 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.TYPE
    [all...]
  /external/google-breakpad/src/processor/
postfix_evaluator-inl.h 69 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 value
    [all...]
postfix_evaluator.h 44 // 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);
cfi_frame_info.h 69 template<typename ValueType> class RegisterValueMap:
70 public map<string, ValueType> { };
82 // this rule set. Use ValueType in expression evaluation; this
98 template<typename ValueType>
99 bool FindCallerRegs(const RegisterValueMap<ValueType> &registers,
101 RegisterValueMap<ValueType> *caller_registers) const;
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 64 \tparam ValueType The value type of the DOM tree. E.g. GenericValue<UTF8<> >
67 \note GenericPointer uses same encoding of ValueType.
70 template <typename ValueType, typename Allocator = CrtAllocator>
73 typedef typename ValueType::EncodingType EncodingType; //!< Encoding type from Value
278 GenericPointer Append(const ValueType& token, Allocator* allocator = 0) const {
387 ValueType& Create(ValueType& root, typename ValueType::AllocatorType& allocator, bool* alreadyExist = 0) const {
389 ValueType* v = &root;
417 typename ValueType::MemberIterator m = v->FindMember(GenericStringRef<Ch>(t->name, t->length))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
EncodedValueWriter.java 35 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.FLOAT, value)
    [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;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ValueType.java 34 public final class ValueType {
52 private ValueType() {}
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DexPool.java 35 import org.jf.dexlib2.ValueType;
114 case ValueType.ANNOTATION:
118 case ValueType.ARRAY:
122 case ValueType.BOOLEAN:
125 case ValueType.BYTE:
128 case ValueType.CHAR:
131 case ValueType.DOUBLE:
134 case ValueType.ENUM:
137 case ValueType.FIELD:
140 case ValueType.FLOAT
    [all...]
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 41 template<typename ValueType>
42 void parseType (const char* src, ValueType* dst);
54 typedef typename OptName::ValueType ValueType;
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_, const char* defaultValue_ = DE_NULL
    [all...]
  /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'}}
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 25 typedef Path::ValueType ValueType;
30 explicit RealPath(const ValueType* s);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
any.h 48 typedef ArenaStringPtr ValueType;
51 AnyMetadata(UrlType* type_url, ValueType* value);
82 ValueType* value_;
  /art/runtime/lambda/
box_table.h 90 using ValueType = GcRoot<mirror::Object>;
93 ValueType FindBoxedLambda(const ClosureType& closure) const
105 void MakeEmpty(std::pair<UnorderedMapKeyType, ValueType>& item) const
108 bool IsEmpty(const std::pair<UnorderedMapKeyType, ValueType>& item) const;
124 ValueType,
128 TrackingAllocator<std::pair<ClosureType, ValueType>,
box_table.cc 66 std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
95 ValueType value = FindBoxedLambda(closure);
135 ValueType value = FindBoxedLambda(closure);
151 map_.Insert({closure_table_copy, ValueType(closure_as_array_object)});
196 BoxTable::ValueType BoxTable::FindBoxedLambda(const ClosureType& closure) const {
199 const std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
200 const ValueType& value = key_value_pair.second;
206 return ValueType(nullptr);
229 std::pair<UnorderedMapKeyType, ValueType>& key_value_pair = *map_iterator;
231 const ValueType& old_value = key_value_pair.second
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/value/
BaseNullEncodedValue.java 35 import org.jf.dexlib2.ValueType;
58 public int getValueType() { return ValueType.NULL; }
  /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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderContext.java 38 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.FLOAT
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/octave/
std_map.i 8 template <class ValueType>
11 typedef const ValueType& argument_type;
19 template <class ValueType>
22 typedef const ValueType& argument_type;
30 template<class OutIterator, class FromOper, class ValueType = typename OutIterator::value_type>
31 struct OctMapIterator_T : OctSwigIteratorClosed_T<OutIterator, ValueType, FromOper>
34 : OctSwigIteratorClosed_T<OutIterator,ValueType,FromOper>(curr, first, last, seq)
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ZHash.java 26 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) {

Completed in 523 milliseconds

1 2 3 4 5 6 7 8 910