/external/ceres-solver/examples/ |
circle_fit.cc | 153 Solver::Summary summary; local 154 Solve(options, &problem, &summary); 159 std::cout << summary.BriefReport() << "\n";
|
denoising.cc | 156 ceres::Solver::Summary summary; local 157 ceres::Solve(options, problem, &summary); 159 std::cout << summary.FullReport() << "\n";
|
/external/ceres-solver/internal/ceres/ |
c_api.cc | 185 ceres::Solver::Summary summary; local 186 ceres::Solve(options, problem, &summary); 187 std::cout << summary.FullReport() << "\n";
|
dogleg_strategy_test.cc | 142 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local 147 EXPECT_NE(summary.termination_type, FAILURE); 162 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local 167 EXPECT_NE(summary.termination_type, FAILURE); 182 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local 187 EXPECT_NE(summary.termination_type, FAILURE); 244 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso local 272 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local [all...] |
schur_complement_solver.cc | 58 LinearSolver::Summary SchurComplementSolver::SolveImpl( 78 LinearSolver::Summary summary; local 79 summary.num_iterations = 1; 80 summary.termination_type = FAILURE; 89 return summary; 93 summary.termination_type = TOLERANCE; 96 return summary;
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXImageMapLink.cpp | 112 const AtomicString& summary = getAttribute(summaryAttr); local 113 if (!summary.isEmpty()) 114 textOrder.append(AccessibilityText(summary, SummaryText)); 134 const AtomicString& summary = getAttribute(summaryAttr); local 135 if (!summary.isEmpty()) 136 return summary;
|
/external/clang/utils/ |
ClangDataFormat.py | 25 debugger.HandleCommand("type summary add -F ClangDataFormat.SourceLocation_summary clang::SourceLocation") 26 debugger.HandleCommand("type summary add -F ClangDataFormat.QualType_summary clang::QualType") 27 debugger.HandleCommand("type summary add -F ClangDataFormat.StringRef_summary llvm::StringRef") 30 return SourceLocation(srcloc).summary() 33 return QualType(qualty).summary() 36 return StringRef(strref).summary() 60 def summary(self): member in class:SourceLocation 76 def summary(self): member in class:QualType 88 def summary(self): member in class:StringRef
|
/external/linux-tools-perf/ |
builtin-bench.c | 31 const char *summary; member in struct:bench_suite 63 const char *summary; member in struct:bench_subsys 92 subsystems[subsys_index].suites[i].summary); 125 subsystems[i].name, subsystems[i].summary);
|
/external/skia/tools/lua/ |
lua_pictures.cpp | 90 const char* summary = gSummarizeFunc; local 92 summary = FLAGS_tailFunc[0]; 96 SkLua L(summary);
|
/packages/apps/Settings/src/com/android/settings/ |
NotificationAccessSettings.java | 103 final String summary = getResources().getString( local 106 .setMessage(summary)
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
ColorPreference.java | 101 final CharSequence summary = getSummary(); local 102 if (!TextUtils.isEmpty(summary)) { 103 previewImage.setContentDescription(summary); 133 final TextView summary = (TextView) view.findViewById(R.id.summary); local 134 summary.setText(title);
|
EdgeTypePreference.java | 68 final TextView summary = (TextView) view.findViewById(R.id.summary); local 69 summary.setText(title);
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
SyncStateCheckBoxPreference.java | 78 * Override the summary. Fill in the %1$s with the existing summary 79 * (what ends up happening is the old summary is shown on the next 82 TextView summary = (TextView) view.findViewById(android.R.id.summary); local 83 summary.setText(getContext().getString(R.string.sync_one_time_sync, getSummary()));
|
/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...] |
/cts/tests/tests/preference2/src/android/preference2/cts/ |
SwitchPreferenceTest.java | 52 String summary = (String) mSwitchPref.getSummary(); local 54 assertEquals(summaryExp, summary);
|
/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/ |
InputMethodSettingsImpl.java | 187 final String summary = getEnabledSubtypesLabel(mContext, mImm, mImi); local 188 if (!TextUtils.isEmpty(summary)) { 189 mSubtypeEnablerPreference.setSummary(summary);
|
/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...] |
/external/chromium/testing/gtest/include/gtest/ |
gtest-test-part.h | 82 // Gets the summary of the failure message. 83 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 102 // Gets the summary of the failure message by omitting the stack 112 internal::String summary_; // The test failure summary.
|
/external/chromium_org/testing/gtest/include/gtest/ |
gtest-test-part.h | 84 // Gets the summary of the failure message. 85 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 105 // Gets the summary of the failure message by omitting the stack 115 std::string summary_; // The test failure summary.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
data.py | 243 def summary(self, fullpath=False): member in class:CoverageData
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/ |
gtest-test-part.h | 82 // Gets the summary of the failure message. 83 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 102 // Gets the summary of the failure message by omitting the stack 112 internal::String summary_; // The test failure summary.
|
/external/gtest/include/gtest/ |
gtest-test-part.h | 82 // Gets the summary of the failure message. 83 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 102 // Gets the summary of the failure message by omitting the stack 112 internal::String summary_; // The test failure summary.
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
gtest-test-part.h | 82 // Gets the summary of the failure message. 83 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 102 // Gets the summary of the failure message by omitting the stack 112 internal::String summary_; // The test failure summary.
|
/external/mesa3d/src/gtest/include/gtest/ |
gtest-test-part.h | 82 // Gets the summary of the failure message. 83 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 102 // Gets the summary of the failure message by omitting the stack 112 internal::String summary_; // The test failure summary.
|
/external/open-vcdiff/gtest/include/gtest/ |
gtest-test-part.h | 81 // Gets the summary of the failure message. 82 const char* summary() const { return summary_.c_str(); } function in class:testing::TestPartResult 101 // Gets the summary of the failure message by omitting the stack 111 internal::String summary_; // The test failure summary.
|