/external/chromium_org/tools/perf/benchmarks/ |
indexeddb_perf.py | 60 def ValidateAndMeasurePage(self, page, tab, results): 69 self._memory_metric.AddResults(tab, results) 70 self._power_metric.AddResults(tab, results) 71 self._v8_object_stats_metric.AddResults(tab, results) 80 results.AddValue(scalar.ScalarValue( 81 results.current_page, key, 'ms', msec, important=False)) 84 results.AddValue(scalar.ScalarValue( 85 results.current_page, 'Total Perf', 'ms', total))
|
/external/chromium_org/ui/app_list/ |
search_provider.h | 21 typedef ScopedVector<SearchResult> Results; 30 // Invoked to stop the current query and no more results changes. 37 // TODO(mukai): Fix the ownership and copying of the results. 38 void ReleaseResult(std::vector<SearchResult*>* results); 40 const Results& results() const { return results_; } function in class:app_list::SearchProvider 43 // Interface for the derived class to generate search results. 51 Results results_;
|
/external/skia/gm/rebaseline_server/ |
compare_configs_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 27 import results namespace 28 import gm_json # must import results first, so that gm_json will be in sys.path namespace 34 """Process results of a GM run with the ConfigComparisons object.""" 43 results.KEY__HEADER__RESULTS_ALL),
|
/frameworks/base/core/java/com/android/internal/textservice/ |
ISpellCheckerSessionListener.aidl | 26 void onGetSuggestions(in SuggestionsInfo[] results);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_callable.py | 30 def transform(self, node, results): 31 func = results['func']
|
fix_types.py | 58 def transform(self, node, results): 59 new_value = unicode(_TYPE_MAPPING.get(results["name"].value))
|
fix_urllib.py | 77 def transform_import(self, node, results): 82 import_mod = results.get("module") 93 def transform_member(self, node, results): 98 mod_member = results.get("mod_member") 100 member = results.get("member") 122 members = results["members"] 169 def transform_dot(self, node, results): 171 module_dot = results.get("bare_with_attr") 172 member = results.get("member") 186 def transform(self, node, results) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_callable.py | 30 def transform(self, node, results): 31 func = results['func']
|
fix_types.py | 58 def transform(self, node, results): 59 new_value = unicode(_TYPE_MAPPING.get(results["name"].value))
|
fix_urllib.py | 77 def transform_import(self, node, results): 82 import_mod = results.get("module") 93 def transform_member(self, node, results): 98 mod_member = results.get("mod_member") 100 member = results.get("member") 122 members = results["members"] 169 def transform_dot(self, node, results): 171 module_dot = results.get("bare_with_attr") 172 member = results.get("member") 186 def transform(self, node, results) [all...] |
/external/chromium_org/tools/chrome_proxy/integration_tests/ |
chrome_proxy_measurements.py | 24 def ValidateAndMeasurePage(self, page, tab, results): 27 loading.LoadingMetric().AddResults(tab, results) 40 def ValidateAndMeasurePage(self, page, tab, results): 44 self._metrics.AddResultsForDataSaving(tab, results) 67 def ValidateAndMeasurePage(self, page, tab, results): 73 self.AddResults(tab, results) 75 def AddResults(self, tab, results): 101 def AddResults(self, tab, results): 102 self._metrics.AddResultsForHeaderValidation(tab, results) 111 def AddResults(self, tab, results) [all...] |
chrome_proxy_metrics.py | 113 def AddResults(self, tab, results): 116 def AddResultsForDataSaving(self, tab, results): 121 super(ChromeProxyMetric, self).AddResults(tab, results) 130 results.AddValue(scalar.ScalarValue( 131 results.current_page, 'resources_via_proxy', 'count', 133 results.AddValue(scalar.ScalarValue( 134 results.current_page, 'resources_from_cache', 'count', 136 results.AddValue(scalar.ScalarValue( 137 results.current_page, 'resources_direct', 'count', resources_direct)) 139 def AddResultsForHeaderValidation(self, tab, results) [all...] |
/external/opencv/cv/src/ |
cvkdtree.cpp | 83 void find_nn(CvMat* d, int k, int emax, CvMat* results, CvMat* dist) { 86 uchar* resultsptr = results->data.ptr; 91 assert(results->rows == d->rows); 92 assert(results->rows == dist->rows); 93 assert(results->cols == k); 112 resultsptr += results->step; 119 CvMat* results) { 120 int rn = results->rows * results->cols; 128 (int*) results->data.ptr) [all...] |
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
extension_error_ui_util.cc | 46 void GetManifestFileCallback(base::DictionaryValue* results, 52 highlighter.SetHighlightedRegions(results); 53 response.Run(*results); 56 void GetSourceFileCallback(base::DictionaryValue* results, 61 highlighter.SetHighlightedRegions(results); 62 response.Run(*results); 100 scoped_ptr<base::DictionaryValue> results(new base::DictionaryValue); 101 results->SetString(kTitleKey, 105 results->SetString(ExtensionError::kMessageKey, error_message); 120 base::Owned(results.release()) [all...] |
/external/chromium_org/tools/perf/measurements/ |
endure.py | 77 def ValidateAndMeasurePage(self, page, tab, results): 81 self._SampleStats(tab, results) 83 def _SampleStats(self, tab, results): 84 """Records information and add it to the results.""" 87 """Adds one data point to the results object.""" 94 results.AddValue(scalar.ScalarValue( 95 results.current_page, trace_name + '_X', 'iterations', 97 results.AddValue(scalar.ScalarValue( 98 results.current_page, trace_name + '_Y', units_y, value_y, 141 def DidRunTest(self, browser, results) [all...] |
/external/chromium_org/tools/perf/metrics/ |
memory.py | 97 """Prepare the results for this page. 99 The results are the differences between the current histogram values 114 def AddResults(self, tab, results, trace_name=None): 115 """Add results for this page to the results object.""" 121 results.AddValue(histogram.HistogramValue( 122 results.current_page, h['display_name'], h['units'], 128 AddResultsForProcesses(results, self._memory_stats, 134 results.AddValue(scalar.ScalarValue( 135 results.current_page [all...] |
timeline.py | 15 def AddResults(self, model, renderer_thread, interaction_records, results): 44 # Results objects cannot contain the '.' character, so remove that here. 48 results.AddValue(scalar.ScalarValue( 49 results.current_page, full_name, 'ms', total)) 50 results.AddValue(scalar.ScalarValue( 51 results.current_page, full_name + '_max', 'ms', biggest_jank)) 52 results.AddValue(scalar.ScalarValue( 53 results.current_page, full_name + '_avg', 'ms', total / len(times))) 58 # Results objects cannot contain the '.' character, so remove that here. 61 results.AddValue(scalar.ScalarValue [all...] |
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
gscan_event_handler.cpp | 140 wifi_scan_result *results, 172 results[i].ts = 189 sizeof(results->ssid) <= len ? sizeof(results->ssid) : len; 190 memcpy((void *)&results[i].ssid, 205 sizeof(results->bssid) <= len ? sizeof(results->bssid) : len; 206 memcpy(&results[i].bssid, 218 results[i].channel = 230 results[i].rssi [all...] |
/external/chromium_org/ppapi/ |
PRESUBMIT.py | 12 results = [] 19 results.append(output_api.PresubmitPromptWarning( 22 results.append( 25 return results 30 results = [] 40 results.extend(RunCmdAndCheck(cmd, 44 return results 189 results = [] 191 results.extend(RunUnittests(input_api, output_api)) 193 results.extend(CheckTODO(input_api, output_api) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/ |
test_run_results.py | 91 self.all_results = [] # All results from a run, including every iteration of every test. 185 results = {} 186 results['version'] = 3 190 results['fixable'] = len(tbt[test_expectations.NOW] - tbe[test_expectations.PASS]) 191 # FIXME: Remove this. It is redundant with results['num_failures_by_type']. 192 results['skipped'] = len(tbt[test_expectations.NOW] & tbe[test_expectations.SKIP]) 208 results['num_failures_by_type'] = num_failures_by_type 270 # To avoid bloating the output results json too much, only add an entry for whether the failure is unexpected. 305 results['tests'] = tests 306 # FIXME: Remove this. It is redundant with results['num_failures_by_type'] [all...] |
/external/apache-harmony/ |
run-harmony-tests | 31 --results-dir /home/dalvik-prebuild/vogar-harmony-results \
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
downloads_custom_bindings.js | 54 var results = dispatch([downloadItem, suggestCallback]); 55 var async = (results && 56 results.results && 57 (results.results.length != 0) && 58 (results.results[0] === true));
|
/external/chromium_org/components/password_manager/core/browser/ |
password_store_consumer.h | 27 // Called when the request is finished. If there are no results, it is called 31 const std::vector<autofill::PasswordForm*>& results) = 0;
|
/external/chromium_org/google_apis/gaia/ |
mock_url_fetcher_factory.h | 22 const std::string& results, 30 const std::string& results, 61 void set_results(const std::string& results) { 62 results_ = results;
|
/external/chromium_org/net/tools/flip_server/ |
create_listener.cc | 111 struct addrinfo* results = 0; local 124 if ((err = getaddrinfo(node, service, &hints, &results))) { 132 AddrinfoGuard addrinfo_guard(results); 135 socket(results->ai_family, results->ai_socktype, results->ai_protocol); 174 if (bind(sock, results->ai_addr, results->ai_addrlen)) { 241 struct addrinfo* results = 0; local 253 if ((err = getaddrinfo(node, service, &hints, &results))) { [all...] |