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

1 2 3 4 5 6

  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 25 typedef Path::ValueType ValueType;
30 explicit RealPath(const ValueType* s);
Path.h 46 typedef char ValueType;
51 explicit Path(const ValueType* s);
60 Path& assign(const ValueType* s, unsigned int length);
77 const ValueType* c_str() const { return m_PathName.c_str(); }
  /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_;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 36 typedef typename Functor::ValueType ValueType;
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
  /external/eigen/unsupported/test/
forward_adolc.cpp 34 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
65 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
104 typename Func::ValueType y(f.values()), yref(f.values());
NumericalDiff.cpp 21 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
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());
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.h 133 MVT ValueType;
141 return ValueType;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ValueType.java 34 public final class ValueType {
52 private ValueType() {}
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 42 typedef typename Functor::ValueType ValueType;
73 ValueType val1, val2;
  /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/DebugInfo/DWARF/
DWARFFormValue.h 38 struct ValueType {
39 ValueType() : data(nullptr) {
52 ValueType Value; // Contains all data for the form.
  /frameworks/compile/mclinker/include/mcld/LD/
LDSymbol.h 38 typedef uint64_t ValueType;
101 ValueType value() const { return m_Value; }
119 void setValue(ValueType pValue) { m_Value = pValue; }
138 ValueType m_Value;
  /external/llvm/include/llvm/IR/
GlobalValue.h 71 ValueType(Ty), Linkage(Linkage), Visibility(DefaultVisibility),
77 Type *ValueType;
188 Type *getValueType() const { return ValueType; }
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 304 enum ValueType {
318 ValueType Type;
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 39 struct Help { typedef bool ValueType; };
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/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/llvm/lib/Target/Hexagon/
BitTracker.h 106 enum ValueType {
141 ValueType Type;
144 BitValue(ValueType T = Top) : Type(T) {}
  /external/llvm/lib/Target/Mips/
MipsOptimizePICCall.cpp 38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
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 &Val) const
    [all...]
  /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/AST/
ExternalASTSource.h 398 typedef llvm::PointerUnion<T, LazyData*> ValueType;
399 ValueType Value;
401 LazyGenerationalUpdatePtr(ValueType V) : Value(V) {}
404 static ValueType makeValue(const ASTContext &Ctx, T Value);
454 return LazyGenerationalUpdatePtr(ValueType::getFromOpaqueValue(Ptr));
  /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/clang/test/SemaTemplate/
instantiate-local-class.cpp 21 typedef T ValueType;
23 Y() { V = ValueType(); }
25 ValueType V;

Completed in 1110 milliseconds

1 2 3 4 5 6