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

1 23 4 5 6 7 8 91011>>

  /external/ceres-solver/internal/ceres/
levenberg_marquardt_strategy.cc 65 TrustRegionStrategy::Summary LevenbergMarquardtStrategy::ComputeStep(
106 LinearSolver::Summary linear_solver_summary =
136 TrustRegionStrategy::Summary summary; local
137 summary.residual_norm = linear_solver_summary.residual_norm;
138 summary.num_iterations = linear_solver_summary.num_iterations;
139 summary.termination_type = linear_solver_summary.termination_type;
140 return summary;
line_search.h 178 struct Summary {
179 Summary()
207 // summary must not be null and will contain the result of the line
210 // Summary::success is true if a non-zero step size is found.
214 Summary* summary) = 0;
263 Summary* summary);
280 Summary* summary);
    [all...]
dogleg_strategy_test.cc 142 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
147 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
162 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
167 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
182 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
187 EXPECT_NE(summary.termination_type, LINEAR_SOLVER_FAILURE);
244 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso local
272 TrustRegionStrategy::Summary summary = strategy.ComputeStep(pso, local
    [all...]
  /external/lldb/examples/summaries/cocoa/
NSIndexSet.py 8 # example summary provider for NS(Mutable)IndexSet
9 # the real summary is now C++ code built into LLDB
135 summary = provider.count();
137 summary = None
138 logger >> "got summary " + str(summary)
139 if summary == None:
140 summary = '<variable is not NSIndexSet>'
141 if isinstance(summary, basestring):
142 return summary
    [all...]
NSBundle.py 8 # example summary provider for NSBundle
9 # the real summary is now C++ code built into LLDB
24 # trying to provide anything but a summary for an NSURL, so they need not
117 summary = provider.url_text();
119 summary = None
120 logger >> "got summary " + str(summary)
121 if summary == None or summary == '':
122 summary = '<variable is not NSBundle>
    [all...]
NSMachPort.py 8 # example summary provider for NSMachPort
9 # the real summary is now C++ code built into LLDB
111 summary = provider.port();
113 summary = None
114 logger >> "got summary " + str(summary)
115 if summary == None:
116 summary = '<variable is not NSMachPort>'
117 if isinstance(summary, basestring):
119 return 'mach port: ' + str(summary)
    [all...]
CFArray.py 8 # example summary provider for NSArray
9 # the real summary is now C++ code built into LLDB
189 summary = int(provider.num_children());
191 summary = None
192 logger >> "provider gave me " + str(summary)
193 if summary == None:
194 summary = '<variable is not NSArray>'
195 elif isinstance(summary,basestring):
198 # we format it like it were a CFString to make it look the same as the summary from Xcode
199 summary = '@"' + str(summary) + (" objects" if summary != 1 else " object") + '"
    [all...]
NSException.py 8 # summary provider for class NSException
104 summary = provider.description();
106 summary = None
107 logger >> "got summary " + str(summary)
108 if summary == None:
109 summary = '<variable is not NSException>'
110 return str(summary)
111 return 'Summary Unavailable'
114 debugger.HandleCommand("type summary add -F NSException.NSException_SummaryProvider NSException"
    [all...]
NSNotification.py 8 # example summary provider for NSNotification
9 # the real summary is now C++ code built into LLDB
100 summary = provider.name();
102 summary = None
103 logger >> "got summary " + str(summary)
104 if summary == None:
105 summary = '<variable is not NSNotification>'
106 return str(summary)
107 return 'Summary Unavailable
    [all...]
CFString.py 8 # example synthetic children and summary provider for CFString (and related NSString class)
19 summary = provider.get_child_at_index(provider.get_child_index("content"))
20 if type(summary) == lldb.SBValue:
21 summary = summary.GetSummary()
23 summary = '"' + summary + '"'
25 summary = None
26 if summary == None:
27 summary = '<variable is not NSString>
    [all...]
NSDate.py 8 # example summary provider for NSDate
9 # the real summary is now C++ code built into LLDB
56 # trying to provide anything but the summary for NSDate, so they need not
231 summary = provider.value();
233 summary = None
234 if summary == None:
235 summary = '<variable is not NSDate>'
236 return str(summary)
237 return 'Summary Unavailable'
246 summary = provider.timezone()
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
Test.java 41 private static final String SUMMARY_TAG = "Summary";
59 // summary and details passed from cts
142 public void setSummary(String summary) {
143 mSummary = summary;
189 // <Summary message = "screen copies per sec" scoretype="higherBetter" unit="fps">
190 // 23938.82978723404</Summary>
191 PerfResultSummary summary = parseSummary(mSummary); local
192 if (summary != null) {
194 serializer.attribute(CtsXmlResultReporter.ns, MESSAGE_ATTR, summary.mMessage);
195 if (summary.mTarget.length() != 0 && !summary.mTarget.equals(" "))
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 50 /// <summary>
59 /// </summary>
66 /// <summary>
69 /// </summary>
75 /// <summary>Duplicate a single tree node </summary>
79 /// <summary>Duplicate tree recursively, using DupNode() for each node </summary>
82 /// <summary>
86 /// </summary>
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
manual.css 94 .summary {
101 .summary .results .failed {
106 .summary .results .failed.none {
111 .summary .results .passed {
116 .summary .results .passed.none {
  /external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
googlecode_upload.py 13 # file on your local machine, a small summary of what the file is, a
65 def upload(file, project_name, user_name, password, summary, labels=None):
74 summary: A small description for the file.
89 form_fields = [('summary', summary)]
161 def upload_find_auth(file_path, project_name, summary, labels=None,
165 file_path, project_name, summary, and labels are passed as-is to upload.
170 summary: A small description for the file.
190 return upload(file_path, project_name, user_name, password, summary, labels)
194 parser = optparse.OptionParser(usage='googlecode-upload.py -s SUMMARY '
    [all...]
  /external/ceres-solver/examples/
circle_fit.cc 153 Solver::Summary summary; local
154 Solve(options, &problem, &summary);
159 std::cout << summary.BriefReport() << "\n";
powell.cc 144 Solver::Summary summary; local
145 Solve(options, &problem, &summary);
147 std::cout << summary.FullReport() << "\n";
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXImageMapLink.cpp 119 const AtomicString& summary = getAttribute(summaryAttr); local
120 if (!summary.isEmpty())
121 return summary;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSummaryElement.cpp 40 RefPtrWillBeRawPtr<HTMLSummaryElement> summary = adoptRefWillBeNoop(new HTMLSummaryElement(document)); local
41 summary->ensureUserAgentShadowRoot();
42 return summary.release();
  /external/chromium_org/tools/stats_viewer/
OpenDialog.Designer.cs 9 /// <summary>
11 /// </summary>
14 /// <summary>
16 /// </summary>
29 /// <summary>
32 /// </summary>
OpenDialog.cs 22 /// <summary>
24 /// </summary>
  /external/lldb/source/Interpreter/
OptionGroupVariable.cpp 37 { LLDB_OPT_SET_1, false, "summary", 'y', required_argument, NULL, 0, eArgTypeName, "Specify the summary that the variable output should use."},
38 { LLDB_OPT_SET_2, false, "summary-string", 'z', required_argument, NULL, 0, eArgTypeName, "Specify a summary string to use to format the variable output."},
45 return Error("must specify a valid named summary");
48 return Error("must specify a valid named summary");
56 return Error("must specify a non-empty summary string");
63 summary(ValidateNamedSummary),
92 error = summary.SetCurrentValue(option_arg);
114 summary.Clear()
    [all...]
  /external/ceres-solver/include/ceres/
iteration_callback.h 165 // true). Solver returns with Solver::Summary::termination_type set to
170 // been met). Solver returns with Solver::Summary::termination_type
189 // CallbackReturnType operator()(const IterationSummary& summary) {
194 // summary.iteration,
195 // summary.cost,
196 // summary.cost_change,
197 // summary.gradient_max_norm,
198 // summary.step_norm,
199 // summary.relative_decrease,
200 // summary.trust_region_radius
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
cpdtrtst.h 25 * @summary General test of Compound Transliterator
56 const UnicodeString& summary, UBool pass,
  /external/icu/icu4c/source/test/intltest/
cpdtrtst.h 25 * @summary General test of Compound Transliterator
56 const UnicodeString& summary, UBool pass,

Completed in 1360 milliseconds

1 23 4 5 6 7 8 91011>>