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

1 2 3

  /cts/tests/sample/src/android/sample/cts/
SampleDeviceReportLogTest.java 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);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
ResultType.java 28 NEUTRAL,
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
MediaPerfUtils.java 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);
81 log.addValue("reported_high", reported.getUpper(), ResultType.NEUTRAL, ResultUnit.FPS)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckTestActivity.java 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);
207 ResultType.NEUTRAL, ResultUnit.COUNT);
209 ResultType.NEUTRAL, ResultUnit.COUNT);
212 ResultType.NEUTRAL, ResultUnit.MS);
214 ResultType.NEUTRAL, ResultUnit.MS);
216 ResultType.NEUTRAL, ResultUnit.MS);
218 ResultType.NEUTRAL, ResultUnit.RADIAN)
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/rtt/cts/
WifiRttTest.java 144 reportLog.addValues("status_codes", statuses, ResultType.NEUTRAL, ResultUnit.NONE);
146 ResultType.NEUTRAL, ResultUnit.NONE);
148 ResultType.NEUTRAL, ResultUnit.NONE);
149 reportLog.addValues("rssi_dbm", Arrays.copyOf(rssis, numGoodResults), ResultType.NEUTRAL,
152 ResultType.NEUTRAL, ResultUnit.NONE);
154 ResultType.NEUTRAL, ResultUnit.NONE);
156 ResultType.NEUTRAL, ResultUnit.NONE);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
GenderInfo.java 102 NEUTRAL,
128 fromNameMap.put("neutral", NEUTRAL);
175 case NEUTRAL:
223 private static GenderInfo neutral = new GenderInfo(ListGenderStyle.NEUTRAL); field in class:GenderInfo
238 // and find no resource assume that list gender style is NEUTRAL.
239 result = fallback == null ? neutral : get(fallback);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
GenderInfo.java 100 NEUTRAL,
126 fromNameMap.put("neutral", NEUTRAL);
173 case NEUTRAL:
221 private static GenderInfo neutral = new GenderInfo(ListGenderStyle.NEUTRAL); field in class:GenderInfo
236 // and find no resource assume that list gender style is NEUTRAL.
237 result = fallback == null ? neutral : get(fallback);
  /external/icu/icu4c/source/i18n/
gender.cpp 36 static const char* gNeutralStr = "neutral";
43 NEUTRAL,
160 return &gObjs[NEUTRAL];
165 return &gObjs[NEUTRAL];
173 return &gObjs[NEUTRAL];
189 case NEUTRAL:
230 return &gObjs[NEUTRAL];
  /external/pdfium/core/fxcrt/
fx_bidi_unittest.cpp 21 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
40 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
74 EXPECT_EQ(CFX_BidiChar::NEUTRAL, info.direction);
137 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
150 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
166 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
187 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
217 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
238 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
255 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction)
    [all...]
fx_bidi.h 23 enum Direction { NEUTRAL, LEFT, RIGHT };
32 // Append a character and classify it as left, right, or neutral.
60 // Overall direction is always LEFT or RIGHT, never NEUTRAL.
  /cts/tests/tests/media/src/android/media/cts/
DecoderConformanceTest.java 189 mReportLog.addValue("mime", mime, ResultType.NEUTRAL, ResultUnit.NONE);
190 mReportLog.addValue("is_goog", isGoog, ResultType.NEUTRAL, ResultUnit.NONE);
191 mReportLog.addValue("pass", pass, ResultType.NEUTRAL, ResultUnit.NONE);
192 mReportLog.addValue("vector_name", vectorName, ResultType.NEUTRAL, ResultUnit.NONE);
193 mReportLog.addValue("decode_name", decoderName, ResultType.NEUTRAL,
  /cts/tests/filesystem/src/android/filesystem/cts/
SequentialRWTest.java 65 report.addValue("files", numberOfFiles, ResultType.NEUTRAL, ResultUnit.COUNT);
80 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE);
112 report.addValue("file_size", fileSize, ResultType.NEUTRAL, ResultUnit.NONE);
FileUtil.java 310 // This is just the amount of IO returned from kernel. So this is performance neutral.
311 report.addValues("read_amount", rdAmount, ResultType.NEUTRAL, ResultUnit.BYTE);
362 report.addValues("write_amount", wrAmount, ResultType.NEUTRAL, ResultUnit.BYTE);
390 report.addValue("round", i, ResultType.NEUTRAL, ResultUnit.NONE);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sample/
SampleTestActivity.java 82 getReportLog().addValues("Sample Values", metricValues, ResultType.NEUTRAL,
88 reportLog.addValues("Sample Values", metricValues, ResultType.NEUTRAL, ResultUnit.FPS);
  /cts/tests/simplecpu/src/android/simplecpu/cts/
SimpleCpuTest.java 104 report.addValue("array_length", arrayLength, ResultType.NEUTRAL, ResultUnit.NONE);
128 report.addValue("matrix_dimension", n, ResultType.NEUTRAL, ResultUnit.NONE);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
HeadsetHonorSystemActivity.java 50 ResultType.NEUTRAL,
AudioLoopbackActivity.java 316 ResultType.NEUTRAL,
322 ResultType.NEUTRAL,
328 ResultType.NEUTRAL,
338 ResultType.NEUTRAL,
AudioFrequencyLineActivity.java 490 ResultType.NEUTRAL,
496 ResultType.NEUTRAL,
506 ResultType.NEUTRAL,
  /test/suite_harness/common/util/tests/src/com/android/compatibility/common/util/
MetricsXmlSerializerTest.java 73 mLocalReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
ReportLogTest.java 72 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
78 mReportLog.addValues("Details", VALUES, ResultType.NEUTRAL, ResultUnit.FPS);
  /cts/tests/camera/src/android/hardware/camera2/cts/
PerformanceTest.java 128 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
275 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
443 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
597 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
598 mReportLog.addValue("format", format, ResultType.NEUTRAL, ResultUnit.NONE);
626 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
627 mReportLog.addValue("format", format, ResultType.NEUTRAL, ResultUnit.NONE);
654 mReportLog.addValue("camera_id", id, ResultType.NEUTRAL, ResultUnit.NONE);
655 mReportLog.addValue("format", format, ResultType.NEUTRAL, ResultUnit.NONE);
    [all...]
  /external/perfetto/src/protozero/test/example_proto/
test_messages.proto 40 NEUTRAL = 0;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestBidi.java 560 assertEquals("\nWrong direction through fast detection #9", Bidi.NEUTRAL, Bidi.getBaseDirection(empty));
566 assertEquals("\nWrong direction through fast detection #11", Bidi.NEUTRAL, Bidi.getBaseDirection(allEnglishDigits));
569 assertEquals("\nWrong direction through fast detection #12", Bidi.NEUTRAL, Bidi.getBaseDirection(allArabicDigits));
572 assertEquals("\nWrong direction through fast detection #13", Bidi.NEUTRAL, Bidi.getBaseDirection(nullString));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestBidi.java 557 assertEquals("\nWrong direction through fast detection #9", Bidi.NEUTRAL, Bidi.getBaseDirection(empty));
563 assertEquals("\nWrong direction through fast detection #11", Bidi.NEUTRAL, Bidi.getBaseDirection(allEnglishDigits));
566 assertEquals("\nWrong direction through fast detection #12", Bidi.NEUTRAL, Bidi.getBaseDirection(allArabicDigits));
569 assertEquals("\nWrong direction through fast detection #13", Bidi.NEUTRAL, Bidi.getBaseDirection(nullString));
  /cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
MediaBitstreamsTest.java 264 report.addValue(MediaBitstreams.KEY_PATH, p, ResultType.NEUTRAL, ResultUnit.NONE);
265 report.addValue(MediaBitstreams.KEY_CODEC_NAME, d, ResultType.NEUTRAL, ResultUnit.NONE);
266 report.addValue(MediaBitstreams.KEY_STATUS, s, ResultType.NEUTRAL, ResultUnit.NONE);

Completed in 938 milliseconds

1 2 3