HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 426 - 450 of 3032) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternLexer.java 55 public boolean error = false; field in class:TreePatternLexer
120 error = true;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince54Integrator.java 74 /** Error array, element 1. */
79 /** Error array, element 3. */
82 /** Error array, element 4. */
85 /** Error array, element 5. */
88 /** Error array, element 6. */
91 /** Error array, element 7. */
100 * @param scalAbsoluteTolerance allowed absolute error
101 * @param scalRelativeTolerance allowed relative error
116 * @param vecAbsoluteTolerance allowed absolute error
117 * @param vecRelativeTolerance allowed relative error
138 double error = 0; local
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 48 em.error(null, new NullPointerException(), ErrorManager.GENERIC_FAILURE);
49 em.error("An error message.", null, ErrorManager.GENERIC_FAILURE);
50 em.error(null, null, ErrorManager.GENERIC_FAILURE);
  /external/apache-http/android/src/android/net/http/
EventHandler.java 24 * there is an SSL certificate error. error() can occur anywhere
31 * Error codes used in the error() callback. Positive error codes
32 * are reserved for codes sent by http servers. Negative error
38 /** Generic error */
39 public static final int ERROR = -1;
62 /** Generic file error for file:/// loads */
64 /** File not found error for file:/// loads *
117 public void error(int id, String description); method in interface:EventHandler
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 70 handler.error(msg, new SAXException(msg));
87 handler.error(msg, new SAXException(msg));
134 handler.error(msg, new SAXException(msg));
154 handler.error(msg, new SAXException(msg));
ProcessorTemplateElem.java 71 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, ie);//"Failed creating ElemTemplateElement instance!", ie);
75 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, iae);//"Failed creating ElemTemplateElement instance!", iae);
104 if(null != parent) // defensive, for better multiple error reporting. -sb
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttribute.java 87 // element pending, it is an error.
253 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemAttributeSet.java 154 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemPI.java 215 error(XSLTErrorResources.ER_CANNOT_ADD, method
FuncFormatNumb.java 67 ss.error(XSLTErrorResources.ER_CURRENCY_SIGN_ILLEGAL); // currency sign not allowed
134 templElem.error(XSLTErrorResources.ER_MALFORMED_FORMAT_STRING,
150 * the error condition is severe enough to halt processing.
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncId.java 114 error(xctxt, XPATHErrorResources.ER_CONTEXT_HAS_NO_OWNERDOC, null); method
  /external/boringssl/src/crypto/pem/
pem_info.c 100 long len,error=0; local
125 error=ERR_GET_REASON(ERR_peek_last_error());
126 if (error == PEM_R_NO_START_LINE)
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.cc 63 string* error) {
172 // TODO(sameeragarwal): Better error handling. Right now we
211 string error; local
214 Evaluator::Create(evaluator_options_, program, &error));
solver_test.cc 49 string error; local
50 EXPECT_TRUE(options.IsValid(&error)) << error;
56 string error; local
57 EXPECT_TRUE(options.IsValid(&error)) << error;
  /external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/
checkerbase.py 31 from closure_linter.common import error namespace
39 'Whether to show error exceptions.')
129 """Prints out the given error message including a line number.
132 code: The error code.
133 message: The error to print.
134 token: The token where the error occurred, or None if it was a file-wide
136 position: The position of the error, defaults to None.
137 fix_data: Metadata used for fixing the error.
141 error.Error(code, message, token, position, fix_data)
    [all...]
javascriptlintrules.py 36 from closure_linter.common import error namespace
40 Error = error.Error
393 # Don't report an error before a start bracket - it will be reported
423 """Reports missing provide statements to the error handler.
428 token: The token where the error was detected (also where the new provides
443 """Reports missing require statements to the error handler.
448 token: The token where the error was detected (also where the new requires
468 # Report an error for any declared private member that was never used
    [all...]
  /external/compiler-rt/test/builtins/Unit/ppc/
qadd_test.c 116 int error; local
122 error = 1;
124 error = 1;
126 error = 0;
130 error = memcmp(&c, &r, sizeof(DD));
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
135 if (error) {
136 printf("Error on edge case %a + %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
1827 double error = __builtin_fabs(((r.hi - c.hi) + r.lo) - c.lo); local
    [all...]
qdiv_test.c 116 int error; local
122 error = 1;
124 error = 1;
126 error = 0;
130 error = memcmp(&c, &r, sizeof(DD));
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
135 if (error) {
136 printf("Error on edge case %a / %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
750 double error = __builtin_fabs(((r.hi - c.hi) + r.lo) - c.lo); local
    [all...]
qmul_test.c 116 int error; local
122 error = 1;
124 error = 1;
126 error = 0;
130 error = memcmp(&c, &r, sizeof(DD));
133 error = ((c.hi != r.hi) || (c.lo != r.lo));
135 if (error) {
136 printf("Error on edge case %a x %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
748 double error = __builtin_fabs(((r.hi - c.hi) + r.lo) - c.lo); local
    [all...]
qsub_test.c 116 int error; local
124 error = 1;
126 error = 1;
128 error = 0;
132 error = memcmp(&c, &r, sizeof(DD));
135 error = ((c.hi != r.hi) || (c.lo != r.lo));
137 if (error) {
138 printf("Error on edge case %a - %a: expected (%a, %a), got (%a, %a).\n", a.hi, b.hi, r.hi, r.lo, c.hi, c.lo);
1829 double error = __builtin_fabs(((r.hi - c.hi) + r.lo) - c.lo); local
    [all...]
  /external/deqp/framework/delibs/destream/
deFileStream.c 31 const char* error; member in struct:FileStream_s
50 fileStream->error = "deFile: DE_FILERESULT_ERROR";
60 fileStream->error = "Uknown: DE_FILERESULT";
82 fileStream->error = "deFile: DE_FILERESULT_ERROR";
92 fileStream->error = "Uknown: DE_FILERESULT";
102 /* \note [mika] There is only error reporting through return value in deFile */
103 return fileStream->error;
172 fileStream->error = DE_NULL;
192 fileStream->error = DE_NULL;
212 fileStream->error = DE_NULL
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSampleVariableTests.cpp 205 bool error = false; local
223 error = true;
228 if (error)
237 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask.getAccess())
248 return !error;
639 // encode the position to the output, use red channel as error channel
674 // check there is nothing in the error channel
707 // shader does the check, just check the shader error output (red)
771 << "Omitted " << (printCount-printFloodLimit) << " error descriptions."
777 << tcu::TestLog::Image("ErrorMask", "Error Mask", errorMask.getAccess()
    [all...]
  /external/doclava/src/com/google/doclava/
AttributeInfo.java 53 Errors.error(Errors.BAD_ATTR_TAG, attrField.position(), mName + " referenced as an attribute,"
TagInfo.java 91 Errors.error(Errors.BAD_INHERITDOC, t.mPosition,
  /external/e2fsprogs/contrib/
fallocate.c 95 int error; local
124 printf("Error: no length argument specified\n");
129 printf("Error: invalid length value specified\n");
134 printf("Error: invalid offset value specified\n");
149 printf("Error: no filename specified\n");
158 perror("Error opening file");
163 error = ftruncate(fd, length);
165 error = syscall(SYS_fallocate, fd, falloc_mode, offset, length);
167 if (error < 0) {

Completed in 397 milliseconds

<<11121314151617181920>>