/external/icu/icu4c/source/test/intltest/ |
trcoll.h | 42 static const Collator::EComparisonResult results[]; member in class:CollationTurkishTest
|
/external/skia/gm/rebaseline_server/ |
results_test.py | 9 Test results.py 15 import results namespace 22 results_obj = results.BaseComparisons() 57 actual_output_dict = results.BaseComparisons.combine_subdicts( 72 actual_output_dict = results.BaseComparisons.combine_subdicts(
|
/frameworks/base/core/java/android/bluetooth/le/ |
ScanCallback.java | 22 * Bluetooth LE scan callbacks. Scan results are reported using these callbacks. 58 * Callback when batch results are delivered. 60 * @param results List of scan results that are previously scanned. 62 public void onBatchScanResults(List<ScanResult> results) {
|
/frameworks/base/core/java/android/speech/ |
RecognitionListener.java | 69 * Called when recognition results are ready. 71 * @param results the recognition results. To retrieve the results in {@code 76 void onResults(Bundle results); 79 * Called when partial recognition results are available. The callback might be called at any 81 * results are ready. This method may be called zero, one or multiple times for each call to 83 * service implementation. To request partial results, use 86 * @param partialResults the returned results. To retrieve the results i [all...] |
/frameworks/base/opengl/java/android/opengl/ |
Visibility.java | 86 * @param results an integer array containing the indices of the spheres 88 * @param resultsOffset an offset into the results array where the results 91 * results. 94 * results are written into the results array. 99 * results is null, resultsOffset < 0, resultsOffset > results.length - 104 int[] results, int resultsOffset, int resultsCapacity);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_basestring.py | 13 def transform(self, node, results):
|
fix_future.py | 19 def transform(self, node, results):
|
fix_long.py | 16 def transform(self, node, results):
|
fix_reduce.py | 34 def transform(self, node, results):
|
fix_standarderror.py | 17 def transform(self, node, results):
|
fix_next.py | 46 def transform(self, node, results): 47 assert results 49 base = results.get("base") 50 attr = results.get("attr") 51 name = results.get("name") 68 head = results["head"] 73 elif "global" in results:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_basestring.py | 13 def transform(self, node, results):
|
fix_future.py | 19 def transform(self, node, results):
|
fix_long.py | 16 def transform(self, node, results):
|
fix_reduce.py | 34 def transform(self, node, results):
|
fix_standarderror.py | 17 def transform(self, node, results):
|
fix_next.py | 46 def transform(self, node, results): 47 assert results 49 base = results.get("base") 50 attr = results.get("attr") 51 name = results.get("name") 68 head = results["head"] 73 elif "global" in results:
|
/external/chromium_org/chrome/browser/ui/app_list/search/people/ |
people_provider_browsertest.cc | 33 // Mock results. 211 std::string results; local 212 for (SearchProvider::Results::const_iterator it = 213 people_provider_->results().begin(); 214 it != people_provider_->results().end(); 216 if (!results.empty()) 217 results += ','; 218 results += base::UTF16ToUTF8((*it)->title()); 220 return results;
|
/external/chromium_org/content/browser/speech/ |
google_streaming_remote_engine_unittest.cc | 46 const SpeechRecognitionResults& results) OVERRIDE { 47 results_.push(results); 110 SpeechRecognitionResults results; local 111 results.push_back(SpeechRecognitionResult()); 112 SpeechRecognitionResult& result = results.back(); 120 ExpectResultsReceived(results); 140 SpeechRecognitionResults results; local 141 results.push_back(SpeechRecognitionResult()); 142 SpeechRecognitionResult& result = results.back(); 149 ExpectResultsReceived(results); 159 SpeechRecognitionResults results; local 187 SpeechRecognitionResults results; local 226 SpeechRecognitionResults results; local 303 SpeechRecognitionResults results; local [all...] |
/external/chromium_org/tools/perf/metrics/ |
media.py | 37 def AddResults(self, tab, results): 38 """Reports all recorded metrics as Telemetry perf results.""" 41 trace_names.append(self._AddResultsForMediaElement(media_metric, results)) 45 def _AddResultsForMediaElement(self, media_metric, results): 65 results.AddValue(list_of_scalar_values.ListOfScalarValues( 66 results.current_page, trace_name, unit, 70 results.AddValue(scalar.ScalarValue( 71 results.current_page, trace_name, unit, value=float(metrics[m]), 76 logging.error('Metrics ID is missing in results.')
|
startup_metric.py | 45 def _RecordTabLoadTimes(self, tab, browser_main_entry_time_ms, results): 88 results.AddValue(scalar.ScalarValue( 89 results.current_page, 'foreground_tab_load_complete', 'ms', 92 def AddResults(self, tab, results): 108 results.AddValue(scalar.ScalarValue( 109 results.current_page, display_name, 'ms', measured_time)) 116 self._RecordTabLoadTimes(tab, browser_main_entry_time_ms, results)
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
AppDataDirGuesser.java | 36 File[] results = guessPath(pathFromThisClassLoader); local 37 if (results.length > 0) { 38 return results[0]; 73 List<File> results = new ArrayList<File>(); local 94 results.add(cacheDir); 99 return results.toArray(new File[results.size()]);
|
/external/littlemock/src/com/google/testing/littlemock/ |
AppDataDirGuesser.java | 49 File[] results = guessPath(pathFromThisClassLoader); local 50 if (results.length > 0) { 51 return results[0]; 88 List<File> results = new ArrayList<File>(); local 108 results.add(cacheDir); 114 return results.toArray(new File[results.size()]);
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_message_filter_unittest.cc | 37 const std::vector<SpellCheckResult>& results) { 39 route_id, identifier, markers, success, text, results); 91 std::vector<SpellCheckResult> results; local 92 results.push_back(SpellCheckResult( 94 results.push_back( 101 kRouteId, kCallbackId, kMarkers, kSuccess, kText, results); 123 std::vector<SpellCheckResult> results; local 124 results.push_back(SpellCheckResult( 126 results.push_back(SpellCheckResult( 132 true, base::ASCIIToUTF16("Helllo walrd"), results); [all...] |
/external/chromium_org/third_party/skia/gm/rebaseline_server/ |
compare_rendered_pictures_test.py | 11 TODO(epoger): Create a command to update the expected results (in 13 1. examine the results in self.output_dir_actual and make sure they are ok 36 import results namespace 43 the results.""" 69 # Overwrite elements within the results that change from one test run 72 results_obj._setA_descriptions[results.KEY__SET_DESCRIPTIONS__DIR] = [ 74 results_obj._setB_descriptions[results.KEY__SET_DESCRIPTIONS__DIR] = [ 79 results.KEY__HEADER__RESULTS_ALL), 84 the results.""" 115 results.KEY__HEADER__RESULTS_ALL [all...] |