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

<<21222324252627282930>>

  /external/chromium_org/third_party/skia/tools/
gen_bench_expectations_from_codereview.py 8 """Generate new bench expectations from results of trybots on a code review."""
43 results = compare_codereview.CodeReviewHTMLParser().parse(codereview_url)
45 for builder, data in results.iteritems():
137 # step_data['results'] may not be present if the step succeeded. If present,
139 # http://docs.buildbot.net/latest/developer/results.html
140 result = step_data.get('results', [BUILD_STATUS_SUCCESS])[0]
151 Scans the given code review for Perf trybot runs. Downloads the results of
  /external/chromium_org/third_party/skia/tools/tests/
base_unittest.py 143 results = unittest.TextTestRunner(verbosity=2).run(suite)
144 if not results.wasSuccessful():
  /external/libunwind/doc/
unw_destroy_addr_space.tex 24 \Var{unw\_local\_addr\_space}. Attempting to do so results in
  /external/mesa3d/src/gallium/drivers/r600/
r600_query.c 43 uint32_t *results; local
55 results = ctx->ws->buffer_map(buf->cs_buf, ctx->cs, PIPE_TRANSFER_WRITE);
56 memset(results, 0, buf_size);
63 results[(i * 4)+1] = 0x80000000;
64 results[(i * 4)+3] = 0x80000000;
67 results += 4 * ctx->max_db;
78 results = ctx->ws->buffer_map(buf->cs_buf, ctx->cs, PIPE_TRANSFER_WRITE);
79 memset(results, 0, buf_size);
220 /* Find how many results there are. */
422 /* count all results across all data blocks *
    [all...]
  /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 620 milliseconds

<<21222324252627282930>>