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

1 2 3 4 5 6 7 8 91011>>

  /test/suite_harness/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());
ReportLog.java 61 ResultType mType;
64 Metric(String source, String message, double value, ResultType type, ResultUnit unit) {
79 Metric(String source, String message, double[] values, ResultType type, ResultUnit unit) {
117 public ResultType getType() {
145 ResultType type = ResultType.parseReportString(
177 public void addValues(String message, double[] values, ResultType type, ResultUnit unit) {
184 public void addValues(String source, String message, double[] values, ResultType type,
192 public void addValue(String message, double value, ResultType type, ResultUnit unit) {
199 public void addValue(String source, String message, double value, ResultType type
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseSparseProductWithPruning.h 19 template<typename Lhs, typename Rhs, typename ResultType>
20 static void sparse_sparse_product_with_pruning_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res, const typename ResultType::RealScalar& tolerance)
37 if(ResultType::IsRowMajor)
79 template<typename Lhs, typename Rhs, typename ResultType,
82 int ResStorageOrder = traits<ResultType>::Flags&RowMajorBit>
85 template<typename Lhs, typename Rhs, typename ResultType>
86 struct sparse_sparse_product_with_pruning_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
89 typedef typename ResultType::RealScalar RealScalar;
91 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res, const RealScalar& tolerance
    [all...]
ConservativeSparseSparseProduct.h 17 template<typename Lhs, typename Rhs, typename ResultType>
18 static void conservative_sparse_sparse_product_impl(const Lhs& lhs, const Rhs& rhs, ResultType& res, bool sortedInsertion = false)
125 template<typename Lhs, typename Rhs, typename ResultType,
128 int ResStorageOrder = (traits<ResultType>::Flags&RowMajorBit) ? RowMajor : ColMajor>
131 template<typename Lhs, typename Rhs, typename ResultType>
132 struct conservative_sparse_sparse_product_selector<Lhs,Rhs,ResultType,ColMajor,ColMajor,ColMajor>
137 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res)
139 typedef SparseMatrix<typename ResultType::Scalar,RowMajor,typename ResultType::StorageIndex> RowMajorMatrix;
140 typedef SparseMatrix<typename ResultType::Scalar,ColMajor,typename ResultType::StorageIndex> ColMajorMatrixAux
    [all...]
  /system/core/toolbox/
getprop.cpp 32 enum class ResultType {
38 void PrintAllProperties(ResultType result_type) {
55 if (result_type != ResultType::Value) {
60 if (result_type == ResultType::Context) {
73 void PrintProperty(const char* name, const char* default_value, ResultType result_type) {
75 case ResultType::Value:
78 case ResultType::Context: {
84 case ResultType::Type: {
94 auto result_type = ResultType::Value;
119 if (result_type != ResultType::Value)
    [all...]
  /external/eigen/Eigen/src/LU/
InverseImpl.h 22 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
26 static inline void run(const MatrixType& matrix, ResultType& result)
32 template<typename MatrixType, typename ResultType, int Size = MatrixType::RowsAtCompileTime>
39 template<typename MatrixType, typename ResultType>
40 struct compute_inverse<MatrixType, ResultType, 1>
43 static inline void run(const MatrixType& matrix, ResultType& result)
51 template<typename MatrixType, typename ResultType>
52 struct compute_inverse_and_det_with_check<MatrixType, ResultType, 1>
58 ResultType& result,
59 typename ResultType::Scalar& determinant
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/ResultObjects/
ResultObject.java 27 private HashMap<BaseResultsDialog.ResultType, Boolean> mResults;
34 public ResultObject(HashMap<BaseResultsDialog.ResultType, Boolean> results) {
53 public HashMap<AccuracyResultDialog.ResultType, Boolean> getResults() {
  /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/tensorflow/tensorflow/core/lib/random/
random_distributions.h 45 // sample count for each invocation, and ResultType for the
64 typedef Array<Eigen::half, kResultElementCount> ResultType;
68 ResultType operator()(Generator* gen) {
69 typename Generator::ResultType sample = (*gen)();
70 ResultType result;
88 typedef Array<float, kResultElementCount> ResultType;
92 ResultType operator()(Generator* gen) {
93 typename Generator::ResultType sample = (*gen)();
94 ResultType result;
112 typedef Array<double, kResultElementCount> ResultType;
    [all...]
philox_random_test.cc 39 typedef PhiloxRandom::ResultType ResultType;
43 ResultType operator()(PhiloxRandom* gen) { return (*gen)(); }
  /cts/tests/sample/src/android/sample/cts/
SampleDeviceReportLogTest.java 22 import com.android.compatibility.common.util.ResultType;
71 reportLog.addValue(EXPECTED_PRODUCT_TAG, 1.0 * MULTIPLICATION_RESULT, ResultType.NEUTRAL,
73 reportLog.addValue(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE);
74 reportLog.setSummary(ACTUAL_PRODUCT_TAG, 1.0 * product, ResultType.NEUTRAL, ResultUnit.NONE);
120 reportLog.addValue(START_TAG, 1.0 * start, ResultType.NEUTRAL, ResultUnit.NONE);
121 reportLog.addValue(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE);
122 reportLog.setSummary(END_TAG, 1.0 * end, ResultType.NEUTRAL, ResultUnit.NONE);
SampleDeviceResultTest.java 24 import com.android.compatibility.common.util.ResultType;
87 reportLog.addValues("times", result, ResultType.LOWER_BETTER, ResultUnit.MS);
88 reportLog.addValue("min", stat.mMin, ResultType.LOWER_BETTER, ResultUnit.MS);
89 reportLog.addValue("max", stat.mMax, ResultType.LOWER_BETTER, ResultUnit.MS);
91 reportLog.setSummary("average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
  /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_;
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaPerfUtils.java 22 import com.android.compatibility.common.util.ResultType;
61 log.addValue("round", round, ResultType.NEUTRAL, ResultUnit.NONE);
62 log.addValue("codec_name", codecName, ResultType.NEUTRAL, ResultUnit.NONE);
63 log.addValue("mime_type", mime, ResultType.NEUTRAL, ResultUnit.NONE);
64 log.addValue("width", width, ResultType.NEUTRAL, ResultUnit.NONE);
65 log.addValue("height", height, ResultType.NEUTRAL, ResultUnit.NONE);
67 ResultType.NEUTRAL, ResultUnit.NONE);
69 ResultType.NEUTRAL, ResultUnit.NONE);
71 ResultType.NEUTRAL, ResultUnit.NONE);
80 log.addValue("reported_low", reported.getLower(), ResultType.NEUTRAL, ResultUnit.FPS)
    [all...]
DeviceReportLog.java 71 public void addValue(String source, String message, double value, ResultType type,
85 public void addValue(String message, double value, ResultType type, ResultUnit unit) {
98 public void addValues(String source, String message, double[] values, ResultType type,
112 public void addValues(String message, double[] values, ResultType type, ResultUnit unit) {
125 public void addValue(String message, int value, ResultType type, ResultUnit unit) {
137 public void addValue(String message, long value, ResultType type, ResultUnit unit) {
149 public void addValue(String message, float value, ResultType type, ResultUnit unit) {
161 public void addValue(String message, boolean value, ResultType type, ResultUnit unit) {
173 public void addValue(String message, String value, ResultType type, ResultUnit unit) {
185 public void addValues(String message, int[] values, ResultType type, ResultUnit unit)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
RobustnessResultDialog.java 45 mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult));
46 mTextViews.put(ResultType.PATH, (TextView) mRootView.findViewById(R.id.tvPathResult));
47 mTextViews.put(ResultType.TIME, (TextView) mRootView.findViewById(R.id.tvTimeResult));
48 mTextViews.put(ResultType.ROTATION, (TextView) mRootView.findViewById(R.id.tvRotationResult));
  /cts/tests/simplecpu/src/android/simplecpu/cts/
SimpleCpuTest.java 23 import com.android.compatibility.common.util.ResultType;
104 report.addValue("array_length", arrayLength, ResultType.NEUTRAL, ResultUnit.NONE);
105 report.addValues("sorting_time", result, ResultType.LOWER_BETTER, ResultUnit.MS);
110 report.setSummary("sorting_time_average", stat.mAverage, ResultType.LOWER_BETTER, ResultUnit.MS);
128 report.addValue("matrix_dimension", n, ResultType.NEUTRAL, ResultUnit.NONE);
129 report.addValues("matrix_mutiplication_time", result, ResultType.LOWER_BETTER,
136 ResultType.LOWER_BETTER, ResultUnit.MS);
  /test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
ReportLogTest.java 66 mReportLog.setSummary("Sample", 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
72 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
77 mReportLog.setSummary("Sample", 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
78 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
111 Metric metric = new Metric(SOURCE, MESSAGE, 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
119 metric = new Metric(source, MESSAGE, 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
126 Metric metric = new Metric(SOURCE, MESSAGE, 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
134 metric = new Metric(SOURCE, message, 1.0, ResultType.HIGHER_BETTER, ResultUnit.BYTE);
141 Metric metric = new Metric(SOURCE, MESSAGE, VALUES, ResultType.HIGHER_BETTER,
148 metric = new Metric(SOURCE, MESSAGE, values, ResultType.HIGHER_BETTER, ResultUnit.BYTE)
    [all...]
  /cts/tests/jank/src/android/jank/cts/
CtsJankTestBase.java 25 import com.android.compatibility.common.util.ResultType;
39 ResultType.HIGHER_BETTER, ResultUnit.FPS);
42 ResultType.LOWER_BETTER, ResultUnit.MS);
45 ResultType.LOWER_BETTER, ResultUnit.COUNT);
48 ResultType.LOWER_BETTER, ResultUnit.COUNT);
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLReferenceBenchmark.java 21 import com.android.compatibility.common.util.ResultType;
69 report.addValues("set_up_times", setUpTimes, ResultType.LOWER_BETTER, ResultUnit.MS);
70 report.addValue("update_time_average", updateAverage, ResultType.LOWER_BETTER,
72 report.addValue("render_time_average", renderAverage, ResultType.LOWER_BETTER,
76 report.setSummary("total_time_average", totalTime, ResultType.LOWER_BETTER,
  /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...]
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
MetricsReportLog.java 84 public void addValue(String source, String message, double value, ResultType type,
98 public void addValue(String message, double value, ResultType type, ResultUnit unit) {
112 public void addValues(String source, String message, double[] values, ResultType type,
126 public void addValues(String message, double[] values, ResultType type, ResultUnit unit) {
139 public void addValue(String message, int value, ResultType type, ResultUnit unit) {
151 public void addValue(String message, long value, ResultType type, ResultUnit unit) {
163 public void addValue(String message, float value, ResultType type, ResultUnit unit) {
175 public void addValue(String message, boolean value, ResultType type, ResultUnit unit) {
187 public void addValue(String message, String value, ResultType type, ResultUnit unit) {
199 public void addValues(String message, int[] values, ResultType type, ResultUnit unit)
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 19 template <typename MatrixType, typename ResultType>
20 void matrix_sqrt_quasi_triangular_2x2_diagonal_block(const MatrixType& T, typename MatrixType::Index i, ResultType& sqrtT)
34 template <typename MatrixType, typename ResultType>
35 void matrix_sqrt_quasi_triangular_1x1_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
43 template <typename MatrixType, typename ResultType>
44 void matrix_sqrt_quasi_triangular_1x2_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
56 template <typename MatrixType, typename ResultType>
57 void matrix_sqrt_quasi_triangular_2x1_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT)
103 template <typename MatrixType, typename ResultType>
104 void matrix_sqrt_quasi_triangular_2x2_off_diagonal_block(const MatrixType& T, typename MatrixType::Index i, typename MatrixType::Index j, ResultType& sqrtT
    [all...]
  /cts/tests/filesystem/src/android/filesystem/cts/
SequentialRWTest.java 27 import com.android.compatibility.common.util.ResultType;
65 report.addValue("files", numberOfFiles, ResultType.NEUTRAL, ResultUnit.COUNT);
79 report.addValues("write_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS);
80 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE);
82 report.setSummary("write_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER,
112 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE);
115 ResultType.HIGHER_BETTER, ResultUnit.MBPS);
134 report.addValues("read_throughput", mbps, ResultType.HIGHER_BETTER, ResultUnit.MBPS);
136 report.setSummary("read_throughput_average", stat.mAverage, ResultType.HIGHER_BETTER,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckTestActivity.java 37 import com.android.compatibility.common.util.ResultType;
98 "Initialize failed", 0, ResultType.NEUTRAL, ResultUnit.NONE);
159 "Record failed", 0, ResultType.NEUTRAL, ResultUnit.NONE);
185 ResultType.NEUTRAL, ResultUnit.NONE);
190 "Analysis succeed", 1, ResultType.NEUTRAL, ResultUnit.NONE);
193 ResultType.LOWER_BETTER, ResultUnit.RADIAN);
195 ResultType.LOWER_BETTER, ResultUnit.RADIAN);
197 ResultType.LOWER_BETTER, ResultUnit.RADIAN);
200 ResultType.LOWER_BETTER, ResultUnit.RADIAN);
202 ResultType.LOWER_BETTER, ResultUnit.RADIAN)
    [all...]

Completed in 308 milliseconds

1 2 3 4 5 6 7 8 91011>>