HomeSort by relevance Sort by last modified time
    Searched refs:problem (Results 1 - 25 of 640) 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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
ProblemTest.java 12 Problem problem = new Problem("Parse error", TokenRange.INVALID, new Exception()); local
14 assertEquals(TokenRange.INVALID, problem.getLocation().get());
15 assertEquals("Parse error", problem.getMessage());
16 assertInstanceOf(Exception.class, problem.getCause().get());
21 Problem problem = new Problem("Parse error", TokenRange.INVALID, null); local
23 assertEquals("(line ?,col ?) Parse error", problem.getVerboseMessage())
28 Problem problem = new Problem("Parse error", null, null); local
    [all...]
  /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/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);
  /system/core/adb/
diagnose_usb.cpp 51 // The user is in plugdev so the problem is likely with the udev rules.
68 std::string problem(GetUdevProblem());
69 if (!problem.empty()) help_text += " (" + problem + ")";
81 std::string problem(GetUdevProblem());
82 if (!problem.empty()) header += ": " + 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;
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);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
TypedValidator.java 22 accept((N) node, new ProblemReporter(problem -> result.getProblems().add(problem))));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
expr-1.s 2 % the known expression evaluation order mismatch problem.
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
ParseProblemException.java 37 private final List<Problem> problems;
39 public ParseProblemException(List<Problem> problems) {
45 this(singletonList(new Problem(throwable.getMessage(), null, throwable)));
48 private static String createMessage(List<Problem> problems) {
50 for (Problem problem : problems) {
51 message.append(problem.toString()).append(EOL);
56 public List<Problem> getProblems() {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
ParseProblemException.java 18 private final List<Problem> problems;
20 ParseProblemException(List<Problem> problems) {
26 this(singletonList(new Problem(throwable.getMessage(), Optional.empty(), Optional.of(throwable))));
29 private static String createMessage(List<Problem> problems) {
31 for(Problem problem: problems){
32 message.append(problem.toString()).append(EOL);
37 public List<Problem> getProblems() {
  /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.27/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/tensorflow/tensorflow/contrib/cmake/
python_sanity_test.py 67 problem = "'" + test.entries_file + "' contains invalid '" + entry + "'"
70 raise AssertionError(problem + "\n" + solution)
81 problem = "'" + test.entries_file + "' is missing '" + path + "'"
83 raise AssertionError(problem + "\n" + solution)
  /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);

Completed in 1214 milliseconds

1 2 3 4 5 6 7 8 91011>>