HomeSort by relevance Sort by last modified time
    Searched defs:ResultType (Results 1 - 25 of 65) 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());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
BaseResultsDialog.java 34 public enum ResultType {
43 protected HashMap<ResultType, TextView> mTextViews;
56 for (ResultType resultType : mResult.getResults().keySet()) {
57 if (mResult.getResults().get(resultType)) {
58 mTextViews.get(resultType).setText(getString(R.string.passed));
61 mTextViews.get(resultType).setText(getString(R.string.failed));
  /system/bt/btif/test/
btif_profile_queue_test.cc 42 enum ResultType {
51 static ResultType sResult;
  /cts/tests/leanbackjank/src/android/leanbackjank/cts/
CtsJankTestBase.java 26 import com.android.compatibility.common.util.ResultType;
37 ResultType resultType, ResultUnit resultUnit) {
41 mLog.addValue(source, formatKeyForTestMetrics(key), metrics.getInt(key), resultType, resultUnit);
45 ResultType resultType, ResultUnit resultUnit) {
49 mLog.addValue(source, formatKeyForTestMetrics(key), metrics.getDouble(key), resultType,
61 ResultType.HIGHER_BETTER, ResultUnit.FPS);
64 ResultType.LOWER_BETTER, ResultUnit.MS);
66 ResultType.LOWER_BETTER, ResultUnit.COUNT)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 183 Type *ResultType =
186 M, Intrinsic::nvvm_ptr_global_to_gen, {ResultType, DestTy});
  /external/pdfium/third_party/base/numerics/
safe_math.h 375 struct ResultType;
380 struct ResultType<M, L, R> {
388 struct ResultType {
390 typename ResultType<M, typename ResultType<M, L, R>::type, Args...>::type;
417 CheckedNumeric<typename ResultType<M, L, R, Args...>::type>
429 CheckedNumeric<typename ResultType<Checked##NAME##Op, L, R, Args...>::type> \
  /system/bt/service/common/bluetooth/
scan_settings.h 96 enum ResultType {
117 ResultType result_type, base::TimeDelta report_delay_ms,
130 ResultType result_type() const { return result_type_; }
131 void set_result_type(ResultType type) { result_type_ = type; }
155 ResultType result_type_;
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 354 llvm::Type *ResultType = nullptr;
359 ResultType = llvm::StructType::get(getLLVMContext());
364 ResultType = GetFunctionType(*FI);
375 return ResultType;
395 llvm::Type *ResultType = nullptr;
414 ResultType = llvm::Type::getInt8Ty(getLLVMContext());
419 ResultType = llvm::Type::getInt1Ty(getLLVMContext());
438 ResultType = llvm::IntegerType::get(getLLVMContext(),
444 ResultType =
453 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();
198 RV = PerformReturnAdjustment(*this, ResultType, RV, Thunk);
218 QualType ResultType = CGM.getCXXABI().HasThisReturn(GD)
232 CGM.getCXXABI().addImplicitStructorParams(*this, ResultType, FunctionArgs);
235 StartFunction(GlobalDecl(), ResultType, Fn, FnInfo, FunctionArgs,
310 QualType ResultType = CGM.getCXXABI().HasThisReturn(CurGD)
316 if (!ResultType->isVoidType() &
    [all...]
CGCall.cpp 149 CanQualType resultType = FTP->getReturnType().getUnqualifiedType();
151 return CGT.arrangeLLVMFunctionInfo(resultType, instanceMethod,
293 CanQualType resultType = TheCXXABI.HasThisReturn(GD)
298 return arrangeLLVMFunctionInfo(resultType, /*instanceMethod=*/true,
363 CanQualType ResultType = TheCXXABI.HasThisReturn(GD)
372 return arrangeLLVMFunctionInfo(ResultType, /*instanceMethod=*/true,
586 CodeGenTypes::arrangeBuiltinFunctionCall(QualType resultType,
593 GetReturnType(resultType), /*instanceMethod=*/false,
599 CodeGenTypes::arrangeBuiltinFunctionDeclaration(QualType resultType,
604 GetReturnType(resultType), /*instanceMethod=*/false, /*chainCall=*/false
    [all...]
CGStmt.cpp     [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 59 template<typename ResultType>
60 inline void evalTo(ResultType& res) const
98 typedef Block<MatrixType,Dynamic,Dynamic> ResultType;
103 void computePade(int degree, const MatrixType& IminusT, ResultType& res) const;
104 void compute2x2(ResultType& res, RealScalar p) const;
105 void computeBig(ResultType& res) const;
132 void compute(ResultType& res) const;
144 void MatrixPowerAtomic<MatrixType>::compute(ResultType& res) const
162 void MatrixPowerAtomic<MatrixType>::computePade(int degree, const MatrixType& IminusT, ResultType& res) const
176 void MatrixPowerAtomic<MatrixType>::compute2x2(ResultType& res, RealScalar p) cons
    [all...]
  /external/gemmlowp/test/
benchmark.cc 74 template <typename LhsType, typename RhsType, typename ResultType>
93 std::vector<ResultType> result(pool_size * gemms.size());
142 template <typename LhsType, typename RhsType, typename ResultType>
146 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms);
177 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType;
193 gflops_for_gemms<LhsType, RhsType, ResultType>(context, unique_gemm);
221 typedef Matrix<std::uint8_t, MapOrder::ColMajor> ResultType;
234 time_for_gemms<LhsType, RhsType, ResultType>(context, gemms));
test.cc 401 typename ResultType>
403 const RhsType& rhs, ResultType* result, int lhs_offset,
422 typedef typename ResultType::Scalar Scalar;
425 static const MapOrder kResultOrder = ResultType::kOrder;
426 ResultType ref_result(rows, cols);
494 typename ResultType>
496 const RhsType& rhs, ResultType* result, int lhs_offset,
519 typedef Matrix<Scalar, ResultOrder> ResultType;
520 ResultType result(rows, cols);
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/
LogAnalyzer.java 61 private enum ResultType {
87 private List<ResultType> mResultType = new ArrayList<ResultType>();
197 for (ResultType resultType : mResultType) {
198 switch (resultType) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsTestActivity.java 48 import com.android.compatibility.common.util.ResultType;
264 summary.toString(), 1.0, ResultType.NEUTRAL, ResultUnit.NONE);
350 , 1.0, ResultType.NEUTRAL, ResultUnit.NONE);
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 497 QualType resultType = result.get()->getType();
530 new (S.Context) UnaryOperator(syntacticOp, opcode, resultType,
    [all...]
SemaCast.cpp 53 ResultType(destType.getNonLValueExprType(S.Context)),
68 QualType ResultType;
260 return Op.complete(CXXConstCastExpr::Create(Context, Op.ResultType,
271 return Op.complete(CXXDynamicCastExpr::Create(Context, Op.ResultType,
283 return Op.complete(CXXReinterpretCastExpr::Create(Context, Op.ResultType,
296 return Op.complete(CXXStaticCastExpr::Create(Context, Op.ResultType,
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 440 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const typename internal::transform_right_product_impl<Transform, OtherDerived>::ResultType
452 EIGEN_DEVICE_FUNC inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType
505 // Eigen::Transform<double, 3, Mode, Options>, <expression>>::ResultType (const Eigen::Transform<double, 3, Mode, Options> &) const")
510 typedef typename ProductType::ResultType ResultType;
516 inline typename icc_11_workaround<OtherMode,OtherOptions>::ResultType
525 EIGEN_DEVICE_FUNC inline typename internal::transform_transform_product_impl<Transform,Transform<Scalar,Dim,OtherMode,OtherOptions> >::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
174 enum ResultType {
203 ResultType compareQuadConic(const SkConic& , SkQuadConstruct* ) const;
204 ResultType compareQuadCubic(const SkPoint cubic[4], SkQuadConstruct* );
205 ResultType compareQuadQuad(const SkPoint quad[3], SkQuadConstruct* );
217 ResultType intersectRay(SkQuadConstruct* , IntersectRayType STROKER_DEBUG_PARAMS(int) ) const
    [all...]
  /tools/tradefederation/core/prod-tests/src/com/android/performance/tests/
FioBenchmarkTest.java 165 public enum ResultType {
192 public ResultType mType = ResultType.STRING;
496 m.mType = PerfMetricInfo.ResultType.FLOAT;
568 m.mType = PerfMetricInfo.ResultType.FLOAT;
583 m.mType = PerfMetricInfo.ResultType.FLOAT;
656 m.mType = PerfMetricInfo.ResultType.FLOAT;
667 m.mType = PerfMetricInfo.ResultType.FLOAT;
679 m.mType = PerfMetricInfo.ResultType.FLOAT;
686 m.mType = PerfMetricInfo.ResultType.FLOAT
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 382 enum ResultType {
388 ResultType type();
402 enum ResultType {
409 ResultType type();
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.cpp 563 for (const RSExportType *ResultType : mRSContext->getReduceResultTypes(
570 genExportReduceResultType(ResultType);
    [all...]

Completed in 837 milliseconds

1 2 3