Searched refs:problem (Results 26 - 50 of 172) sorted by relevance

1234567

/external/ceres-solver/internal/ceres/
H A Dcovariance_impl.h56 ProblemImpl* problem);
64 ProblemImpl* problem);
H A Dimplicit_schur_complement_test.cc58 scoped_ptr<LinearLeastSquaresProblem> problem(
61 CHECK_NOTNULL(problem.get());
62 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
63 b_.reset(problem->b.release());
64 D_.reset(problem->D.release());
68 num_eliminate_blocks_ = problem->num_eliminate_blocks;
H A Dschur_eliminator_test.cc57 problem(CreateLinearLeastSquaresProblemFromId(id));
58 CHECK_NOTNULL(problem.get());
59 SetupHelper(problem.get());
62 void SetupHelper(LinearLeastSquaresProblem* problem) { argument
63 A.reset(down_cast<BlockSparseMatrix*>(problem->A.release()));
64 b.reset(problem->b.release());
65 D.reset(problem->D.release());
67 num_eliminate_blocks = problem->num_eliminate_blocks;
77 // solution to the linear least squares problem using dense linear
166 // Solution to the linear least squares problem
[all...]
H A Dunsymmetric_linear_solver_test.cc48 scoped_ptr<LinearLeastSquaresProblem> problem(
51 CHECK_NOTNULL(problem.get());
52 A_.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
53 b_.reset(problem->b.release());
54 D_.reset(problem->D.release());
55 sol_unregularized_.reset(problem->x.release());
56 sol_regularized_.reset(problem->x_D.release());
/external/chromium_org/base/metrics/
H A Dhistogram_delta_serialization.h44 HistogramBase::Inconsistency problem) OVERRIDE;
46 HistogramBase::Inconsistency problem) OVERRIDE;
H A Dhistogram_delta_serialization.cc19 // Silently returns when seeing any data problem in the pickle.
97 HistogramBase::Inconsistency problem) {
98 inconsistencies_histogram_->Add(problem);
102 HistogramBase::Inconsistency problem) {
103 inconsistencies_unique_histogram_->Add(problem);
96 InconsistencyDetected( HistogramBase::Inconsistency problem) argument
101 UniqueInconsistencyDetected( HistogramBase::Inconsistency problem) argument
H A Dhistogram_snapshot_manager_unittest.cc27 HistogramBase::Inconsistency problem) OVERRIDE {
32 HistogramBase::Inconsistency problem) OVERRIDE {
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
H A Dlocalization.h55 // street address) should not be empty if problem is UNKNOWN_VALUE. The
57 // INVALID_FORMAT, and MISMATCHING_VALUE problem codes. All other fields
59 // USES_P_O_BOX problem codes.
62 AddressProblem problem,
77 // service URL. The problem should only be one of MISSING_REQUIRED_FIELD,
80 AddressProblem problem,
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthProblemException.java25 * Describes an OAuth-related problem, using a set of named parameters. One
26 * parameter identifies the basic problem, and the others provide supplementary
42 public OAuthProblemException(String problem) { argument
43 super(problem);
44 if (problem != null) {
45 parameters.put(OAUTH_PROBLEM, problem);
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Dvalidation_task.h77 // Writes (|field|,|problem|) to |problems_|.
78 void ReportProblem(AddressField field, AddressProblem problem) const;
80 // Writes (|field|,|problem|) to |problems_|, if this pair should be reported.
81 void ReportProblemMaybe(AddressField field, AddressProblem problem) const;
83 // Returns whether (|field|,|problem|) should be reported.
84 bool ShouldReport(AddressField field, AddressProblem problem) const;
H A Dvalidation_task.cc101 // A field will return an UNEXPECTED_FIELD problem type if the current value of
125 // A field will return an MISSING_REQUIRED_FIELD problem type if the current
247 AddressProblem problem) const {
248 problems_->insert(std::make_pair(field, problem));
252 AddressProblem problem) const {
253 if (ShouldReport(field, problem)) {
254 ReportProblem(field, problem);
259 AddressProblem problem) const {
263 FieldProblemMap::value_type(field, problem)) !=
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java87 } catch (OAuthProblemException problem) {
88 problem.getParameters().putAll(getDump());
89 throw problem;
/external/chromium_org/content/browser/resources/gpu/
H A Dinfo_view.js195 var problem = gpuInfo.featureStatus.problems[i];
196 var problemEl = this.createProblemEl_(problem);
258 createProblemEl_: function(problem) {
264 desc.textContent = problem.description;
268 if (problem.crBugs.length + problem.webkitBugs.length > 0) {
278 for (j = 0; j < problem.crBugs.length; ++j) {
286 var bugid = parseInt(problem.crBugs[j]);
293 for (j = 0; j < problem.webkitBugs.length; ++j) {
301 var bugid = parseInt(problem
[all...]
/external/ceres-solver/examples/
H A Dcurve_fitting.c160 ceres_problem_t* problem; local
165 problem = ceres_create_problem();
170 problem,
181 ceres_solve(problem);
182 ceres_free_problem(problem);
H A Dcircle_fit.cc47 // There are closed form solutions [1] to this problem which you may want to
128 Problem problem; local
143 problem.AddResidualBlock(cost, loss, &x, &y, &m);
149 // Build and solve the problem.
154 Solve(options, &problem, &summary);
H A Dbundle_adjuster.cc31 // An example of solving a dynamically sized problem with various
39 // The problem being solved here is known as a Bundle Adjustment
40 // problem in computer vision. Given a set of 3d points X_1, ..., X_n,
50 // The problem used here comes from a collection of bundle adjustment
250 void BuildProblem(BALProblem* bal_problem, Problem* problem) { argument
289 problem->AddResidualBlock(cost_function,
295 problem->AddResidualBlock(cost_function, loss_function, camera, point);
303 problem->SetParameterization(cameras + camera_block_size * i,
311 Problem problem; local
319 BuildProblem(&bal_problem, &problem);
[all...]
H A Dcurve_fitting.cc143 Problem problem; local
145 problem.AddResidualBlock(
158 Solve(options, &problem, &summary);
H A Drobot_pose_mle.cc51 // There are two types of residuals in this problem:
210 // conveniently add to a ceres problem.
287 ceres::Problem problem; local
296 problem.AddResidualBlock(range_cost_function, NULL, parameter_blocks);
300 problem.AddResidualBlock(OdometryConstraint::Create(odometry_values[i]),
310 Solve(solver_options, &problem, &summary);
H A Dmore_garbow_hillstrom.cc50 // A problem is considered solved if of the log relative error of its
276 Problem problem; local
277 problem.AddResidualBlock(TestProblem::Create(), NULL, x);
279 problem.SetParameterLowerBound(x, i, TestProblem::lower_bounds[i]);
280 problem.SetParameterUpperBound(x, i, TestProblem::upper_bounds[i]);
290 Solve(options, &problem, &summary);
311 Problem problem; local
312 problem.AddResidualBlock(TestProblem::Create(), NULL, x);
321 Solve(options, &problem, &summary);
/external/ceres-solver/include/ceres/
H A Dcovariance.h57 // non-linear least squares problem and provides random access to its
66 // Let us consider the non-linear regression problem
73 // solution to the non-linear least squares problem:
96 // of y, then the maximum likelihood problem to be solved is
107 // scaled, e.g. in the above case the cost function for this problem
112 // non-linear least squares problem and provides random access to its
135 // Structural rank deficiency occurs when the problem contains
177 // Problem problem;
178 // problem.AddParameterBlock(x, 3);
179 // problem
[all...]
/external/e2fsprogs/e2fsck/
H A Dpass2.c48 #include "problem.h"
355 problem_t problem = 0; local
358 problem = PR_2_MISSING_DOT;
361 problem = PR_2_1ST_NOT_DOT;
363 problem = PR_2_DOT_NULL_TERM;
366 if (problem) {
367 if (fix_problem(ctx, problem, pctx)) {
412 problem_t problem = 0; local
416 problem = PR_2_MISSING_DOT_DOT;
420 problem
729 problem_t problem; local
1271 problem_t problem = 0; local
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dimage_util.js14 callbacks.onerror({ problem: 'could_not_load', path: path });
21 callbacks.onerror({ problem: 'image_size_invalid', path: path});
50 callbacks.onerror({ problem: 'data_url_unavailable', path: path });
/external/apache-http/src/org/apache/http/client/utils/
H A DURLEncodedUtils.java182 } catch (UnsupportedEncodingException problem) {
183 throw new IllegalArgumentException(problem);
191 } catch (UnsupportedEncodingException problem) {
192 throw new IllegalArgumentException(problem);
/external/chromium_org/third_party/libaddressinput/chromium/
H A Daddressinput_util.cc26 // Returns true if the |problem| should not be reported for the |field| because
30 AddressProblem problem) {
35 field, problem)) == filter->end();
28 FilterExcludes(const std::multimap<AddressField, AddressProblem>* filter, AddressField field, AddressProblem problem) argument
/external/oauth/core/src/main/java/net/oauth/signature/
H A DOAuthSignatureMethod.java69 OAuthProblemException problem = new OAuthProblemException(
71 problem.setParameter("oauth_signature", signature);
72 problem.setParameter("oauth_signature_base_string", baseString);
73 problem.setParameter("oauth_signature_method", message
75 throw problem;
226 OAuthProblemException problem = new OAuthProblemException(
230 problem.setParameter("oauth_acceptable_signature_methods",
233 throw problem;

Completed in 4451 milliseconds

1234567