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

1 2 3

  /cts/common/util/src/com/android/compatibility/common/util/
ResultType.java 22 public enum ResultType {
40 * Returns a {@link ResultType} given a string from the report.
42 public static ResultType parseReportString(String value) {
43 return ResultType.valueOf(value.toUpperCase());
  /external/chromium-trace/catapult/third_party/typ/typ/
__init__.py 64 from typ.json_results import Result, ResultSet, ResultType
80 'ResultType',
json_results.py 20 class ResultType(object):
43 self.expected = expected or [ResultType.Pass]
128 if r.actual == ResultType.Failure:
130 elif r.actual == ResultType.Pass and r.name in names:
136 return set(r.name for r in results.results if r.actual == ResultType.Pass)
143 if r.actual == ResultType.Failure:
145 elif r.actual == ResultType.Pass:
runner.py 52 ResultType = json_results.ResultType
470 result = Result(test_input.name, actual=ResultType.Skip,
472 expected=[ResultType.Skip],
528 assert result.actual in [ResultType.Failure, ResultType.Skip,
529 ResultType.Pass]
530 if result.actual == ResultType.Failure:
532 elif result.actual == ResultType.Skip:
534 elif result.actual == ResultType.Pass
    [all...]
  /external/v8/test/unittests/
cancelable-tasks-unittest.cc 84 typedef base::AtomicWord ResultType;
87 intptr_t GetValue(ResultType* result) { return base::Acquire_Load(result); }
100 ResultType result1 = 0;
113 ResultType result1 = 0;
114 ResultType result2 = 0;
138 ResultType result1 = 0;
139 ResultType result2 = 0;
161 ResultType result1 = 0;
162 ResultType result2 = 0;
180 ResultType result1 = 0
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 183 Type *ResultType =
186 ParamTypes.push_back(ResultType);
  /system/bt/service/common/bluetooth/
scan_settings.h 96 enum ResultType {
118 ResultType result_type,
133 ResultType result_type() const { return result_type_; }
134 void set_result_type(ResultType type) { result_type_ = type; }
158 ResultType result_type_;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsTestActivity.java 42 import com.android.compatibility.common.util.ResultType;
84 summary.toString(), 1.0, ResultType.NEUTRAL, ResultUnit.NONE);
163 , 1.0, ResultType.NEUTRAL, ResultUnit.NONE);
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 343 llvm::Type *ResultType = nullptr;
348 ResultType = llvm::StructType::get(getLLVMContext());
353 ResultType = GetFunctionType(*FI);
364 return ResultType;
384 llvm::Type *ResultType = nullptr;
403 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
408 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
427 ResultType = llvm::IntegerType::get(getLLVMContext(),
433 ResultType =
441 ResultType = getTypeForFormat(getLLVMContext()
    [all...]
CGVTables.cpp 84 QualType ResultType, RValue RV,
87 bool NullCheckValue = !ResultType->isReferenceType();
105 auto ClassDecl = ResultType->getPointeeType()->getAsCXXRecordDecl();
149 QualType ResultType = FPT->getReturnType();
200 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
220 QualType ResultType = CGM.getCXXABI().HasThisReturn(GD)
234 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
237 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs,
313 QualType ResultType = CGM.getCXXABI().HasThisReturn(CurGD)
319 if (!ResultType->isVoidType() &
    [all...]
CGCall.cpp 131 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
132 return CGT.arrangeLLVMFunctionInfo(resultType, instanceMethod,
248 CanQualType resultType = TheCXXABI.HasThisReturn(GD)
253 return arrangeLLVMFunctionInfo(resultType, /*instanceMethod=*/true,
272 CanQualType ResultType = TheCXXABI.HasThisReturn(GD)
279 return arrangeLLVMFunctionInfo(ResultType, /*instanceMethod=*/true,
461 CodeGenTypes::arrangeFreeFunctionCall(QualType resultType,
470 GetReturnType(resultType), /*instanceMethod=*/false,
491 QualType resultType, const FunctionArgList &args,
501 GetReturnType(resultType), /*instanceMethod=*/false
    [all...]
CGStmt.cpp     [all...]
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h 166 inline const typename ei_transform_product_impl<OtherDerived,_Dim,_Dim+1>::ResultType
744 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType;
745 static ResultType run(const TransformType& tr, const Other& other)
754 typedef TransformType ResultType;
755 static ResultType run(const TransformType& tr, const Other& other)
770 typedef typename ProductReturnType<MatrixType,Other>::Type ResultType;
771 static ResultType run(const TransformType& tr, const Other& other)
780 typedef Matrix<Scalar,Dim,1> ResultType;
781 static ResultType run(const TransformType& tr, const Other& other)
  /external/gemmlowp/test/
benchmark.cc 69 template <typename LhsType, typename RhsType, typename ResultType>
88 std::vector<ResultType> result(pool_size * gemms.size());
137 template <typename LhsType, typename RhsType, typename ResultType>
141 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms);
172 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType;
188 gflops_for_gemms<LhsType, RhsType, ResultType>(context, unique_gemm);
216 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType;
229 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms));
test.cc 364 typename ResultType>
366 const RhsType& rhs, ResultType* result, int lhs_offset,
380 typedef typename ResultType::Scalar Scalar;
383 static const MapOrder kResultOrder = ResultType::kOrder;
384 ResultType ref_result(rows, cols);
471 typename ResultType>
473 const RhsType& rhs, ResultType* result, int lhs_offset,
495 typedef Matrix<Scalar, ResultOrder> ResultType;
496 ResultType result(rows, cols);
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
dist.h 109 typedef typename Accumulator<T>::Type ResultType;
112 ResultType operator()(Iterator1 a, Iterator2 b, size_t size, ResultType /*worst_dist*/ = -1) const
114 ResultType result = ResultType();
115 ResultType diff;
124 inline ResultType accum_dist(const U& a, const V& b, int) const
142 typedef typename Accumulator<T>::Type ResultType;
154 ResultType operator()(Iterator1 a, Iterator2 b, size_t size, ResultType worst_dist = -1) cons
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 400 EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
412 inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType
465 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
470 typedef typename ProductType::ResultType ResultType;
476 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
485 inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::ResultType
    [all...]
  /external/opencv3/modules/features2d/include/opencv2/
features2d.hpp 693 typedef typename Accumulator<T>::Type ResultType;
695 ResultType operator()( const T* a, const T* b, int size ) const
697 return normL2Sqr<ValueType, ResultType>(a, b, size);
709 typedef typename Accumulator<T>::Type ResultType;
711 ResultType operator()( const T* a, const T* b, int size ) const
713 return (ResultType)std::sqrt((double)normL2Sqr<ValueType, ResultType>(a, b, size));
725 typedef typename Accumulator<T>::Type ResultType;
727 ResultType operator()( const T* a, const T* b, int size ) const
729 return normL1<ValueType, ResultType>(a, b, size)
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 497 QualType resultType = result.get()->getType();
530 new (S.Context) UnaryOperator(syntacticOp, opcode, resultType,
    [all...]
SemaCast.cpp 52 ResultType(destType.getNonLValueExprType(S.Context)),
67 QualType ResultType;
259 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
270 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
282 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
295 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
    [all...]
  /external/skia/src/core/
SkStroke.cpp 39 #define STROKER_RESULT(resultType, depth, quadPts, format, ...) \
41 SkDebugf(" " #resultType " t=(%g,%g)\n", quadPts->fStartT, quadPts->fEndT), \
42 resultType
45 #define STROKER_RESULT(resultType, depth, quadPts, format, ...) \
46 resultType
171 enum ResultType {
201 ResultType compareQuadConic(const SkConic& , SkQuadConstruct* ) const;
202 ResultType compareQuadCubic(const SkPoint cubic[4], SkQuadConstruct* );
203 ResultType compareQuadQuad(const SkPoint quad[3], SkQuadConstruct* );
215 ResultType intersectRay(SkQuadConstruct* , IntersectRayType STROKER_DEBUG_PARAMS(int) ) const
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 375 enum ResultType {
381 ResultType type();
395 enum ResultType {
402 ResultType type();
  /external/opencv3/modules/core/include/opencv2/core/
base.hpp 412 typedef int ResultType;
416 ResultType operator()( const unsigned char* a, const unsigned char* b, int size ) const;
  /frameworks/compile/slang/
slang_rs_reflection.cpp 438 for (const RSExportType *ResultType : mRSContext->getReduceResultTypes(
445 genExportReduceResultType(ResultType);
    [all...]

Completed in 464 milliseconds

1 2 3