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

12 3 4 5 6

  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 50 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
61 //int operator()(const InputType &x, ValueType& fvec) { }
74 typedef Matrix<Scalar,Dynamic,1> ValueType;
88 //int operator()(const InputType &x, ValueType& fvec) { }
  /external/eigen/unsupported/test/
NonLinearOptimization.cpp 115 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType;
127 // void operator() (const InputType& x, ValueType* v, JacobianType* _j=0) const;
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
JsonValue.java 38 private ValueType type;
50 public JsonValue (ValueType type) {
317 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
349 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
378 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
407 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
436 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
465 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
494 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
523 if (type != ValueType.array) throw new IllegalStateException("Value is not an array: " + type);
    [all...]
  /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 {
  /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/v8/src/compiler/
node-matchers.h 49 typedef T ValueType;
268 typename BinopMatcher::RightMatcher::ValueType value =
276 typename BinopMatcher::RightMatcher::ValueType value =
  /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/llvm/lib/CodeGen/
ScheduleDAGInstrs.cpp 123 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
124 typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4>
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 765 typedef std::pair<CodeGenInstAlias, int> ValueType;
766 bool operator()(const ValueType &LHS, const ValueType &RHS) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
authz.h 150 USHORT ValueType;
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 131 struct ValueType {
155 inline static ValueType getValueType();
157 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS)
168 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) {
181 inline ValueType ValueType::getValueType<void>() {
182 return ValueType(BT_Void, ST_0, false, 0);
186 inline ValueType ValueType::getValueType<bool>()
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderOperatorTests.cpp 200 enum ValueType
229 static inline bool isScalarType (ValueType type)
236 Value (ValueType valueType_, float rangeMin_, float rangeMax_)
237 : valueType (valueType_)
243 ValueType valueType;
257 BuiltinFuncInfo (const char* caseName_, const char* shaderFuncName_, ValueType outValue_, Value input0_, Value input1_, Value input2_, float resultScale_, float resultBias_, deUint32 precisionMask_, ShaderEvalFunc evalFuncScalar_, ShaderEvalFunc evalFuncVec2_, ShaderEvalFunc evalFuncVec3_, ShaderEvalFunc evalFuncVec4_, OperationType type_=FUNCTION, bool isUnaryPrefix_=true)
278 ValueType outValue;
293 static inline BuiltinFuncInfo BuiltinOperInfo (const char* caseName_, const char* shaderFuncName_, ValueType outValue_, Value input0_, Value input1_, Value input2_, float resultScale_, float resultBias_, deUint32 precisionMask_, ShaderEvalFunc evalFuncScalar_, ShaderEvalFunc evalFuncVec2_, ShaderEvalFunc evalFuncVec3_, ShaderEvalFunc evalFuncVec4_)
299 static inline BuiltinFuncInfo BuiltinPostOperInfo (const char* caseName_, const char* shaderFuncName_, ValueType outValue_, Value input0_, Value input1_, Value input2_, float resultScale_, float resultBias_, deU (…)
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MapBinderTest.java 109 private Type mapEntryOf(Type keyType, Type valueType) {
110 return Types.newParameterizedTypeWithOwner(Map.class, Map.Entry.class, keyType, valueType);
485 class ValueType {
488 private ValueType(int keyPart, int dataPart) {
494 return (obj instanceof ValueType) && (keyPart == ((ValueType) obj).keyPart);
503 MapBinder<String, ValueType> multibinder = MapBinder.newMapBinder(
504 binder(), String.class, ValueType.class);
505 multibinder.addBinding("a").toInstance(new ValueType(1, 2));
510 MapBinder<String, ValueType> multibinder = MapBinder.newMapBinder
    [all...]
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/opencv3/modules/core/include/opencv2/core/
base.hpp 411 typedef unsigned char ValueType;
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h 120 typedef typename internal::MaybeAddConst<Const,PlainType>::Type ValueType;
121 typedef std::iterator<std::random_access_iterator_tag,ValueType> BaseType;
433 typedef GenericValue<Encoding, Allocator> ValueType; //!< Value type of itself.
    [all...]
  /art/runtime/
dex_file.h     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderOperatorTests.cpp 241 enum ValueType
276 static inline bool isScalarType (ValueType type)
281 static inline bool isFloatType (ValueType type)
286 static inline bool isIntType (ValueType type)
291 static inline bool isUintType (ValueType type)
296 static inline bool isBoolType (ValueType type)
303 Value (ValueType valueType_, const float rangeMin_, const float rangeMax_)
304 : valueType (valueType_)
310 ValueType valueType;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderOperatorTests.cpp 261 enum ValueType
296 static inline bool isScalarType (ValueType type)
301 static inline bool isFloatType (ValueType type)
306 static inline bool isIntType (ValueType type)
311 static inline bool isUintType (ValueType type)
316 static inline bool isBoolType (ValueType type)
417 Value (ValueType valueType_, const FloatScalar& rangeMin_, const FloatScalar& rangeMax_)
418 : valueType (valueType_)
424 ValueType valueType;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 105 llvm::Type *ValueType = Args[1]->getType();
111 return EmitFromInt(CGF, Result, T, ValueType);
166 llvm::Type *ValueType = Args[1]->getType();
177 Result = EmitFromInt(CGF, Result, T, ValueType);
205 llvm::Type *ValueType = Args[1]->getType();
219 ValueType);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 1355 milliseconds

12 3 4 5 6