HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 176 - 200 of 3503) sorted by null

1 2 3 4 5 6 78 91011>>

  /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);
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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()
fix_renames.py 51 results = match(node)
52 if results:
55 return results
62 def transform(self, node, results):
63 mod_name = results.get("module_name")
64 attr_name = results.get("attr_name")
65 #bare_name = results.get("bare_name")
66 #import_mod = results.get("module")
fix_throw.py 26 def transform(self, node, results):
29 exc = results["exc"].clone()
35 val = results.get(u"val")
46 throw_args = results["args"]
48 if "tb" in results:
49 tb = results["tb"].clone()
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TestUtility.java 42 StringBuffer results = new StringBuffer(); local
46 results.append(replacement);
49 results.append(source.charAt(i));
52 return results.toString();
56 StringBuffer results = new StringBuffer(); local
61 results.append(replacement);
63 UTF16.append(results, cp);
66 return results.toString();
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TestUtility.java 41 StringBuffer results = new StringBuffer(); local
45 results.append(replacement);
48 results.append(source.charAt(i));
51 return results.toString();
55 StringBuffer results = new StringBuffer(); local
60 results.append(replacement);
62 UTF16.append(results, cp);
65 return results.toString();
  /external/toolchain-utils/automation/clients/report/dejagnu/
manifest.py 14 class Manifest(namedtuple('Manifest', 'tool board results')):
25 will be applied for all test results, but only in selected test runs. Note
29 The meaning of lines above is as follows: corresponding test results to follow
43 results = [result
44 for result in test_run.results
47 return cls(test_run.tool, test_run.board, results)
53 results = []
79 results.append(result)
86 return cls(tool, board, results)
97 for result in sorted(self.results, key=lambda r: r.result)
    [all...]
  /hardware/interfaces/camera/device/3.2/
ICameraDeviceCallback.hal 38 * Send results from one or more completed or partially completed captures
68 * capture results are included in a single call, camera framework must
69 * process results sequentially from lower index to higher index, as if
70 * these results were sent to camera framework one by one, from lower index
109 processCaptureResult(vec<CaptureResult> results);
  /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)

Completed in 575 milliseconds

1 2 3 4 5 6 78 91011>>