HomeSort by relevance Sort by last modified time
    Searched full:errors (Results 776 - 800 of 5575) sorted by null

<<31323334353637383940>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t057autoAST.py 847 found, errors = self.execParser(grammar, "decl", "int 34 x=1;",
850 errors)
867 found, errors = self.execParser(grammar, "decl", "int =1;",
869 self.assertEquals(["line 1:4 missing ID at u'='"], errors)
886 found, errors = self.execParser(grammar, "decl", "x=1;",
888 self.assertEquals(["line 1:0 mismatched input u'x' expecting set None"], errors)
903 found, errors = self.execParser(grammar, "a", "abc", expectErrors=True)
904 self.assertEquals(["line 1:3 missing INT at '<EOF>'"], errors)
920 found, errors = self.execParser(grammar, "a", "abc", expectErrors=True)
921 self.assertEquals(["line 1:3 mismatched input '<EOF>' expecting INT"], errors)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
auto-ast.rb 540 result, errors = parse( <<-'END', :decl, 'int 34 x=1;', true )
550 errors.should == [ "line 1:4 extraneous input \"34\" expecting ID" ]
555 result, errors = parse( <<-'END', :decl, 'int =1;', true )
565 errors.should == [ "line 1:4 missing ID at \"=\"" ]
570 result, errors = parse( <<-'END', :decl, 'x=1;', true )
581 errors.should == [ "line 1:0 mismatched input \"x\" expecting set nil" ]
586 result, errors = parse( <<-'END', :a, 'abc', true )
595 errors.should == [ "line 0:-1 missing INT at \"<EOF>\"" ]
600 result, errors = parse( <<-'END', :a, 'abc', true )
610 errors.should == [ "line 0:-1 mismatched input \"<EOF>\" expecting INT"
    [all...]
  /development/testrunner/test_defs/
instrumentation_test.py 26 import errors namespace
101 errors.AbortError: if fatal error occurs
158 except errors.InstrumentationError, errors.DeviceUnresponsiveError:
186 raise errors.AbortError(msg=msg)
207 logger.Log("Tests run: %d, Failures: %d, Errors: %d" %
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 143 * sometimes reports errors that will not actually affect
206 * errors - namely when a developer recompiles xalan.jar on their
257 boolean errors = false;
276 errors |= logFoundJars(v, keyStr);
287 errors = true;
301 return errors;
350 * as having errors
359 boolean errors = false;
378 errors = true;
385 errors = true
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 48 * the error() and fatalError() methods. If it is false, the errors
87 * Retrieve <code>java.io.PrintWriter</code> to which errors are being
105 * are not errors or fatal errors as defined by the XML 1.0
185 * are not errors or fatal errors as defined by the XML 1.0
  /external/chromium/chrome/browser/
page_info_model.cc 48 // Some of what IsCertStatusError classifies as errors we want to show as
133 // HTTP or HTTPS with errors (not warnings).
140 std::vector<SSLErrorInfo> errors; local
142 url, &errors);
143 for (size_t i = 0; i < errors.size(); ++i) {
145 description += errors[i].short_description();
  /external/libnfc-nxp/src/
phLlcNfc.c 72 * \retval Other errors Errors related to the lower layers
103 * \retval Other errors Errors related to the lower layers
135 * \retval Other errors Errors related to the lower layers
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
clnt.h 51 * independent) list of errors.
56 * local errors
64 * remote errors
75 * callrpc & clnt_create errors
82 * rpcbind errors
96 * asynchronous errors
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 51 * independent) list of errors.
56 * local errors
64 * remote errors
75 * callrpc & clnt_create errors
82 * rpcbind errors
96 * asynchronous errors
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 51 * independent) list of errors.
56 * local errors
64 * remote errors
75 * callrpc & clnt_create errors
82 * rpcbind errors
96 * asynchronous errors
  /external/bison/src/
conflicts.c 256 | ERRORS and NERRS can be used to store discovered explicit |
257 | errors. |
261 resolve_sr_conflict (state *s, int ruleno, symbol **errors, int *nerrs)
314 errors[(*nerrs)++] = symbols[i];
324 | conflicts. ERRORS can be used as storage to compute the list of |
329 set_conflicts (state *s, symbol **errors)
350 resolve_sr_conflict (s, i, errors, &nerrs);
354 /* Some tokens have been explicitly made errors. Allocate a
356 state_errs_set (s, nerrs, errors);
390 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors)
389 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); local
    [all...]
  /external/chromium/net/base/
net_error_list.h 8 // This file contains the list of network errors.
12 // 0- 99 System related errors
13 // 100-199 Connection related errors
14 // 200-299 Certificate errors
15 // 300-399 HTTP errors
16 // 400-499 Cache errors
18 // 600-699 FTP errors
19 // 700-799 Certificate manager errors
207 // errors that were most likely caused by a firewall from other access denied
208 // errors. See also ERR_ACCESS_DENIED
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
usearch.h 194 * @param status for errors if it occurs. If pattern or text is NULL, or if
226 * @param status for errors if it occurs. If collator, pattern or text is NULL,
287 * @param status for errors if it occurs
393 * @param status for errors if it occurs
424 * @param status for errors if it occurs. If text is NULL, or textlength is 0
466 * @param status for errors if it occurs
480 * @param status for errors if it occurs. If text is NULL, or textlength is 0
512 * @param status for errors if it occurs
536 * @param status for errors if it occurs
555 * @param status for errors if it occur
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/
optparser.py 46 Style errors:
56 Use filters to configure what errors to report. Filters are specified using
57 a comma-separated list of boolean filter rules. The script reports errors
73 certain types of errors may be handled differently for files in
74 WebKit/gtk/webkit/ (e.g. by suppressing "readability/naming" errors
100 _EPILOG = ("This script can miss errors and does not substitute for "
137 minimum confidence level of style errors to report.
138 The default is 1, which reports all errors.
304 'errors to report. Specify a filter using a comma-'
320 min_confidence_help = ("set the minimum confidence of style errors "
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 99 looking for errors.
191 def __init__(self, fatal, errors):
193 self.errors = errors
196 return '\n'.join(map(str, self.errors))
199 return 'ParseError(fatal=%s, errors=%s)' % (self.fatal, self.errors)
369 raise ParseError(fatal=True, errors=self._errors)
371 raise ParseError(fatal=False, errors=self._non_fatal_errors)
550 for error in match_result.errors
    [all...]
  /development/testrunner/
make_tree.py 22 import errors namespace
101 raise errors.AbortError("%s does not exist" % mk_path)
  /device/generic/goldfish/camera/
EmulatedBaseCamera.h 21 #include <utils/Errors.h>
76 * -EPIPE errors until the camera is reopened.
  /docs/source.android.com/src/source/
known-issues.jd 65 <p><strong>Symptom</strong>: <code>repo init</code> or <code>repo sync</code> fail with http errors,
85 various errors related to not recognizing the hostname. One such
142 <h2 id="build-errors-related-to-using-the-wrong-compiler">Build errors related to using the wrong compiler.</h2>
152 <h2 id="build-errors-caused-by-non-default-tool-settings">Build errors caused by non-default tool settings.</h2>
165 versions) fails on MacOS 10.7 with errors similar to this:
181 versions) on Ubuntu 11.10 and newer fails with errors similar to this:
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognizerSharedState.as 4 * and recover from errors etc... As a separate state object, it can be
28 * one token/tree node is consumed for two errors.
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognizerSharedState.js 2 * and recover from errors etc... As a separate state object, it can be
27 * one token/tree node is consumed for two errors.
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 133 stream.write('<testsuite errors="%(e)d" failures="%(f)d" ' % \
134 { "e": len(self.errors), "f": len(self.failures) })
251 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="0" time="0.000">
265 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
280 self._try_test_run(TestTest, """<testsuite errors="0" failures="1" name="unittest.TestSuite" tests="1" time="0.000">
297 self._try_test_run(TestTest, """<testsuite errors="1" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
314 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
330 self._try_test_run(TestTest, """<testsuite errors="0" failures="0" name="unittest.TestSuite" tests="1" time="0.000">
  /external/apache-http/src/org/apache/http/
ParseException.java 36 * Parse errors when receiving a message will typically trigger
37 * {@link ProtocolException}. Parse errors that do not occur during
  /external/ceres-solver/internal/ceres/
residual_block_utils.h 33 // These are useful for detecting two common class of errors.
41 // evident to the user and can silently generate hard to debug errors.
  /external/chromium/chrome/browser/chromeos/
wm_ipc.h 90 // errors from the X server.
96 // caller is responsible for trapping errors from the X server. If
  /external/chromium/chrome/browser/extensions/
test_extension_prefs.cc 109 std::string errors; local
111 path, location, manifest, Extension::STRICT_ERROR_CHECKS, &errors);

Completed in 859 milliseconds

<<31323334353637383940>>