HomeSort by relevance Sort by last modified time
    Searched refs:summary (Results 26 - 50 of 587) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/auxprogs/
gsl19test 83 rm -rf log.verbose gsl-1.9 summary.txt
87 echo > summary.txt
88 echo $0 $1 \"$2\" \"$3\" \"$4\" \"$5\" >> summary.txt
89 echo >> summary.txt
117 (echo -n " Native fails: " && (grep FAIL: out-REF | wc -l)) >> summary.txt
118 (echo -n " Native passes: " && (grep PASS: out-REF | wc -l)) >> summary.txt
119 (echo -n " Valgrind fails: " && (grep FAIL: out-V | wc -l)) >> summary.txt
120 (echo -n " Valgrind passes: " && (grep PASS: out-V | wc -l)) >> summary.txt
121 echo >> summary.txt
  /packages/apps/Settings/src/com/android/settings/vpn2/
ManageablePreference.java 80 * Update the preference summary string (see {@see Preference#setSummary}) with a string
88 String summary = (mState == STATE_NONE ? "" : states[mState]); local
91 summary = TextUtils.isEmpty(summary) ? alwaysOnString : res.getString(
92 R.string.join_two_unrelated_items, summary, alwaysOnString);
94 setSummary(summary);
  /external/objenesis/tck/src/org/objenesis/tck/
TextReporter.java 30 * being read by a human. If can be reused to provide a summary reports of different candidates as
65 private final PrintStream summary; field in class:TextReporter
88 * @param summary Output of main report.
91 public TextReporter(PrintStream summary, PrintStream log) {
92 this.summary = summary;
142 * Print the final summary report
146 summary.println("Running TCK on platform: " + platformDescription);
147 summary.println();
149 summary.println("Not serializable parent constructor called:
    [all...]
  /external/ceres-solver/examples/
helloworld.cc 76 Solver::Summary summary; local
77 Solve(options, &problem, &summary);
79 std::cout << summary.BriefReport() << "\n";
helloworld_analytic_diff.cc 99 Solver::Summary summary; local
100 Solve(options, &problem, &summary);
102 std::cout << summary.BriefReport() << "\n";
helloworld_numeric_diff.cc 72 Solver::Summary summary; local
73 Solve(options, &problem, &summary);
75 std::cout << summary.BriefReport() << "\n";
  /external/ceres-solver/internal/ceres/
line_search.cc 225 Summary* summary) {
226 *CHECK_NOTNULL(summary) = LineSearch::Summary();
253 ++summary->num_function_evaluations;
255 ++summary->num_gradient_evaluations;
271 ++summary->num_iterations;
272 if (summary->num_iterations >= options().max_num_iterations) {
273 summary->error =
278 LOG_IF(WARNING, !options().is_silent) << summary->error
    [all...]
trust_region_minimizer.h 50 Solver::Summary* summary);
symmetric_linear_solver_test.cc 71 LinearSolver::Summary summary = local
74 EXPECT_EQ(summary.termination_type, LINEAR_SOLVER_SUCCESS);
75 ASSERT_EQ(summary.num_iterations, 1);
128 LinearSolver::Summary summary = local
131 EXPECT_EQ(summary.termination_type, LINEAR_SOLVER_SUCCESS);
coordinate_descent_minimizer.h 68 Solver::Summary* summary);
85 Solver::Summary* summary);
execution_summary.h 72 ScopedExecutionTimer(const string& name, ExecutionSummary* summary)
75 summary_(summary) {}
line_search_minimizer.h 71 Solver::Summary* summary);
  /packages/apps/PhoneCommon/src/com/android/phone/common/util/
SettingsUtil.java 80 CharSequence summary = context.getString(R.string.ringtone_unknown); local
83 summary = context.getString(R.string.ringtone_silent);
91 summary = title;
99 summary = context.getString(R.string.default_notification_description, summary);
101 handler.sendMessage(handler.obtainMessage(msg, summary));
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 35 public TextView summary; field in class:AppViewHolder
50 holder.summary = (TextView) convertView.findViewById(R.id.widget_text1);
67 summary.setText(entry.internalSizeStr);
70 summary.setText(entry.externalSizeStr);
73 summary.setText(entry.sizeStr);
77 summary.setText(invalidSizeStr);
  /cts/tests/tests/preference2/src/android/preference2/cts/
CheckBoxPreferenceTest.java 48 String summary = (String) checkBoxPref.getSummary(); local
51 assertEquals(summaryExp, summary);
  /external/autotest/client/site_tests/graphics_GpuReset/
graphics_GpuReset.py 60 summary = ''
64 summary += 'graphics_GpuReset iteration %d of %d\n' % (i, self.loops)
66 summary += 'initctl stop ui\n'
73 summary += utils.system_output(cmd, retain_output=True)
74 summary += '\n'
77 summary += 'initctl start ui\n'
81 results_path = os.path.join(self.outputdir, 'summary.txt')
86 f.write(summary)
93 results = summary.splitlines()
97 'test_that_latest/graphics_GpuReset/summary.txt'
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wps-nfc.py 32 def summary(txt): function
39 summary(txt)
148 summary("received handover request {}".format(request.type))
151 summary("not a handover request")
156 summary("error decoding 'Hr' message: {}".format(e))
159 summary("send handover response {}".format(response.type))
164 summary("HandoverServer - request received")
175 summary("WPS carrier type match - add WPS carrier record")
178 summary("Could not get handover select carrier record from wpa_supplicant")
186 summary("Handover report rejected (responder)"
    [all...]
  /external/wpa_supplicant_8/hostapd/
wps-ap-nfc.py 28 def summary(txt): function
35 summary(txt)
119 summary("received handover request {}".format(request.type))
122 summary("not a handover request")
127 summary("error decoding 'Hr' message: {}".format(e))
130 summary("send handover response {}".format(response.type))
134 summary("HandoverServer - request received")
146 summary("WPS carrier type match - add WPS carrier record")
149 summary("Could not get handover select carrier record from hostapd")
156 summary("Handover report rejected"
    [all...]
  /system/extras/simpleperf/
cmd_stat.cpp 295 static std::string GetCommentForSummary(const CounterSummary& summary,
298 const std::string& type_name = summary.event_type->event_type.name;
299 const std::string& modifier = summary.event_type->modifier;
301 double run_sec = summary.count / 1e9;
309 double hz = summary.count / duration_in_sec;
312 if (type_name == "instructions" && summary.count != 0) {
315 double cycles_per_instruction = t.count * 1.0 / summary.count;
331 double miss_rate = summary.count * 1.0 / t.count;
336 double rate = summary.count / duration_in_sec;
386 CounterSummary summary; local
    [all...]
  /external/curl/tests/
extern-scan.pl 40 my $summary=0;
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
73 public final String summary; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
77 this.summary = summary;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
88 String summary = null; local
97 } else if (name.equals("summary")) {
98 summary = readSummary(parser);
105 return new Entry(title, summary, link)
135 String summary = readText(parser); local
    [all...]
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
73 public final String summary; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
77 this.summary = summary;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
88 String summary = null; local
97 } else if (name.equals("summary")) {
98 summary = readSummary(parser);
105 return new Entry(title, summary, link)
135 String summary = readText(parser); local
    [all...]
  /frameworks/base/core/java/android/preference/
TwoStatePreference.java 105 * Sets the summary to be shown when checked.
107 * @param summary The summary to be shown when checked.
109 public void setSummaryOn(CharSequence summary) {
110 mSummaryOn = summary;
118 * @param summaryResId The summary as a resource.
125 * Returns the summary to be shown when checked.
126 * @return The summary.
133 * Sets the summary to be shown when unchecked.
135 * @param summary The summary to be shown when unchecked
210 final CharSequence summary = getSummary(); local
    [all...]
  /frameworks/support/v7/preference/src/android/support/v7/preference/
TwoStatePreference.java 103 * Sets the summary to be shown when checked.
105 * @param summary The summary to be shown when checked.
107 public void setSummaryOn(CharSequence summary) {
108 mSummaryOn = summary;
116 * @param summaryResId The summary as a resource.
123 * Returns the summary to be shown when checked.
124 * @return The summary.
131 * Sets the summary to be shown when unchecked.
133 * @param summary The summary to be shown when unchecked
217 final CharSequence summary = getSummary(); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
jamotest.h 24 * @summary Test of Latin-Jamo and Jamo-Latin rules
46 const UnicodeString& summary, UBool pass,

Completed in 464 milliseconds

12 3 4 5 6 7 8 91011>>