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

<<21222324252627282930>>

  /external/chromium_org/ppapi/proxy/
pdf_resource_unittest.cc 73 PP_PrivateFindResult* results; local
79 &results, local
83 ASSERT_EQ(1, results[0].start_index);
84 ASSERT_EQ(2, results[0].length);
85 ASSERT_EQ(7, results[1].start_index);
86 ASSERT_EQ(2, results[1].length);
89 memory_iface->MemFree(results);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObject.cpp 129 ListHashSet<String> results; local
134 results.add(m_itemList[i]->type());
142 results.add(mimeTypeFiles);
143 return results;
204 Vector<String> results; local
207 results.append(static_cast<File*>(m_itemList[i]->getAsFile().get())->path());
209 return results;
  /external/chromium_org/tools/telemetry/telemetry/page/
page_test_unittest.py 21 def ValidateAndMeasurePage(self, page, tab, results):
29 def ValidateAndMeasurePage(self, page, tab, results):
35 results.AddValue(scalar.ScalarValue(page, 'x', 'ms', 7))
39 def ValidateAndMeasurePage(self, page, tab, results):
47 def ValidateAndMeasurePage(self, page, tab, results):
55 def ValidateAndMeasurePage(self, page, tab, results):
67 def ValidateAndMeasurePage(self, page, tab, results):
  /external/chromium_org/tools/telemetry/telemetry/web_perf/
timeline_based_measurement.py 51 # TODO(nednguyen): Get rid of this results wrapper hack after we add interaction
54 def __init__(self, results, label):
55 self._results = results
83 def AddResults(self, results):
98 wrapped_results = _ResultsWrapper(results, label)
179 def ValidateAndMeasurePage(self, page, tab, results):
180 """ Collect all possible metrics and added them to results. """
189 results.AddValue(string_value_module.StringValue(
198 meta_metrics.AddResults(results)
  /external/libcxx/test/
runtests.py 103 results = pool.imap(pool_task, tests)
106 for name, status, target in results:
115 def report_results(results):
116 num_run = results['num_run']
117 failures = results['failures']
169 results = run_tests(tests, num_threads)
170 report_results(results)
  /external/lldb/tools/lldb-perf/darwin/sketch/
sketch.cpp 165 Runs a set of static timing and memory tasks against sketch and outputs results
301 WriteResults (Results &results)
303 m_fetch_frames_measurement.WriteAverageAndStandardDeviation(results);
304 m_file_line_bp_measurement.WriteAverageAndStandardDeviation(results);
305 m_fetch_modules_measurement.WriteAverageAndStandardDeviation(results);
306 m_fetch_vars_measurement.WriteAverageAndStandardDeviation(results);
307 m_run_expr_measurement.WriteAverageAndStandardDeviation(results);
308 results.Write(GetResultFilePath());
  /frameworks/base/opengl/java/android/opengl/
ETC1Util.java 98 int[] results = new int[20]; local
99 GLES10.glGetIntegerv(GLES10.GL_NUM_COMPRESSED_TEXTURE_FORMATS, results, 0);
100 int numFormats = results[0];
101 if (numFormats > results.length) {
102 results = new int[numFormats];
104 GLES10.glGetIntegerv(GLES10.GL_COMPRESSED_TEXTURE_FORMATS, results, 0);
106 if (results[i] == ETC1.ETC1_RGB8_OES) {
  /frameworks/base/services/core/java/com/android/server/display/
PersistentDataStore.java 116 WifiDisplay[] results = displays; local
117 if (results != null) {
122 if (results == displays) {
123 results = new WifiDisplay[count];
124 System.arraycopy(displays, 0, results, 0, count);
126 results[i] = result;
130 return results;
  /external/chromium_org/chrome/browser/google/
google_update_win.cc 194 // Returns the results of the update operation.
349 GoogleUpdateUpgradeResult results; local
350 hr = job_observer->GetResult(&results);
363 if (results == UPGRADE_ERROR) {
385 results, GOOGLE_UPDATE_NO_ERROR, base::string16()));
390 void GoogleUpdate::ReportResults(GoogleUpdateUpgradeResult results,
394 DCHECK(results == UPGRADE_ERROR ? error_code != GOOGLE_UPDATE_NO_ERROR :
397 "GoogleUpdate.UpgradeResult", results, NUM_UPGRADE_RESULTS);
398 if (results == UPGRADE_ERROR) {
404 results, error_code, error_message, version_available_)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/
gcm_internals_ui.cc 150 base::DictionaryValue results; local
152 results.Set("deviceInfo", device_info);
162 results.SetBoolean("isRecording", stats->is_recording);
180 results.Set("checkinInfo", checkin_info);
186 results.Set("connectionInfo", connection_info);
192 results.Set("registrationInfo", registration_info);
198 results.Set("receiveInfo", receive_info);
204 results.Set("sendInfo", send_info);
209 results);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
SelectFileDialog.java 186 * Callback method to handle the intent results and pass on the path to the native
191 * @param results The results of the requested intent.
196 ContentResolver contentResolver, Intent results) {
202 if (results == null) {
224 results.getData() == null &&
225 results.getClipData() != null) {
226 ClipData clipData = results.getClipData();
243 if (ContentResolver.SCHEME_FILE.equals(results.getData().getScheme())) {
245 results.getData().getSchemeSpecificPart(), "")
    [all...]
  /cts/suite/cts/hostTests/uihost/control/src/com/android/cts/taskswitching/control/
TaskswitchingDeviceTest.java 74 double[] results = MeasureTime.measure(NUMBER_REPEAT, new MeasureRun() { local
86 getReportLog().printArray("taskswitching time", results, ResultType.LOWER_BETTER,
88 Stat.StatResult stat = Stat.getStat(results);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResultRepo.java 42 * Create a {@link TestResultRepo} from a directory of results
44 * @param testResultsDir the parent directory of results
102 // TODO: consider caching the results in future
108 TestResults results = new TestResults(); local
111 results.parse(new BufferedReader(new FileReader(resultFile)));
112 return results;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.js 14 var results = summary.querySelector('.results');
15 var passed = results.querySelector('.passed');
16 var failed = results.querySelector('.failed');
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider.h 79 blink::WebVector<blink::WebTextCheckingResult>* results) OVERRIDE;
99 const std::vector<SpellCheckResult>& results);
110 const std::vector<SpellCheckResult>& results);
118 // spellchecking results.
  /external/chromium_org/chromecast/tools/build/
chromecast_repack_locales.py 130 results = DoMain(sys.argv[1:]) variable
131 if results:
132 print results
  /external/chromium_org/content/public/test/
fake_speech_recognition_manager.cc 149 SpeechRecognitionResults results; local
150 results.push_back(result);
151 listener_->OnRecognitionResults(session_id_, results);
  /external/chromium_org/net/proxy/
proxy_resolver_winhttp.cc 40 ProxyInfo* results,
94 results->UseDirect();
111 results->UseNamedProxy(base::UTF16ToASCII(info.lpszProxy));
  /external/chromium_org/third_party/icu/source/test/cintltst/
cestst.c 61 const static UCollationResult results[] = { variable
99 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
118 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
cturtst.c 65 const static UCollationResult results[] = { variable
106 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
  /external/chromium_org/third_party/icu/source/test/intltest/
escoll.cpp 70 const Collator::EComparisonResult CollationSpanishTest::results[] = { member in class:CollationSpanishTest
88 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
96 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
trcoll.cpp 58 const Collator::EComparisonResult CollationTurkishTest::results[] = { member in class:CollationTurkishTest
78 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
86 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
  /external/chromium_org/tools/perf/measurements/
tab_switching.py 58 def ValidateAndMeasurePage(self, page, tab, results):
71 self._power_metric.AddResults(tab, results,)
98 results.AddSummaryValue(
  /external/icu/icu4c/source/test/cintltst/
cestst.c 61 const static UCollationResult results[] = { variable
99 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
118 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
cturtst.c 65 const static UCollationResult results[] = { variable
106 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);

Completed in 1739 milliseconds

<<21222324252627282930>>