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

<<31323334353637383940>>

  /libcore/support/src/test/java/tests/support/
Support_Format.java 62 Vector<FieldContainer> results = findFields(format.formatToCharacterIterator(object)); local
65 + format.format(object), compare(results, expectedResults));
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
ConversationCursorTests.java 118 ContentProviderResult[] results = mMockResolver.applyBatch(TestProvider.AUTHORITY, ops); local
121 for (ContentProviderResult result: results) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
lock_tests.py 395 results = []
403 results.append(t2 - t1)
405 self.assertEqual(len(results), 5)
406 for dt in results:
480 results = []
482 results.append(sem.acquire(False))
483 results.append(sem.acquire(False))
486 # appending the result, therefore results will not necessarily be
488 self.assertEqual(sorted(results), [False] * 7 + [True] * 3 )
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
lock_tests.py 395 results = []
403 results.append(t2 - t1)
405 self.assertEqual(len(results), 5)
406 for dt in results:
480 results = []
482 results.append(sem.acquire(False))
483 results.append(sem.acquire(False))
486 # appending the result, therefore results will not necessarily be
488 self.assertEqual(sorted(results), [False] * 7 + [True] * 3 )
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/suid/
SuidFilesActivity.java 247 protected void onPostExecute(Set<File> results) {
248 super.onPostExecute(results);
251 // Task could be cancelled and results could be null but don't bother doing anything.
252 if (results != null) {
254 for (File result : results) {
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 161 """Tags all results with the last 4 digits of the device id.
164 devices. We use a set to store test results, so the hash (generated from
165 name and tag) must be unique to be considered different results.
187 # Retry non-passing results, only record passing results.
194 # All tests passed or retry limit reached. Either way, record results.
251 results = []
260 [r, tc, results, watcher, num_retries, tag_results_with_device],
279 len(results))
284 for r in results
    [all...]
  /external/chromium_org/build/android/pylib/perf/
test_runner.py 13 connected devices. Step results will be pickled to disk. Each step has a unique
20 with the step results previously saved. The buildbot will then process the graph
37 The JSON flaky steps file contains a list with step names which results should
290 results = base_test_result.TestRunResults()
291 results.AddResult(base_test_result.BaseTestResult(test_name, result_type))
293 if not results.DidRunPass():
295 return results, retry
  /external/chromium_org/chrome/browser/autocomplete/
zero_suggest_provider.h 56 // Registers a preference used to cache zero suggest results.
87 // to stop processing results at this point. The |parsed_data| is the parsed
92 // Adds AutocompleteMatches for each of the suggestions in |results| to
95 const SearchSuggestionParser::SuggestResults& results,
105 // Converts the parsed results to a set of AutocompleteMatches and adds them
106 // to |matches_|. Also update the histograms for how many results were
128 // Checks whether we have a set of zero suggest results cached, and if so
129 // populates |matches_| with cached results.
138 // The type of page the user is viewing (a search results page doing search
145 // Fetcher used to retrieve results
    [all...]
  /external/chromium_org/chrome/browser/captive_portal/
captive_portal_service.h 23 // a CaptivePortalService::Results as the details.
38 struct Results {
114 const captive_portal::CaptivePortalDetector::Results& results);
  /external/chromium_org/chrome/browser/extensions/api/history/
history_api.h 113 // Call this method to report the results of the async method to the caller.
136 // Callback for the history function to provide results.
152 // Callback for the history function to provide results.
153 void SearchComplete(history::QueryResults* results);
  /external/chromium_org/chrome/browser/profile_resetter/
automatic_profile_resetter.h 207 // the program with |results|. Finishes the evaluation flow, and, based on the
209 void FinishEvaluationFlow(scoped_ptr<EvaluationResults> results);
  /external/chromium_org/chrome/browser/renderer_context_menu/
spelling_menu_observer.cc 360 const std::vector<SpellCheckResult>& results) {
363 // Scan the text-check results and replace the misspelled regions with
368 if (results.empty()) {
372 for (SpellCheckResults::const_iterator it = results.begin();
373 it != results.end(); ++it) {
  /external/chromium_org/chrome/browser/ui/views/
find_bar_host.h 26 // is obscuring the selection results. It also receives notifications about the
27 // search results and communicates that to the view.
54 virtual void ClearResults(const FindNotificationDetails& results) OVERRIDE;
  /external/chromium_org/chrome/browser/ui/webui/
flash_ui.cc 185 base::DictionaryValue* results = new base::DictionaryValue(); local
186 results->SetString("key", key);
187 results->SetString("value", value);
188 list->Append(results);
nacl_ui.cc 159 base::DictionaryValue* results = new base::DictionaryValue(); local
160 results->SetString("key", key);
161 results->SetString("value", value);
162 list->Append(results);
voicesearch_ui.cc 74 scoped_ptr<base::DictionaryValue> results(new base::DictionaryValue());
75 results->SetString("key", key);
76 results->SetString("value", value);
77 list->Append(results.release());
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck.h 39 DO_NOT_MODIFY = 1, // Do not modify results.
81 blink::WebVector<blink::WebTextCheckingResult>* results);
  /external/chromium_org/chrome/test/chromedriver/test/
run_java_tests.py 9 results using the buildbot annotation scheme.
67 """Run the WebDriver Java tests and return the test results.
198 test_class, 'results', class_path, junit_props, sys_props, jvm_args))
209 return _ProcessResults(os.path.join(test_dir, 'results.xml'))
212 def PrintTestResults(results):
213 """Prints the given results in a format recognized by the buildbot."""
216 for result in results:
221 print 'Ran %s tests' % len(results)
223 util.AddBuildStepText('failed %s/%s' % (len(failures), len(results)))
317 results = [
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet.cc 297 std::vector<uint8> results; local
300 results.push_back(one_time_pad_[i] ^ operating_data[i]);
304 std::string hex_decrypted = base::HexEncode(&(results[0]), results.size());
  /external/chromium_org/components/pdf/renderer/
ppb_pdf_impl.cc 128 PP_PrivateFindResult** results,
170 *results = reinterpret_cast<PP_PrivateFindResult*>(
172 memcpy(*results, &pp_results[0], *count * sizeof(PP_PrivateFindResult));
174 *results = NULL;
  /external/chromium_org/content/test/gpu/gpu_tests/
memory_test.py 68 def ValidateAndMeasurePage(self, page, tab, results):
screenshot_sync.py 22 def ValidateAndMeasurePage(self, page, tab, results):
  /external/chromium_org/google_apis/gaia/
gaia_oauth_client_unittest.cc 39 const std::string& results,
48 SetResponseString(results);
112 void set_results(const std::string& results) {
113 results_ = results;
  /external/chromium_org/native_client_sdk/src/doc/
Makefile 50 "results in $(BUILDDIR)/doctest/output.txt."
  /external/chromium_org/pdf/
preview_mode_client.h 61 std::vector<SearchStringResult>* results);

Completed in 1984 milliseconds

<<31323334353637383940>>