HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 26 - 50 of 195) sorted by null

12 3 4 5 6 7 8

  /development/testrunner/test_defs/
test_defs.py 25 import errors namespace
59 raise errors.ParseError
62 raise errors.ParseError
63 except errors.ParseError, e:
87 raise errors.ParseError(msg=error_msg)
host_test.py 23 import errors namespace
87 errors.AbortError: if fatal error occurs
99 raise errors.AbortError(msg="Could not find jar %s" % path)
  /external/gtest/test/
gtest_xml_output_unittest.py 51 <testsuite tests="13" failures="2" disabled="2" errors="0" time="*" name="AllTests">
52 <testsuite name="SuccessfulTest" tests="1" failures="0" disabled="0" errors="0" time="*">
55 <testsuite name="FailedTest" tests="1" failures="1" disabled="0" errors="0" time="*">
62 <testsuite name="MixedResultTest" tests="3" failures="1" disabled="1" errors="0" time="*">
74 <testsuite name="DisabledTest" tests="1" failures="0" disabled="1" errors="0" time="*">
77 <testsuite name="PropertyRecordingTest" tests="4" failures="0" disabled="0" errors="0" time="*">
83 <testsuite name="NoFixtureTest" tests="3" failures="0" disabled="0" errors="0" time="*">
92 <testsuite tests="0" failures="0" disabled="0" errors="0" time="*" name="AllTests">
  /bionic/libc/tools/
checksyscalls.py 149 errors = 0 variable
156 errors += 1
159 errors += 1
167 errors += 1
170 errors += 1
172 if errors == 0:
175 print "correct %d errors !!" % errors
  /external/dbus/dbus/
dbus-keyring.h 27 #include <dbus/dbus-errors.h>
dbus-resources.h 27 #include <dbus/dbus-errors.h>
dbus-sha.h 27 #include <dbus/dbus-errors.h>
dbus-signature.h 32 #include <dbus/dbus-errors.h>
dbus-spawn.h 29 #include <dbus/dbus-errors.h>
dbus.h 33 #include <dbus/dbus-errors.h>
  /external/freetype/include/freetype/internal/
ftrfork.h 62 /* offset (offsets[N]), and an error code (errors[N]). */
86 /* errors :: */
87 /* An array of FreeType error codes. `errors[N]' is the error */
88 /* code of Nth guessing rule function. If `errors[N]' is not */
97 FT_Error* errors );
  /external/opencore/oscl/unit_test/src/
text_test_interpreter.cpp 68 text_test_interpreter::errors(const test_result& result) const function in class:text_test_interpreter
70 _STRING Result("Errors: ");
71 _APPEND(Result, _yak_itoa(result.errors().size()));
73 _APPEND(Result, problem_vector_string(result.errors()));
113 _APPEND(Result, errors(result_to_interpret));
  /external/wpa_supplicant_6/wpa_supplicant/
config_winreg.c 59 int errors = 0; local
104 errors++;
111 errors++;
122 return errors ? -1 : 0;
210 int errors = 0; local
232 errors++;
241 errors++;
253 errors++;
258 return errors ? -1 : 0;
269 int errors = 0 local
363 int errors = 0; local
428 int errors = 0; local
589 int i, errors = 0; local
786 int i, errors = 0; local
934 int errors = 0; local
    [all...]
  /development/testrunner/
adb_interface.py 29 import errors namespace
214 raise errors.InstrumentationError("no test results... device setup "
222 raise errors.InstrumentationError(short_msg_result)
226 raise errors.DeviceUnresponsiveError
318 raise errors.WaitForResponseTimedOutError(
345 except errors.AbortError, e:
356 raise errors.WaitForResponseTimedOutError()
374 except errors.AbortError, e:
coverage_targets.py 22 import errors namespace
54 errors.ParseError if file_path cannot be parsed
61 raise errors.ParseError
64 raise errors.ParseError
run_command.py 26 import errors namespace
56 except errors.WaitForResponseTimedOutError:
77 errors.WaitForResponseTimedOutError if command did not complete within
79 errors.AbortError is command returned error code and SetAbortOnError is on.
138 raise errors.WaitForResponseTimedOutError
145 raise errors.AbortError(msg=output)
  /external/wpa_supplicant/
config_winreg.c 54 int errors = 0; local
99 errors++;
106 errors++;
117 return errors ? -1 : 0;
166 int errors = 0; local
187 errors++;
194 return errors ? -1 : 0;
205 int errors = 0; local
253 errors++;
262 errors++
297 int errors = 0; local
362 int errors = 0; local
501 int i, errors = 0; local
698 int i, errors = 0; local
838 int errors = 0; local
    [all...]
config_file.c 98 int errors = 0; local
104 errors++;
112 errors++;
125 return errors;
132 int errors = 0, end = 0; local
154 errors++;
163 errors++;
169 errors++;
175 errors++;
178 errors += wpa_config_validate_network(ssid, *line)
249 int errors = 0, line = 0; local
    [all...]
  /build/tools/
merge-event-log-tags.py 35 errors = [] variable
120 errors.extend(tagfile.errors)
123 if errors:
124 for fn, ln, msg in errors:
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
XmlReportPrinter.java 57 private static final String ATTR_ERRORS = "errors";
96 populateFailures(true, result.errors());
103 private void populateFailures(boolean errors, Enumeration<TestFailure> failures) {
114 if (errors) {
115 suite.errors.put(test, failure);
164 private final Map<TestId, TestFailure> errors = new HashMap<TestId, TestFailure>(); field in class:XmlReportPrinter.Suite
175 serializer.attribute(ns, ATTR_ERRORS, Integer.toString(errors.size()));
184 TestFailure error = errors.get(testId);
  /external/bison/src/
conflicts.c 180 | ERRORS can be used to store discovered explicit errors. |
184 resolve_sr_conflict (state *s, int ruleno, symbol **errors)
238 errors[nerrs++] = symbols[i];
245 /* Some tokens have been explicitly made errors. Allocate a
247 state_errs_set (s, nerrs, errors);
261 | conflicts. ERRORS can be used as storage to compute the list of |
266 set_conflicts (state *s, symbol **errors)
286 resolve_sr_conflict (s, i, errors);
310 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors)
309 symbol **errors = xnmalloc (ntokens + 1, sizeof *errors); local
    [all...]
  /external/icu4c/i18n/
regexcst.pl 192 $errors++;
196 $errors++;
200 die if ($errors>0);
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
InstrumentationTestSuiteBuilderTest.java 77 private Set<String> errors = new HashSet<String>(); field in class:InstrumentationTestSuiteBuilderTest.SuiteExecutionRecorder
81 errors.add(testName(test));
104 return errors.contains(testName);
UnitTestSuiteBuilderTest.java 70 private Set<String> errors = new HashSet<String>(); field in class:UnitTestSuiteBuilderTest.SuiteExecutionRecorder
74 errors.add(testName(test));
97 return errors.contains(testName);
  /external/qemu/block/
qcow2-refcount.c 587 * Returns the number of errors in the image that were found
597 int errors = 0; local
610 errors++;
615 errors++;
620 return errors;
628 * Returns the number of errors found by the checks or -errno if an internal
638 int errors = 0; local
658 errors++;
665 errors += inc_refcounts(bs, refcount_table,
677 errors++
723 int errors = 0; local
799 int ret, errors = 0; local
    [all...]

Completed in 769 milliseconds

12 3 4 5 6 7 8