HomeSort by relevance Sort by last modified time
    Searched refs:problem (Results 1 - 25 of 573) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
Estimator.java 43 * Solve an estimation problem.
45 * <p>The method should set the parameters of the problem to several
48 * estimate of the parameters can be retrieved from the problem
52 * @param problem estimation problem to solve
53 * @exception EstimationException if the problem cannot be solved
56 void estimate(EstimationProblem problem) throws EstimationException;
67 * @param problem estimation problem
70 double getRMS(EstimationProblem problem);
    [all...]
AbstractEstimator.java 179 * @param problem estimation problem
182 public double getRMS(EstimationProblem problem) {
183 WeightedMeasurement[] wm = problem.getMeasurements();
194 * @param problem estimation problem
197 public double getChiSquare(EstimationProblem problem) {
198 WeightedMeasurement[] wm = problem.getMeasurements();
209 * @param problem estimation problem
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
CameraAccessException.java 111 public CameraAccessException(@AccessError int problem) {
112 super(getDefaultMessage(problem));
113 mReason = problem;
116 public CameraAccessException(@AccessError int problem, String message) {
117 super(getCombinedMessage(problem, message));
118 mReason = problem;
121 public CameraAccessException(@AccessError int problem, String message, Throwable cause) {
122 super(getCombinedMessage(problem, message), cause);
123 mReason = problem;
126 public CameraAccessException(@AccessError int problem, Throwable cause)
    [all...]
  /external/openssh/
auth-krb5.c 62 krb5_error_code problem; local
65 problem = krb5_init_context(&authctxt->krb5_ctx);
66 if (problem)
67 return (problem);
79 krb5_error_code problem; local
91 problem = krb5_init(authctxt);
92 if (problem)
95 problem = krb5_parse_name(authctxt->krb5_ctx, client,
97 if (problem)
102 problem = krb5_cc_new_unique(authctxt->krb5_ctx
    [all...]
gss-serv-krb5.c 66 krb5_error_code problem; local
71 problem = krb5_init_context(&krb_context);
72 if (problem) {
121 krb5_error_code problem; local
137 if ((problem = krb5_cc_new_unique(krb_context, krb5_fcc_ops.prefix,
139 errmsg = krb5_get_error_message(krb_context, problem);
142 if ((problem = krb5_cc_gen_new(krb_context, &krb5_fcc_ops, &ccache))) {
144 krb5_get_err_text(krb_context, problem));
150 if ((problem = ssh_krb5_cc_gen(krb_context, &ccache))) {
151 errmsg = krb5_get_error_message(krb_context, problem);
    [all...]
  /system/core/adb/
diagnose_usb.cpp 50 // The user is in plugdev so the problem is likely with the udev rules.
64 const char* problem = GetUdevProblem(); local
65 if (problem != nullptr) {
66 help_text += android::base::StringPrintf(" (%s)", problem);
76 const char* problem = GetUdevProblem(); local
77 if (problem != nullptr) {
78 header += android::base::StringPrintf(": %s", problem);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
ConstructorException.java 24 protected ConstructorException(String context, Mark contextMark, String problem,
26 super(context, contextMark, problem, problemMark, cause);
29 protected ConstructorException(String context, Mark contextMark, String problem,
31 this(context, contextMark, problem, problemMark, null);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
ScannerException.java 33 * Part of the input document in which vicinity the problem
37 * @param problem
38 * Part of the input document that caused the problem.
40 * Position of the <code>problem</code> within the document.
43 * problem.
45 public ScannerException(String context, Mark contextMark, String problem, Mark problemMark,
47 super(context, contextMark, problem, problemMark, note);
54 * Part of the input document in which vicinity the problem
58 * @param problem
59 * Part of the input document that caused the problem
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
MarkedYAMLException.java 23 private String problem; field in class:MarkedYAMLException
27 protected MarkedYAMLException(String context, Mark contextMark, String problem,
29 this(context, contextMark, problem, problemMark, note, null);
32 protected MarkedYAMLException(String context, Mark contextMark, String problem,
34 super(context + "; " + problem + "; " + problemMark, cause);
37 this.problem = problem;
42 protected MarkedYAMLException(String context, Mark contextMark, String problem, Mark problemMark) {
43 this(context, contextMark, problem, problemMark, null, null);
46 protected MarkedYAMLException(String context, Mark contextMark, String problem,
    [all...]
  /external/libchrome/base/metrics/
histogram_flattener.h 29 virtual void InconsistencyDetected(HistogramBase::Inconsistency problem) = 0;
34 HistogramBase::Inconsistency problem) = 0;
histogram_delta_serialization.h 47 void InconsistencyDetected(HistogramBase::Inconsistency problem) override;
49 HistogramBase::Inconsistency problem) override;
histogram_delta_serialization.cc 20 // Silently returns when seeing any data problem in the pickle.
103 HistogramBase::Inconsistency problem) {
106 inconsistencies_histogram_->Add(problem);
110 HistogramBase::Inconsistency problem) {
113 inconsistencies_unique_histogram_->Add(problem);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
ComposerException.java 24 protected ComposerException(String context, Mark contextMark, String problem, Mark problemMark) {
25 super(context, contextMark, problem, problemMark);
  /external/strace/mpers-m32/
struct_sg_req_info.h 8 char problem; member in struct:__anon30295
  /external/strace/mpers-mx32/
struct_sg_req_info.h 8 char problem; member in struct:__anon30444
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
ParserException.java 32 * Part of the input document in which vicinity the problem
36 * @param problem
37 * Part of the input document that caused the problem.
39 * Position of the <code>problem</code>. within the document.
41 public ParserException(String context, Mark contextMark, String problem, Mark problemMark) {
42 super(context, contextMark, problem, problemMark, null, null);
  /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;
OAuthProblemException.java 25 * Describes an OAuth-related problem, using a set of named parameters. One
26 * parameter identifies the basic problem, and the others provide supplementary
29 * href="http://wiki.oauth.net/ProblemReporting">Problem Reporting
42 public OAuthProblemException(String problem) {
43 super(problem);
44 if (problem != null) {
45 parameters.put(OAUTH_PROBLEM, problem);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
expr-1.s 2 % the known expression evaluation order mismatch 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.
221 problem("ACTION_DOWN but key is already down and this event "
232 problem("ACTION_UP but key was not down.");
241 problem("Invalid action " + KeyEvent.actionToString(action)
273 problem("ACTION_DOWN but trackball is already down.");
283 problem("ACTION_UP but trackball is not down.");
295 problem("Invalid action " + MotionEvent.actionToString(action)
301 problem("Trackball is down but pressure is not greater than 0.")
727 private void problem(String message) { method in class:InputEventConsistencyVerifier
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
crange4.s 1 ! This will be two .cranges. Original problem was that the second one was
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 87 } catch (OAuthProblemException problem) {
88 problem.getParameters().putAll(getDump());
89 throw problem;
  /external/strace/
print_sg_req_info.c 59 ", problem=%hhd"
65 info.problem,
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 182 } catch (UnsupportedEncodingException problem) {
183 throw new IllegalArgumentException(problem);
191 } catch (UnsupportedEncodingException problem) {
192 throw new IllegalArgumentException(problem);
  /build/make/tools/
soong_to_convert.py 80 for (module, problem, dependencies) in reader:
81 problems[module] = problem

Completed in 6985 milliseconds

1 2 3 4 5 6 7 8 91011>>