/frameworks/base/core/java/android/hardware/camera2/ |
CameraAccessException.java | 97 public CameraAccessException(int problem) { 98 super(getDefaultMessage(problem)); 99 mReason = problem; 102 public CameraAccessException(int problem, String message) { 104 mReason = problem; 107 public CameraAccessException(int problem, String message, Throwable cause) { 109 mReason = problem; 112 public CameraAccessException(int problem, Throwable cause) { 113 super(getDefaultMessage(problem), cause); 114 mReason = problem; [all...] |
/external/ceres-solver/internal/ceres/ |
problem_test.cc | 32 #include "ceres/problem.h" 119 TEST(Problem, AddResidualWithNullCostFunctionDies) { 122 Problem problem; local 123 problem.AddParameterBlock(x, 3); 124 problem.AddParameterBlock(y, 4); 125 problem.AddParameterBlock(z, 5); 127 EXPECT_DEATH_IF_SUPPORTED(problem.AddResidualBlock(NULL, NULL, x), 131 TEST(Problem, AddResidualWithIncorrectNumberOfParameterBlocksDies) { 134 Problem problem local 148 Problem problem; local 159 Problem problem; local 172 Problem problem; local 187 Problem problem; local 200 Problem problem; local 223 Problem problem; local 251 Problem problem; local 274 Problem problem; local 330 Problem problem; local 349 Problem problem; local 456 scoped_ptr<ProblemImpl> problem; member in struct:ceres::internal::DynamicProblem 464 Problem problem; local 475 Problem problem; local 486 Problem problem; local 498 Problem problem; local 508 Problem problem; local [all...] |
evaluator_test.cc | 110 void EvaluateAndCompare(ProblemImpl *problem, 118 CreateEvaluator(problem->mutable_program())); 166 EvaluateAndCompare(&problem, 181 ProblemImpl problem; member in struct:ceres::internal::EvaluatorTest 190 problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 2, 3, 4>, 218 problem.AddParameterBlock(x, 2); 219 problem.AddParameterBlock(y, 3); 220 problem.AddParameterBlock(z, 4); 226 // for a long time, since by chance most users added parameters to the problem 228 problem.AddResidualBlock(new ParameterIgnoringCostFunction<1, 3, 4, 3, 2> 564 ProblemImpl problem; local [all...] |
solver_impl_test.cc | 77 ProblemImpl problem; local 82 problem.AddParameterBlock(&x, 1); 83 problem.AddParameterBlock(&y, 1); 84 problem.AddParameterBlock(&z, 1); 85 problem.AddResidualBlock(new UnaryCostFunction(), NULL, &x); 86 problem.AddResidualBlock(new BinaryCostFunction(), NULL, &x, &y); 87 problem.AddResidualBlock(new TernaryCostFunction(), NULL, &x, &y, &z); 96 Program program(*problem.mutable_program()); 108 ProblemImpl problem; local 111 problem.AddParameterBlock(&x, 1) 130 ProblemImpl problem; local 157 ProblemImpl problem; local 188 ProblemImpl problem; local 220 ProblemImpl problem; local 265 ProblemImpl problem; local 321 ProblemImpl problem; local 390 ProblemImpl problem; local 447 ProblemImpl problem; local 469 ProblemImpl problem; local 851 ProblemImpl problem; local 953 ProblemImpl problem; local [all...] |
covariance.cc | 36 #include "ceres/problem.h" 50 Problem* problem) { 51 return impl_->Compute(covariance_blocks, problem->problem_impl_.get());
|
linear_least_squares_problems.cc | 60 LOG(FATAL) << "Unknown problem id requested " << id; 84 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 87 problem->b.reset(new double[3]); 88 problem->D.reset(new double[2]); 90 problem->x.reset(new double[2]); 91 problem->x_D.reset(new double[2]); 113 problem->A.reset(A); 115 problem->b[0] = 8; 116 problem->b[1] = 18; 117 problem->b[2] = -18 184 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 289 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local 423 LinearLeastSquaresProblem* problem = new LinearLeastSquaresProblem; local [all...] |
iterative_schur_complement_solver_test.cc | 62 scoped_ptr<LinearLeastSquaresProblem> problem( 65 CHECK_NOTNULL(problem.get()); 66 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release())); 67 b_.reset(problem->b.release()); 68 D_.reset(problem->D.release()); 72 num_eliminate_blocks_ = problem->num_eliminate_blocks;
|
block_sparse_matrix_test.cc | 48 scoped_ptr<LinearLeastSquaresProblem> problem( 50 CHECK_NOTNULL(problem.get()); 51 A_.reset(down_cast<BlockSparseMatrix*>(problem->A.release())); 53 problem.reset(CreateLinearLeastSquaresProblemFromId(1)); 54 CHECK_NOTNULL(problem.get()); 55 B_.reset(down_cast<TripletSparseMatrix*>(problem->A.release()));
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/src/ |
address_problem.cc | 43 std::ostream& operator<<(std::ostream& o, const AddressProblem& problem) { 44 o << "[" << problem.field << ", " 45 << problem.type << ", \"" 46 << problem.description << "\"]";
|
/external/openssh/ |
auth-krb5.c | 61 krb5_error_code problem; local 64 problem = krb5_init_context(&authctxt->krb5_ctx); 65 if (problem) 66 return (problem); 78 krb5_error_code problem; local 89 problem = krb5_init(authctxt); 90 if (problem) 93 problem = krb5_parse_name(authctxt->krb5_ctx, client, 95 if (problem) 99 problem = krb5_cc_gen_new(authctxt->krb5_ctx, &krb5_mcc_ops, &ccache) [all...] |
gss-serv-krb5.c | 66 krb5_error_code problem; local 71 problem = krb5_init_context(&krb_context); 72 if (problem) { 119 krb5_error_code problem; local 133 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) { 135 krb5_get_err_text(krb_context, problem)); 139 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) { 141 krb5_get_err_text(krb_context, problem)); 146 if ((problem = krb5_parse_name(krb_context, 149 krb5_get_err_text(krb_context, problem)); [all...] |
/external/chromium_org/base/metrics/ |
histogram_flattener.h | 29 virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0; 34 HistogramBase::Inconsistency problem) = 0;
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
CameraRuntimeException.java | 18 public CameraRuntimeException(int problem) { 20 mReason = problem; 23 public CameraRuntimeException(int problem, String message) { 25 mReason = problem; 29 public CameraRuntimeException(int problem, String message, Throwable cause) { 31 mReason = problem; 36 public CameraRuntimeException(int problem, Throwable cause) { 38 mReason = problem;
|
/external/chromium_org/chrome/common/metrics/ |
metrics_service_base.cc | 40 base::HistogramBase::Inconsistency problem) { 42 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE); 46 base::HistogramBase::Inconsistency problem) { 48 problem, base::HistogramBase::NEVER_EXCEEDED_VALUE);
|
metrics_service_base.h | 27 base::HistogramBase::Inconsistency problem) OVERRIDE; 29 base::HistogramBase::Inconsistency problem) OVERRIDE;
|
/external/ceres-solver/examples/ |
helloworld.cc | 41 using ceres::Problem; 64 // Build the problem. 65 Problem problem; local 71 problem.AddResidualBlock(cost_function, NULL, &x); 77 Solve(options, &problem, &summary);
|
helloworld_analytic_diff.cc | 41 using ceres::Problem; 69 // For this simple problem it is overkill to check if jacobians[0] 89 // Build the problem. 90 Problem problem; local 94 problem.AddResidualBlock(cost_function, NULL, &x); 100 Solve(options, &problem, &summary);
|
helloworld_numeric_diff.cc | 40 using ceres::Problem; 60 // Build the problem. 61 Problem problem; local 67 problem.AddResidualBlock(cost_function, NULL, &x); 73 Solve(options, &problem, &summary);
|
quadratic.cc | 41 using ceres::Problem; 75 // Build the problem. 76 Problem problem; local 78 problem.AddResidualBlock(new SimpleCostFunction, NULL, &x); 86 Solve(options, &problem, &summary);
|
quadratic_auto_diff.cc | 43 using ceres::Problem; 67 // Build the problem. 68 Problem problem; local 72 problem.AddResidualBlock( 84 Solve(options, &problem, &summary);
|
quadratic_numeric_diff.cc | 42 using ceres::Problem; 69 // Build the problem. 70 Problem problem; local 71 problem.AddResidualBlock(cost, NULL, &x); 79 Solve(options, &problem, &summary);
|
powell.cc | 54 using ceres::Problem; 110 Problem problem; local 111 // Add residual terms to the problem using the using the autodiff 114 problem.AddResidualBlock(new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), 117 problem.AddResidualBlock(new AutoDiffCostFunction<F2, 1, 1, 1>(new F2), 120 problem.AddResidualBlock(new AutoDiffCostFunction<F3, 1, 1, 1>(new F3), 123 problem.AddResidualBlock(new AutoDiffCostFunction<F4, 1, 1, 1>(new F4), 145 Solve(options, &problem, &summary);
|
/external/ceres-solver/include/ceres/ |
c_api.h | 77 * problem, 109 /* Equivalent to Problem from the C++ API. */ 116 /* Create and destroy a problem */ 117 /* TODO(keir): Add options for the problem. */ 119 void ceres_free_problem(ceres_problem_t* problem); 123 ceres_problem_t* problem, 133 void ceres_solve(ceres_problem_t* problem);
|
/external/oauth/core/src/main/java/net/oauth/ |
SimpleOAuthValidator.java | 78 OAuthProblemException problem = new OAuthProblemException("version_rejected"); local 79 problem.setParameter("oauth_acceptable_versions", minVersion + "-" + maxVersion); 80 throw problem; 94 OAuthProblemException problem = new OAuthProblemException("timestamp_refused"); local 95 problem.setParameter("oauth_acceptable_timestamps", min + "-" + max); 96 throw problem;
|
/frameworks/base/core/java/android/view/ |
InputEventConsistencyVerifier.java | 24 * Logs a description of each problem detected. 26 * When a problem is detected, the event is tainted. This mechanism prevents the same 40 // The number of recent events to log when a problem is detected. 217 problem("ACTION_DOWN but key is already down and this event " 228 problem("ACTION_UP but key was not down."); 237 problem("Invalid action " + KeyEvent.actionToString(action) 269 problem("ACTION_DOWN but trackball is already down."); 279 problem("ACTION_UP but trackball is not down."); 291 problem("Invalid action " + MotionEvent.actionToString(action) 297 problem("Trackball is down but pressure is not greater than 0.") 656 private void problem(String message) { method in class:InputEventConsistencyVerifier [all...] |