HomeSort by relevance Sort by last modified time
    Searched refs:summary (Results 151 - 175 of 321) sorted by null

1 2 3 4 5 67 8 91011>>

  /build/tools/droiddoc/templates-sac/
sampleindex.cs 22 <?cs var:summary ?>
  /external/ceres-solver/include/ceres/
solver.h 728 struct CERES_EXPORT Summary {
729 Summary();
    [all...]
  /external/chromium_org/third_party/codesighs/
autosummary.win.bash 84 echo "usage: $0 <save_results> <old_results> <summary>"
88 echo " It is used to diff with current results and come up with a summary"
91 echo " <summary> is a file which will contain a human readable report."
100 echo "For much more detail on size drifts refer to the summary report."
205 $OBJROOT/dist/bin/maptsvdifftool --negation --summary --input $DIFFFILE | dos2unix
  /external/ltrace/
summary.c 30 #include "summary.h"
157 assert(options.summary);
167 options.summary = 0;
libltrace.c 40 #include "summary.h"
95 if (options.summary)
  /external/chromium_org/testing/gtest/samples/
sample9_unittest.cc 79 test_part_result.summary());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.h 67 const AtomicString& summary() const;
  /external/ceres-solver/examples/
bundle_adjuster.cc 324 Solver::Summary summary; local
325 Solve(options, &problem, &summary);
326 std::cout << summary.FullReport() << "\n";
nist.cc 435 ceres::Solver::Summary summary; local
436 Solve(options, &problem, &summary);
467 summary.initial_cost,
468 summary.final_cost,
470 (summary.num_successful_steps + summary.num_unsuccessful_steps));
ellipse_approximation.cc 364 ceres::Solver::Summary summary; local
365 ceres::Solve(options, problem, &summary);
370 std::cout << summary.FullReport() << std::endl;
372 return summary.termination_type == ceres::CONVERGENCE;
  /external/chromium_org/chrome/common/
localized_error.cc 66 // Detailed summary used when the error is in the main frame.
559 base::DictionaryValue* summary = new base::DictionaryValue; local
561 // For offline show a summary message underneath the heading.
567 // Set summary message in the details.
568 summary->SetString("msg",
571 summary->SetString("failedUrl", failed_url_string);
572 summary->SetString("hostName", net::IDNToUnicode(failed_url.host(),
574 summary->SetString("productName",
582 error_strings->Set("summary", summary);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
drive_internals.js 51 * @param {Object} gcacheSummary Dictionary of summary of GCache.
73 $('gcache-summary-total-size').textContent =
105 * Updates the Local Storage summary.
115 * Updates the summary about in-flight operations.
152 * Updates the summary about about resource.
167 * Updates the summary about app list.
201 * Updates the summary about delta update status.
  /external/chromium_org/third_party/skia/tools/
skdiff_main.cpp 341 DiffSummary* summary) {
470 summary->add(drp);
491 summary->add(drp);
512 summary->add(drp);
586 DiffSummary summary; local
758 verbose, &summary);
759 summary.print(listFilenames, failOnResultType, failOnStatusType);
767 print_diff_page(summary.fNumMatches, colorThreshold, differences,
780 num_failing_results += summary.fResultsOfType[i].count();
787 num_failing_results += summary.fStatusOfType[base][comparison].count()
    [all...]
  /external/chromium_org/chrome/browser/resources/bookmark_manager/css/
bmm.css 297 .summary > * {
302 .summary button {
316 html[dir=rtl] .summary button {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
printing.py 52 help='display test times (summary plus per-test w/ --verbose)'),
307 summary = ''
311 summary = "All %d tests ran as expected%s%s." % (expected, expected_summary_str, timing_summary)
313 summary = "The test ran as expected%s%s." % (expected_summary_str, timing_summary)
315 summary = "%s ran as expected%s%s%s." % (grammar.pluralize('test', expected), expected_summary_str, incomplete_str, timing_summary)
317 summary = "%s ran as expected%s, %d didn't%s%s:" % (grammar.pluralize('test', expected), expected_summary_str, unexpected, incomplete_str, timing_summary)
319 self._print_quiet(summary)
  /external/lldb/source/DataFormatters/
TypeCategory.cpp 24 m_summary_nav(new SummaryNavigator("summary",clist)),
25 m_regex_summary_nav(new RegexSummaryNavigator("regex-summary",clist)),
191 lldb::TypeSummaryImplSP summary;
199 if (m_summary_nav->Get(type_name, summary))
210 if (m_regex_summary_nav->Get(type_name, summary))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
JSArticle.js 15 this.summary;
103 article.summary = wikiDocument["Summary_Section"];
  /external/chromium_org/third_party/icu/source/test/intltest/
transtst.h 22 * @summary General test of Transliterator
405 const UnicodeString& summary, UBool pass,
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 57 DE_DECLARE_COMMAND_LINE_OPT(Summary, bool);
93 << Option<Summary> (DE_NULL, "summary", "Print summary at the end", s_yesNo, "yes")
108 , summary (false)
122 bool summary; member in struct:CommandLine
150 cmdLine.summary = opts.getOption<opt::Summary>();
381 printf("\nTest run summary:\n");
485 if (cmdLine.summary)
    [all...]
  /external/icu/icu4c/source/test/intltest/
transtst.h 22 * @summary General test of Transliterator
405 const UnicodeString& summary, UBool pass,
  /external/lldb/test/functionalities/data-formatter/data-formatter-script/
TestDataFormatterScript.py 51 self.runCmd('type summary clear', check=False)
59 self.runCmd("type summary add i_am_cool --python-script \"%s\"" % script)
84 self.runCmd("type summary add i_am_cool --python-script \"%s\"" % script)
92 # Change the summary
93 self.runCmd("type summary add --summary-string \"int says ${var.integer}, and float says ${var.floating}\" i_am_cool")
104 self.runCmd("type summary add i_am_cool -p --python-script \"%s\"" % script)
109 script = 'return \'Python summary\'';
111 self.runCmd("type summary add --name test_summary --python-script \"%s\"" % script)
113 # attach the Python named summary to someon
    [all...]
  /development/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 221 String summary = null; local
225 // Checks whether the user set the preference to include summary text
249 // a text summary.
254 // If the user set the preference to include summary text,
257 htmlString.append(entry.summary);
  /external/ceres-solver/internal/ceres/
schur_complement_solver_test.cc 108 LinearSolver::Summary summary; local
113 summary = solver->Solve(A.get(), b.get(), per_solve_options, x.get());
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.css 7 #downloads-summary-text {
  /external/chromium_org/content/browser/resources/indexed_db/
indexeddb_internals.css 5 .indexeddb-summary {

Completed in 1241 milliseconds

1 2 3 4 5 67 8 91011>>