HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 151 - 175 of 2740) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/vogar/
.vogarconfig.example 16 # where to find results against which to compare test runs
17 --results-dir <HOME_DIR>/.vogar/results/
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
TotalCaptureResult.java 28 * <p>The total assembled results of a single image capture from the image sensor.</p>
57 * Takes ownership of the passed-in camera metadata and the partial results
59 * @param partials a list of partial results; {@code null} will be substituted for an empty list
62 public TotalCaptureResult(CameraMetadataNative results, CaptureRequest parent,
64 super(results, parent, extras);
81 public TotalCaptureResult(CameraMetadataNative results, int sequenceId) {
82 super(results, sequenceId);
89 * Get the read-only list of partial results that compose this total result.
98 * @return unmodifiable list of partial results
  /frameworks/base/core/java/android/speech/
IRecognitionListener.aidl 23 * This gives you both the final recognition results, as well as various
67 * Called when recognition results are ready.
69 * @param results a Bundle containing the most likely results (N-best list).
71 void onResults(in Bundle results);
74 * Called when recognition partial results are ready.
76 * @param results a Bundle containing the current most likely result.
78 void onPartialResults(in Bundle results);
  /ndk/sources/third_party/googletest/googletest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
tab_complete.py 81 """Cache for tab completion results."""
83 def __init__(self, prefix, results, timestamp, partial_results):
85 self.results = results
103 results = cache_dict['results']
105 partial_results = cache_dict['partial-results']
111 results = []
115 return TabCompletionCache(prefix, results, timestamp, partial_results)
118 """Returns the cached results for prefix or None if not in cache.""
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 40 StringBuffer results = new StringBuffer(); local
44 results.append(replacement);
47 results.append(source.charAt(i));
50 return results.toString();
54 StringBuffer results = new StringBuffer(); local
59 results.append(replacement);
61 UTF16.append(results, cp);
64 return results.toString();
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TestUtility.java 39 StringBuffer results = new StringBuffer(); local
43 results.append(replacement);
46 results.append(source.charAt(i));
49 return results.toString();
53 StringBuffer results = new StringBuffer(); local
58 results.append(replacement);
60 UTF16.append(results, cp);
63 return results.toString();
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
android_fuelgauge_power_monitor_unittest.py 16 results = (
19 self.assertEqual(results['identifier'], 'fuel_gauge')
21 results.get('fuel_gauge_energy_consumption_mwh'), 400)
27 results = pm.StopMonitoringPower()
28 self.assertEqual(results['identifier'], 'fuel_gauge')
29 self.assertAlmostEqual(results['fuel_gauge_energy_consumption_mwh'], 10)
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
jitter_timeline_unittest.py 8 from telemetry.internal.results import page_test_results
20 results = page_test_results.PageTestResults()
22 results.WillRunPage(test_page)
24 events, interactions, results)
26 results.current_page_run.values)
27 results.DidRunPage(test_page)
  /external/jcommander/src/main/java/com/beust/jcommander/
FuzzyMap.java 37 Map<String, V> results = Maps.newHashMap(); local
43 results.put(n, map.get(c));
48 if (results.size() > 1) {
50 + " matches " + results.keySet());
51 } else if (results.size() == 1) {
52 result = results.values().iterator().next();
  /external/libcxxabi/src/
cxa_personality.cpp 515 const scan_results& results)
520 static_cast<uintptr_t>(results.ttypeIndex));
521 _Unwind_SetIP(context, results.landingPad);
545 static void scan_eh_tab(scan_results &results, _Unwind_Action actions,
549 // Initialize results to found nothing but an error
550 results.ttypeIndex = 0;
551 results.actionRecord = 0;
552 results.languageSpecificData = 0;
553 results.landingPad = 0;
554 results.adjustedPtr = 0
942 scan_results results; local
1081 scan_results results; local
    [all...]
  /external/v8/test/mjsunit/
debug-liveedit-stepin.js 15 var results = []; variable
24 switch (results.length) {
54 results.push(BestEditor());
55 results.push(BestEditor());
56 results.push(BestEditor());
60 assertEquals(["Emacs", "Eclipse", "Vim"], results);
64 "results.push(BestEditor());",
67 "results.push(BestEditor());",
68 "results.push(BestEditor());",
73 "results.push(BestEditor());"
    [all...]

Completed in 542 milliseconds

1 2 3 4 5 67 8 91011>>