HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 351 - 375 of 2244) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/icu/source/i18n/
csrucode.cpp 32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const
43 results->set(textIn, this, confidence);
57 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const
68 results->set(textIn, this, confidence);
77 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const
116 results->set(textIn, this, confidence);
  /external/chromium_org/tools/perf/benchmarks/
dom_perf.py 41 def ValidateAndMeasurePage(self, page, tab, results):
51 results.AddValue(scalar.ScalarValue(
52 results.current_page, '%s.%s' % (suite['name'], SCORE_TRACE_NAME),
57 def DidRunTest(self, browser, results):
60 results.all_page_specific_values,
64 results.AddSummaryValue(
73 The final score is computed as the geometric mean of the individual results.
peacekeeper.py 54 def ValidateAndMeasurePage(self, _, tab, results):
58 results.AddValue(scalar.ScalarValue(
59 results.current_page, '%s.Score' % result['test'], 'score',
62 def DidRunTest(self, browser, results):
65 results.all_page_specific_values,
69 results.AddSummaryValue(
  /external/chromium_org/tools/perf/measurements/
image_decoding.py 64 def ValidateAndMeasurePage(self, page, tab, results):
68 self._power_metric.AddResults(tab, results)
92 results.AddValue(scalar.ScalarValue(
93 results.current_page, 'ImageDecoding_avg', 'ms', image_decoding_avg,
97 results.AddValue(scalar.ScalarValue(
98 results.current_page, 'ImageLoading_avg', 'ms',
loading_trace_unittest.py 19 results = self.RunMeasurement(measurement, ps, options = trace_options)
20 self.assertEquals(0, len(results.failures))
record_per_area_unittest.py 16 that all metrics were added to the results. The test is purely functional,
28 results = self.RunMeasurement(measurement, ps, options=self._options)
29 self.assertEquals(0, len(results.failures))
  /external/chromium_org/tools/perf/metrics/
system_memory.py 31 """Prepare the results for this page.
33 The results are the differences between the current system memory stats
41 def AddResults(self, tab, results, trace_name=None, exclude_metrics=None):
42 """Add results for this page to the results object.
49 trace_name: Trace name to identify the summary results for current page.
50 exclude_metrics: List of memory metrics to exclude from results,
59 memory.AddResultsForProcesses(results, memory_stats,
64 results.AddValue(scalar.ScalarValue(
65 results.current_page
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
cros_power_monitor_unittest.py 187 results = cros_power_monitor.CrosPowerMonitor.ParsePower(
189 for value in results['component_utilization']['battery']:
191 results['component_utilization']['battery'][value],
193 self.assertAlmostEqual(results['energy_consumption_mwh'],
195 self.assertAlmostEqual(results['power_samples_mw'][0],
197 self.assertAlmostEqual(results['power_samples_mw'][1],
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ResultsElement.java 11 package org.eclipse.test.internal.performance.results.model;
23 import org.eclipse.test.internal.performance.results.db.AbstractResults;
24 import org.eclipse.test.internal.performance.results.db.BuildResults;
25 import org.eclipse.test.internal.performance.results.db.ConfigResults;
26 import org.eclipse.test.internal.performance.results.db.DB_Results;
27 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
28 import org.eclipse.test.internal.performance.results.utils.Util;
59 AbstractResults results; field in class:ResultsElement
164 ResultsElement(AbstractResults results, ResultsElement parent) {
166 this.results = results
    [all...]
  /external/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 {
  /frameworks/base/location/java/android/location/
Geocoder.java 75 * @param locale the desired Locale for the query results
105 * The results are a best guess and are not guaranteed to be meaningful or
132 List<Address> results = new ArrayList<Address>(); local
134 mParams, results);
138 return results;
155 * The results are a best guess and are not guaranteed to be meaningful or
160 * @param maxResults max number of results to return. Smaller numbers (1 to 5) are recommended
174 List<Address> results = new ArrayList<Address>(); local
176 0, 0, 0, 0, maxResults, mParams, results);
180 return results;
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
record_wpr.py 18 from telemetry.results import results_options
57 def ValidateAndMeasurePage(self, page, tab, results):
59 self.page_test.ValidateAndMeasurePage(page, tab, results)
61 def RunPage(self, page, tab, results):
67 self.page_test.RunPage(page, tab, results)
80 super(RecorderPageTest, self).RunPage(page, tab, results)
174 def Record(self, results):
178 test_expectations.TestExpectations(), self._options, results)
180 def HandleResults(self, results):
181 if results.failures or results.skipped_values
    [all...]
  /external/chromium_org/components/favicon_base/
select_favicon_frames.cc 116 std::vector<SelectionResult>* results) {
130 results->push_back(result);
143 results->push_back(result);
231 std::vector<SelectionResult> results; local
235 &results);
236 if (results.size() == 0)
240 size_t index = results[0].index;
246 for (size_t i = 0; i < results.size(); ++i) {
247 size_t index = results[i].index;
262 std::vector<SelectionResult> results; local
    [all...]
  /external/chromium_org/third_party/WebKit/
PRESUBMIT.py 32 results = []
34 results.append(output_api.PresubmitError(
36 return results
74 results = []
75 results.extend(input_api.canned_checks.PanProjectChecks(
78 results.extend(_CheckForVersionControlConflicts(input_api, output_api))
79 results.extend(_CheckPatchFiles(input_api, output_api))
80 results.extend(_CheckTestExpectations(input_api, output_api))
81 results.extend(_CheckUnwantedDependencies(input_api, output_api))
82 results.extend(_CheckChromiumPlatformMacros(input_api, output_api)
    [all...]
  /frameworks/base/core/java/android/os/
PerformanceCollector.java 24 * outputs the results using writer of type {@link PerformanceResultsWriter}.
54 * Structure of results output is up to implementor of
81 * @param results memory and runtime metrics stored as key/value pairs,
86 public void writeEndSnapshot(Bundle results);
104 * @param results runtime metrics of code block between calls to
109 public void writeStopTiming(Bundle results);
143 * In a results Bundle, this key references a List of iteration Bundles.
151 * In a results Bundle, this key reports the cpu time of the code block
156 * In a results Bundle, this key reports the execution time of the code
564 * Returns a bundle with the current results from the allocation counting
567 Bundle results = new Bundle(); local
582 Bundle results = new Bundle(); local
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender_unittest.cc 97 std::vector<SpellCheckResult> results(1, BuildSpellCheckResult());
101 &results);
102 return results[0].hash;
254 std::vector<SpellCheckResult> results; local
255 results.push_back(SpellCheckResult(SpellCheckResult::SPELLING,
261 results.push_back(SpellCheckResult(SpellCheckResult::SPELLING,
268 &results);
308 std::vector<SpellCheckResult> results(
317 &results);
318 uint32 original_hash = results[0].hash
521 std::vector<SpellCheckResult> results; local
572 std::vector<SpellCheckResult> results; local
    [all...]
  /external/libcxxabi/src/Unwind/
DwarfParser.hpp 107 PrologInfo *results);
116 PrologInfo *results);
347 PrologInfo *results) {
348 // clear results
349 bzero(results, sizeof(PrologInfo));
355 (pint_t)(-1), rememberStack, results) &&
358 upToPC - fdeInfo.pcStart, rememberStack, results);
367 PrologInfo *results) {
371 PrologInfo initialState = *results;
427 results->savedRegisters[reg].location = kRegisterInCFA
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
DwarfParser.hpp 107 PrologInfo *results);
116 PrologInfo *results);
347 PrologInfo *results) {
348 // clear results
349 bzero(results, sizeof(PrologInfo));
355 (pint_t)(-1), rememberStack, results) &&
358 upToPC - fdeInfo.pcStart, rememberStack, results);
367 PrologInfo *results) {
371 PrologInfo initialState = *results;
427 results->savedRegisters[reg].location = kRegisterInCFA
    [all...]
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/
CtsHostJankTest.java 117 HashMap<String, Double> results = new HashMap<String, Double>(4); local
121 results.put(parts[0], Double.parseDouble(parts[1]));
125 Log.logAndDisplay(LogLevel.INFO, TAG, "Results: " + results);
126 assertEquals("Could not parse the results file: ", 4, results.size());
128 double avgNumJanks = results.get("average number of jankiness");
129 double maxNumJanks = results.get("max number of jankiness");
130 double avgFrameRate = results.get("average frame rate");
131 double avgMaxAccFrames = results.get("average of max accumulated frames")
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer.h 23 // Mixer collects results from providers, sorts them and publishes them to the
24 // SearchResults UI model. The targeted results have 6 slots to hold the
49 // Collects the results, sorts and publishes them.
55 // Used for sorting and mixing results.
71 // results that are not in |new_results|. Results that already exist in
73 static void Publish(const SortedResults& results,
76 // Removes duplicates from |results|.
77 static void RemoveDuplicates(SortedResults* results);
  /external/chromium_org/components/query_parser/
query_parser_unittest.cc 158 std::vector<base::string16> results; local
160 parser.ParseQueryWords(base::UTF8ToUTF16(data[i].text), &results); local
161 ASSERT_EQ(data[i].word_count, results.size());
162 EXPECT_EQ(data[i].w1, base::UTF16ToUTF8(results[0]));
163 if (results.size() == 2)
164 EXPECT_EQ(data[i].w2, base::UTF16ToUTF8(results[1]));
165 if (results.size() == 3)
166 EXPECT_EQ(data[i].w3, base::UTF16ToUTF8(results[2]));
  /external/chromium_org/third_party/icu/source/test/intltest/
listformattertest.h 48 UnicodeString results[4]);
55 UnicodeString results[4]);
  /external/chromium_org/third_party/libxml/src/
testThreads.c 101 void *results[MAX_ARGC]; local
109 results[i] = NULL;
122 ret = pthread_join(tid[i], &results[i]);
131 if (results[i] != (void *) Okay)
144 void *results[MAX_ARGC]; local
154 results[i] = NULL;
167 ret = wait_for_thread(tid[i], &results[i]);
178 if (results[i] != (void *) Okay) {
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_to_expectations_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 ExpectationComparisons object."""
44 results.KEY__HEADER__RESULTS_ALL),
  /external/chromium_org/tools/telemetry/telemetry/results/
results_options.py 10 from telemetry.results import buildbot_output_formatter
11 from telemetry.results import chart_json_output_formatter
12 from telemetry.results import csv_output_formatter
13 from telemetry.results import gtest_progress_reporter
14 from telemetry.results import html_output_formatter
15 from telemetry.results import json_output_formatter
16 from telemetry.results import page_test_results
17 from telemetry.results import progress_reporter
25 group = optparse.OptionGroup(parser, 'Results options')
39 group.add_option('--reset-results', action='store_true'
    [all...]

Completed in 1119 milliseconds

<<11121314151617181920>>