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

1 2 34 5 6 7 8 910

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 28 typedef typename DocumentType::ValueType ValueType;
35 const ValueType& hello = doc["hello"];
40 const ValueType& t = doc["t"];
44 const ValueType& f = doc["f"];
48 const ValueType& n = doc["n"];
52 const ValueType& i = doc["i"];
57 const ValueType& pi = doc["pi"];
62 const ValueType& a = doc["a"];
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 532 ValueType VT = E->valueType();
534 case ValueType::BT_Void: {
538 case ValueType::BT_Bool: {
545 case ValueType::BT_Int: {
547 case ValueType::ST_8:
553 case ValueType::ST_16:
559 case ValueType::ST_32:
565 case ValueType::ST_64:
576 case ValueType::BT_Float:
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
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 SwigPyMapIterator_T : SwigPyIteratorClosed_T<OutIterator, ValueType, FromOper>
34 : SwigPyIteratorClosed_T<OutIterator,ValueType,FromOper>(curr, first, last, seq)
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
std_map.i 7 template <class ValueType>
10 typedef const ValueType& argument_type;
18 template <class ValueType>
21 typedef const ValueType& argument_type;
30 class ValueType = typename OutIterator::value_type>
31 struct MapIterator_T : ConstIteratorClosed_T<OutIterator, ValueType, FromOper>
34 : ConstIteratorClosed_T<OutIterator,ValueType,FromOper>(curr, first, last, seq)
  /external/google-breakpad/src/processor/
static_map_unittest.cc 41 typedef int ValueType;
43 typedef google_breakpad::StaticMap< KeyType, ValueType > TestMap;
44 typedef std::map< KeyType, ValueType > StdMap;
127 header[2] = kHeaderOffset + sizeof(ValueType);
174 sizeof(uint32_t) + sizeof(KeyType) + sizeof(ValueType);
311 SimpleMapSerializer<KeyType, ValueType> serializer;
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 304 enum ValueType {
318 ValueType Type;
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 52 Path::Path(const Path::ValueType* s) : m_PathName(s) {
81 Path& Path::assign(const Path::ValueType* s, unsigned int length) {
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 72 LDSymbol::ValueType pValue,
StaticResolver.h 108 LDSymbol::ValueType pValue) const;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field_reflection.h 129 template<typename T, typename ValueType>
130 void Set(Field* data, int index, const ValueType& value) const {
134 // be ActualType. Here we have a ValueType object and want a ActualType
135 // pointer. We can't cast a ValueType pointer to an ActualType pointer
136 // directly because their type might be different (for enums ValueType
143 template<typename T, typename ValueType>
144 void Add(Field* data, const ValueType& value) const {
148 // be ActualType. Here we have a ValueType object and want a ActualType
149 // pointer. We can't cast a ValueType pointer to an ActualType pointer
150 // directly because their type might be different (for enums ValueType
    [all...]
  /external/eigen/unsupported/test/
autodiff.cpp 40 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
71 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
110 typename Func::ValueType y(f.values()), yref(f.values());
NumericalDiff.cpp 21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
  /external/libchrome/base/
tuple.h 116 // ValueType: the bare, nonref version of a type (same as the type for nonrefs).
122 typedef P ValueType;
129 typedef P ValueType;
213 using ValueTuple = Tuple<typename TupleTraits<Ts>::ValueType...>;
  /external/libweave/third_party/chromium/base/
tuple.h 116 // ValueType: the bare, nonref version of a type (same as the type for nonrefs).
122 typedef P ValueType;
129 typedef P ValueType;
213 using ValueTuple = Tuple<typename TupleTraits<Ts>::ValueType...>;
  /external/llvm/include/llvm/IR/
GlobalValue.h 71 ValueType(Ty), Linkage(Linkage), Visibility(DefaultVisibility),
77 Type *ValueType;
188 Type *getValueType() const { return ValueType; }
  /external/opencv3/modules/features2d/test/
test_descriptors_regression.cpp 100 typedef typename Distance::ValueType ValueType;
122 CV_Assert( DataType<ValueType>::type == validDescriptors.type() );
128 DistanceType dist = distance( validDescriptors.ptr<ValueType>(y), calcDescriptors.ptr<ValueType>(y), dimension );
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexDataWriterTest.java 35 import org.jf.dexlib2.ValueType;
211 writer.writeEncodedInt(ValueType.INT, integerValue);
214 arr[0] = ValueType.INT | ((encodedValue.length-1) << 5);
245 writer.writeEncodedUint(ValueType.METHOD, integerValue);
248 arr[0] = ValueType.METHOD | ((encodedValue.length-1) << 5);
283 writer.writeEncodedLong(ValueType.LONG, longValue);
286 arr[0] = ValueType.LONG | ((encodedValue.length-1) << 5);
350 writer.writeRightZeroExtendedInt(ValueType.FLOAT, intValue);
353 arr[0] = ValueType.FLOAT | ((encodedValue.length-1) << 5);
395 writer.writeRightZeroExtendedLong(ValueType.DOUBLE, longValue)
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 123 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
124 typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
    [all...]
  /external/jsoncpp/include/json/
value.h 37 enum ValueType {
99 * The type of the held value is represented by a #ValueType and
212 Value(ValueType type = nullValue);
247 ValueType type() const;
289 bool isConvertibleTo(ValueType other) const;
443 void initBasic(ValueType type, bool allocated = false);
491 ValueType type_ : 8;
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 692 typedef T ValueType;
697 return normL2Sqr<ValueType, ResultType>(a, b, size);
708 typedef T ValueType;
713 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size));
724 typedef T ValueType;
729 return normL1<ValueType, ResultType>(a, b, size);
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 21 typedef T ValueType;
23 Y() { V = ValueType(); }
25 ValueType V;
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MultibinderTest.java 365 class ValueType {
368 ValueType(int a, int b) {
374 return (obj instanceof ValueType) && (((ValueType) obj).a == a);
382 return String.format("ValueType(%d,%d)", a, b);
388 final Multibinder<ValueType> multibinder =
389 Multibinder.newSetBinder(binder(), ValueType.class);
390 multibinder.addBinding().toProvider(Providers.of(new ValueType(1, 2)));
395 final Multibinder<ValueType> multibinder =
396 Multibinder.newSetBinder(binder(), ValueType.class)
    [all...]
  /external/libchrome/base/containers/
small_map.h 153 template <typename KeyType, typename ValueType>
154 struct select_equal_key< std::map<KeyType, ValueType>, false> {
161 template <typename KeyType, typename ValueType>
162 struct select_equal_key< base::hash_map<KeyType, ValueType>, false> {
  /external/google-benchmark/test/
benchmark_test.cc 97 template<typename Container, typename ValueType = typename Container::value_type>
99 ValueType v = 42;
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 146 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
153 bool updateDefsUses(ValueType V, bool MayStore);
157 SmallVectorImpl<ValueType> &Objects) const;
160 SmallPtrSet<ValueType, 4> Uses, Defs;
445 SmallVector<ValueType, 4> Objs;
449 for (SmallVectorImpl<ValueType>::const_iterator I = Objs.begin();
466 bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
477 SmallVectorImpl<ValueType> &Objects) const {

Completed in 2552 milliseconds

1 2 34 5 6 7 8 910