HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 301 - 325 of 1503) sorted by null

<<11121314151617181920>>

  /external/chromium_org/build/android/pylib/perf/
surface_stats_collector.py 72 results = self.GetResults()
74 return results
135 results = []
138 results += SurfaceStatsCollector._CalculateResults(
140 return results
218 results = self._device.RunShellCommand(
220 return not len(results)
261 results = self._device.RunShellCommand(
263 if not len(results):
268 refresh_period = long(results[0]) / nanoseconds_per_secon
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditController.js 66 var results = [];
78 resultCallback(mainResourceURL, results)
89 results.push(result);
97 * @param {!Array.<!WebInspector.AuditCategoryResult>} results
99 _auditFinishedCallback: function(launcherCallback, mainResourceURL, results)
101 this._auditsPanel.auditFinishedCallback(mainResourceURL, results);
  /external/chromium_org/tools/perf/benchmarks/
octane.py 98 def ValidateAndMeasurePage(self, page, tab, results):
103 self._power_metric.AddResults(tab, results)
108 # Split the results into score and test name.
109 # results log e.g., "Richards: 18343"
116 results.AddValue(scalar.ScalarValue(
117 results.current_page, name, 'score', score, important=False,
123 results.AddSummaryValue(
  /external/chromium_org/tools/perf/measurements/
media.py 22 # Used to add browser power and CPU metrics to results per test.
53 def ValidateAndMeasurePage(self, page, tab, results):
56 trace_name = self._media_metric.AddResults(tab, results)
62 self._cpu_metric.AddResults(tab, results, trace_name=trace_name)
65 self._memory_metric.AddResults(tab, results,
68 self._power_metric.AddResults(tab, results)
smoothness_controller.py 20 # Descriptions for results from platform.GetRawDisplayFrameRateMeasurements().
68 def AddResults(self, tab, results):
69 # Add results of smoothness metric. This computes the smoothness metric for
106 # wrap the results that are sent to smoothness metric, the label will
110 self._timeline_model, renderer_thread, smooth_records, results)
116 results.AddValue(list_of_scalar_values.ListOfScalarValues(
117 results.current_page, r.name, r.unit, r.value,
120 results.AddValue(scalar.ScalarValue(
121 results.current_page, r.name, r.unit, r.value,
page_cycler.py 131 def ValidateAndMeasurePage(self, page, tab, results):
137 results.AddValue(scalar.ScalarValue(
138 results.current_page, '%stimes.page_load_time' % chart_name_prefix,
151 self._memory_metric.AddResults(tab, results)
152 self._power_metric.AddResults(tab, results)
155 self._cpu_metric.AddResults(tab, results)
158 self._v8_object_stats_metric.AddResults(tab, results)
166 tab, results, chart_name=chart_name_prefix+'speed_index')
168 def DidRunTest(self, browser, results):
169 iometric.IOMetric().AddSummaryResults(browser, results)
    [all...]
smoothness_unittest.py 58 that all metrics were added to the results. The test is purely functional,
104 results = self.RunMeasurement(measurement, ps, options=self._options)
105 self.assertEquals(0, len(results.failures))
107 frame_times = results.FindAllPageSpecificValuesNamed('frame_times')
111 mean_frame_time = results.FindAllPageSpecificValuesNamed('mean_frame_time')
115 jank = results.FindAllPageSpecificValuesNamed('jank')
119 mostly_smooth = results.FindAllPageSpecificValuesNamed('mostly_smooth')
123 mean_input_event_latency = results.FindAllPageSpecificValuesNamed(
136 results = self.RunMeasurement(measurement, ps, options=self._options)
137 self.assertEquals(0, len(results.failures)
    [all...]
  /external/chromium_org/chrome/browser/history/
visitsegment_database.cc 205 std::vector<PageUsageData*>* results) {
231 results->push_back(pud);
257 results->push_back(pud);
260 // Limit to the top kResultCount results.
261 std::sort(results->begin(), results->end(), PageUsageData::Predicate);
262 if (static_cast<int>(results->size()) > max_result_count) {
263 STLDeleteContainerPointers(results->begin() + max_result_count,
264 results->end());
265 results->resize(max_result_count)
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_browsertest.cc 135 history::QueryResults* results) {
143 results,
151 history::QueryResults* results) {
152 results->Swap(new_results);
274 history::QueryResults results; local
275 QueryHistory(history_service, "", options, &results);
278 ASSERT_EQ(2u, results.size());
279 EXPECT_EQ(blocked_url.spec(), results[0].url().spec());
280 EXPECT_TRUE(results[0].blocked_visit());
281 EXPECT_EQ(allowed_url.spec(), results[1].url().spec())
    [all...]
  /external/chromium_org/extensions/browser/guest_view/web_view/
web_view_find_helper.cc 75 // Call the request's callback function with the find results, and then
96 // function can be called when the find results are available.
161 // Clears the results for |findupdate| for a new find session.
165 // Aggregate the find results.
171 // Propagate incremental results to the |findupdate| event.
206 base::DictionaryValue* results) {
207 results->SetInteger(webview::kFindNumberOfMatches, number_of_matches_);
208 results->SetInteger(webview::kFindActiveMatchOrdinal, active_match_ordinal_);
214 results->Set(webview::kFindSelectionRect, rect.DeepCopy());
235 base::DictionaryValue* results) {
273 base::DictionaryValue results; local
    [all...]
  /external/chromium_org/athena/home/
app_list_view_delegate.cc 54 // TODO(mukai): port app-list's Mixer to reorder the results properly.
56 std::vector<app_list::SearchResult*> results; local
57 search_provider->ReleaseResult(&results);
58 if (results.empty()) {
59 model_->results()->DeleteAll();
61 for (size_t i = 0; i < results.size(); ++i)
62 model_->results()->Add(results[i]);
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 154 List<Description> results= new ArrayList<Description>();
155 findLeaves(null, request.getRunner().getDescription(), results);
156 return results;
159 private void findLeaves(Description parent, Description description, List<Description> results) {
162 results.add(Description.createSuiteDescription(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX + parent));
164 results.add(description);
167 findLeaves(description, each, results);
  /external/chromium_org/third_party/skia/src/effects/
SkDashPathEffect.cpp 158 bool SkDashPathEffect::asPoints(PointData* results,
214 results->fSize.set(SkScalarHalf(fIntervals[0]), SkScalarHalf(rec.getWidth()));
217 results->fSize.set(SkScalarHalf(rec.getWidth()), SkScalarHalf(fIntervals[0]));
224 if (results) {
225 results->fFlags = 0;
229 results->fFlags |= PointData::kCircles_PointFlag;
232 results->fNumPoints = 0;
239 ++results->fNumPoints; // partial first dash
252 results->fNumPoints += numMidPoints;
260 ++results->fNumPoints
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js 152 var results = {runs: runs}, num = times.length;
159 results.sum = 0;
162 results.sum += times[i];
165 results.min = times[0];
168 results.max = times[ num - 1 ];
171 results.mean = results.sum / num;
174 results.median = num % 2 == 0 ?
179 results.variance = 0;
182 results.variance += Math.pow(times[i] - results.mean, 2)
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_scan_result_controller_unittest.cc 199 // Start with two scan results.
239 // Start with two scan results.
318 // Blacklist scan results.
346 MediaGalleriesDialogController::Entries results = local
348 EXPECT_EQ(selected, results[0].pref_info.pref_id);
349 EXPECT_TRUE(results[0].selected);
350 EXPECT_EQ(selected_update, results[1].pref_info.pref_id);
351 EXPECT_TRUE(results[1].selected);
353 results[1].pref_info.volume_label);
354 EXPECT_EQ(unselected, results[2].pref_info.pref_id)
415 MediaGalleriesDialogController::Entries results = local
    [all...]
  /external/chromium_org/components/translate/content/renderer/
translate_helper.cc 272 WebVector<v8::Local<v8::Value> > results; local
275 world_id_, &source, 1, extension_group_, &results);
276 if (results.size() != 1 || results[0].IsEmpty() || !results[0]->IsBoolean()) {
281 return results[0]->BooleanValue();
291 WebVector<v8::Local<v8::Value> > results; local
294 world_id_, &source, 1, extension_group_, &results);
295 if (results.size() != 1 || results[0].IsEmpty() || !results[0]->IsString())
314 WebVector<v8::Local<v8::Value> > results; local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
flags_ui.cc 174 base::DictionaryValue results;
182 results.Set("supportedExperiments", supported_experiments.release());
183 results.Set("unsupportedExperiments", unsupported_experiments.release());
184 results.SetBoolean("needsRestart",
186 results.SetBoolean("showOwnerWarning",
191 results.SetBoolean("showBetaChannelPromotion",
193 results.SetBoolean("showDevChannelPromotion",
196 results.SetBoolean("showBetaChannelPromotion", false);
197 results.SetBoolean("showDevChannelPromotion", false);
199 web_ui()->CallJavascriptFunction("returnFlagsExperiments", results);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
buildbot_results.py 65 self._print("=> Results: %d/%d tests passed (%.1f%%)" % (passed, total, percent_passed))
85 results = (run_results.tests_by_expectation[result] & run_results.tests_by_timeline[timeline])
87 if not_passing and len(results):
88 pct = len(results) * 100.0 / not_passing
89 self._print(" %5d %-24s (%4.1f%%)" % (len(results), desc, pct))
99 def add_result(test, results, passes=passes, flaky=flaky, regressions=regressions):
100 actual = results['actual'].split(" ")
101 expected = results['expected'].split(" ")
103 if 'is_unexpected' not in results or not results['is_unexpected']
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnvmbcs.h 214 * -- stage 3 tables with byte results
297 #define MBCS_SINGLE_RESULT_FROM_U(table, results, c) (results)[ (table)[ (table)[(c)>>10] +(((c)>>4)&0x3f) ] +((c)&0xf) ]
300 #define SBCS_RESULT_FROM_LOW_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ]
303 #define SBCS_RESULT_FROM_UTF8(table, results, l, t) (results)[ (table)[l] +(t) ]
315 #define DBCS_RESULT_FROM_MOST_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ]
318 #define DBCS_RESULT_FROM_UTF8(table, results, lt1, t2) (results)[ (table)[lt1] +(t2)
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/
view.css 49 .update-results-button {
53 /* Odd and even lines within results display. */
54 .results-odd {
57 .results-even {
72 .results-header {
78 .results-header-actions {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
RawDataTable.java 19 import org.eclipse.test.internal.performance.results.db.BuildResults;
20 import org.eclipse.test.internal.performance.results.db.ConfigResults;
21 import org.eclipse.test.internal.performance.results.db.DB_Results;
22 import org.eclipse.test.internal.performance.results.utils.Util;
36 private RawDataTable(ConfigResults results, PrintStream ps) {
37 this.configResults = results;
41 public RawDataTable(ConfigResults results, List prefixes, PrintStream ps) {
42 this(results, ps);
45 public RawDataTable(ConfigResults results, String baselinePrefix, PrintStream ps) {
46 this(results, ps)
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.h 214 * -- stage 3 tables with byte results
297 #define MBCS_SINGLE_RESULT_FROM_U(table, results, c) (results)[ (table)[ (table)[(c)>>10] +(((c)>>4)&0x3f) ] +((c)&0xf) ]
300 #define SBCS_RESULT_FROM_LOW_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ]
303 #define SBCS_RESULT_FROM_UTF8(table, results, l, t) (results)[ (table)[l] +(t) ]
315 #define DBCS_RESULT_FROM_MOST_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ]
318 #define DBCS_RESULT_FROM_UTF8(table, results, lt1, t2) (results)[ (table)[lt1] +(t2)
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Measurement.h 95 WriteStartValue (Results &results)
98 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStartValue()));
102 WriteStopValue (Results &results)
105 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStopValue()));
109 WriteAverageValue (Results &results)
112 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetAverage()));
116 WriteAverageAndStandardDeviation (Results &results
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider.cc 152 blink::WebVector<blink::WebTextCheckingResult>* results) {
153 if (!results)
160 // UMA results seem to support that. Investigate, clean up if true.
162 spellcheck_->SpellCheckParagraph(text, results);
213 const std::vector<SpellCheckResult>& results) {
226 // Double-check the returned spellchecking results with our spellchecker to
232 results,
236 // Cache the request and the converted results.
267 const std::vector<SpellCheckResult>& results) {
279 results,
    [all...]
  /external/chromium_org/ui/gfx/geometry/
r_tree_unittest.cc 803 // An empty RTree should never return AppendIntersectingRecords results, and
808 RT::Matches results; local
810 rt.AppendIntersectingRecords(test_rect, &results);
811 EXPECT_EQ(0U, results.size());
816 // results after.
821 RT::Matches results; local
823 rt.AppendIntersectingRecords(test_rect, &results);
824 EXPECT_EQ(0U, results.size());
829 // that all queries should not return results after.
834 RT::Matches results; local
849 RT::Matches results; local
865 RT::Matches results; local
880 RT::Matches results; local
891 RT::Matches results; local
903 RT::Matches results; local
915 RT::Matches results; local
929 RT::Matches results; local
962 RT::Matches results; local
988 RT::Matches results; local
1005 RT::Matches results; local
    [all...]

Completed in 326 milliseconds

<<11121314151617181920>>