Searched defs:errors (Results 26 - 50 of 315) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/android_testrunner/
H A Drun_command.py27 import errors namespace
57 except errors.WaitForResponseTimedOutError:
78 errors.WaitForResponseTimedOutError if command did not complete within
80 errors.AbortError is command returned error code and SetAbortOnError is on.
137 raise errors.WaitForResponseTimedOutError
141 raise errors.AbortError(msg=output)
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Daliaspass_test.py26 from closure_linter import errors namespace
52 self.assertEquals(errors.INVALID_USE_OF_GOOG_SCOPE, alias_error.code)
98 self.assertEquals(errors.INVALID_USE_OF_GOOG_SCOPE, error.code)
102 self.assertEquals(errors.EXTRA_GOOG_SCOPE_USAGE, error.code)
106 self.assertEquals(errors.EXTRA_GOOG_SCOPE_USAGE, error.code)
H A Derrorrules_test.py26 from closure_linter import errors namespace
61 expected = [errors.LINE_TOO_LONG, errors.LINE_TOO_LONG]
84 expected = [errors.GOOG_REQUIRES_NOT_ALPHABETIZED,
85 errors.FILE_MISSING_NEWLINE]
H A Dfull_test.py34 from closure_linter import errors namespace
115 errors.ByName))
H A Dnot_strict_test.py19 Tests errors that can be thrown by gjslint when not in strict mode.
31 from closure_linter import errors namespace
70 errors.ByName))
H A Drunner_test.py28 from closure_linter import errors namespace
57 err.code is errors.FILE_NOT_FOUND and
75 err.code is errors.FILE_IN_BLOCK and
/external/chromium_org/third_party/icu/source/common/unicode/
H A Didna.h96 * The label might be modified according to the types of errors.
97 * Labels with severe errors will be left in (or turned into) their Unicode form.
119 * The label might be modified according to the types of errors.
142 * The domain name might be modified according to the types of errors.
143 * Labels with severe errors will be left in (or turned into) their Unicode form.
165 * The domain name might be modified according to the types of errors.
262 * Output container for IDNA processing errors.
272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
274 * Were there IDNA processing errors?
275 * @return TRUE if there were processing errors
314 uint32_t errors, labelErrors; member in class:IDNAInfo
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dfilename_test.cc47 static const char* errors[] = { local
71 for (int i = 0; i < sizeof(errors) / sizeof(errors[0]); i++) {
72 std::string f = errors[i];
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops_unittest.cc358 vector<string> errors; local
359 ReflectionOps::FindInitializationErrors(message, "", &errors);
360 return JoinStrings(errors, ",");
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A Dxmlrpctransport.py20 import tlslite.errors namespace
/external/chromium_org/v8/tools/
H A Drun-valgrind.py50 errors = process.stderr.readlines(); variable
54 sys.stderr.writelines(errors)
63 for line in errors:
67 sys.stderr.writelines(errors)
72 sys.stderr.writelines(errors)
/external/deqp/scripts/
H A Dcheck_redundant_include_guards.py17 errors = []
27 errors.append("Invalid redundant include guard around line %d:" % lineNumber)
28 errors.append("guard is %s but included file is %s" % (ifndefName, includeName))
34 return errors
56 parser.add_option("-q", "--quiet", action="store_true", dest="quiet", default=False, help="only print files with errors")
71 errors = getRedundantIncludeGuardErrors(file) variable
72 if errors:
75 for err in errors:
/external/gtest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const std::string& errors_str = errors.GetString();
/external/icu/icu4c/source/common/unicode/
H A Didna.h96 * The label might be modified according to the types of errors.
97 * Labels with severe errors will be left in (or turned into) their Unicode form.
119 * The label might be modified according to the types of errors.
142 * The domain name might be modified according to the types of errors.
143 * Labels with severe errors will be left in (or turned into) their Unicode form.
165 * The domain name might be modified according to the types of errors.
262 * Output container for IDNA processing errors.
272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
274 * Were there IDNA processing errors?
275 * @return TRUE if there were processing errors
314 uint32_t errors, labelErrors; member in class:IDNAInfo
[all...]
/external/junit/src/org/junit/rules/
H A DErrorCollector.java36 private List<Throwable> errors= new ArrayList<Throwable>(); field in class:ErrorCollector
40 MultipleFailureException.assertEmpty(errors);
47 errors.add(error);
/external/junit/src/org/junit/runners/model/
H A DInitializationError.java15 * errors {@code errors} as causes
17 public InitializationError(List<Throwable> errors) { argument
18 fErrors= errors;
H A DMultipleFailureException.java17 public MultipleFailureException(List<Throwable> errors) { argument
18 fErrors= new ArrayList<Throwable>(errors);
28 String.format("There were %d errors:", fErrors.size()));
41 * @param errors list to check
45 public static void assertEmpty(List<Throwable> errors) throws Throwable { argument
46 if (errors.isEmpty())
48 if (errors.size() == 1)
49 throw errors.get(0);
58 throw new org.junit.internal.runners.model.MultipleFailureException(errors);
/external/libvorbis/test/
H A Dtest.c40 int errors = 0 ; local
63 errors ++ ;
73 if (errors)
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
/external/mesa3d/src/gtest/src/
H A Dgtest-typed-test.cc60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
/external/protobuf/gtest/src/
H A Dgtest-typed-test.cc48 Message errors; local
54 errors << "Test " << name << " is listed more than once.\n";
71 errors << "No test named " << name
80 errors << "You forgot to list test " << *it << ".\n";
84 const String& errors_str = errors.GetString();
/external/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc182 vector<string> errors; local
187 errors = log.GetMessages(ERROR);
190 ASSERT_EQ(1, errors.size());
193 errors[0]);
236 vector<string> errors; local
237 message.FindInitializationErrors(&errors);
238 ASSERT_EQ(3, errors.size());
239 EXPECT_EQ("a", errors[0]);
240 EXPECT_EQ("b", errors[1]);
241 EXPECT_EQ("c", errors[
[all...]
H A Dreflection_ops_unittest.cc358 vector<string> errors; local
359 ReflectionOps::FindInitializationErrors(message, "", &errors);
360 return JoinStrings(errors, ",");
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesticonv.c37 int errors = 0; local
58 ++errors;
72 return (errors ? errors + 1 : 0);

Completed in 272 milliseconds

1234567891011>>