/external/valgrind/main/none/tests/x86/ |
bug126147-x86.stdout.exp | 1 No errors.
|
/external/valgrind/main/drd/tests/ |
pth_barrier2.stderr.exp | 1 ERROR SUMMARY: 32 errors
|
pth_barrier3.stderr.exp | 1 ERROR SUMMARY: 31 errors
|
omp_matinv_racy.stderr.exp | 1 ERROR SUMMARY: 76 errors from 7 contexts
|
omp_prime_racy.stderr.exp | 1 ERROR SUMMARY: 3 errors from 3 contexts
|
pth_barrier.stderr.exp | 1 ERROR SUMMARY: 1 errors from 1 contexts
|
pth_once.stderr.exp | 1 ERROR SUMMARY: 0 errors from 0 contexts
|
tc05_simple_race.stderr.exp | 1 ERROR SUMMARY: 2 errors from 2 contexts
|
tc06_two_races.stderr.exp | 1 ERROR SUMMARY: 4 errors from 4 contexts
|
/external/valgrind/main/tests/ |
post_regtest_checks | 20 errors=0 27 errors=1 35 errors=1 38 exit $errors
|
/external/chromium_org/ppapi/generators/ |
idl_tests.py | 22 errors = 0 23 errors += TestIDL('idl_lexer.py', ['--test']) 24 assert errors == 0 25 errors += TestIDL('idl_parser.py', ['--test']) 26 assert errors == 0 27 errors += TestIDL('idl_c_header.py', []) 28 assert errors == 0 29 errors += TestIDL('idl_c_proto.py', ['--wnone', '--test']) 30 assert errors == 0 31 errors += TestIDL('idl_gen_pnacl.py', ['--wnone', '--test'] [all...] |
/bootable/recovery/edify/ |
main.c | 26 int expect(const char* expr_str, const char* expected, int* errors) { 35 printf("error parsing \"%s\" (%d errors)\n", 37 ++*errors; 51 ++*errors; 62 ++*errors; 72 int errors = 0; local 74 expect("a", "a", &errors); 75 expect("\"a\"", "a", &errors); 76 expect("\"\\x61\"", "a", &errors); 80 "a", &errors); [all...] |
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
errorrules.py | 22 from closure_linter import errors namespace 27 'Whether to report errors for missing JsDoc.') 34 True for all errors except missing documentation errors. For these, 38 errors.MISSING_PARAMETER_DOCUMENTATION, 39 errors.MISSING_RETURN_DOCUMENTATION, 40 errors.MISSING_MEMBER_DOCUMENTATION, 41 errors.MISSING_PRIVATE, 42 errors.MISSING_JSDOC_TAG_THIS)
|
/external/chromium_org/chrome/common/extensions/manifest_tests/ |
extension_manifests_contentsecuritypolicy_unittest.cc | 9 namespace errors = extensions::manifest_errors; 17 errors::kInsecureContentSecurityPolicy), 19 errors::kInsecureContentSecurityPolicy), 21 errors::kInsecureContentSecurityPolicy),
|
extension_manifests_initvalue_unittest.cc | 28 namespace errors = manifest_errors; 38 Testcase("init_invalid_version_missing.json", errors::kInvalidVersion), 39 Testcase("init_invalid_version_invalid.json", errors::kInvalidVersion), 40 Testcase("init_invalid_name_missing.json", errors::kInvalidName), 41 Testcase("init_invalid_name_invalid.json", errors::kInvalidName), 43 errors::kInvalidDescription), 44 Testcase("init_invalid_icons_invalid.json", errors::kInvalidIcons), 45 Testcase("init_invalid_icons_path_invalid.json", errors::kInvalidIconPath), 47 errors::kInvalidLauncherPage), 49 errors::kLauncherPagePageRequired) [all...] |
/external/junit/src/org/junit/runners/model/ |
NoGenericTypeParametersValidator.java | 18 void validate(List<Throwable> errors) { 20 validateNoTypeParameterOnType(each, errors); 23 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) { 25 errors.add(new Exception("Method " + fMethod.getName() 28 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors); 30 validateNoTypeParameterOnWildcardType((WildcardType) type, errors); 32 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors); 36 List<Throwable> errors) { 38 validateNoTypeParameterOnType(each, errors); 42 List<Throwable> errors) { 51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors); local [all...] |
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/ |
run_tests.py | 24 errors = 0 25 errors += TestMojom('data_tests.py', ['--test']) 26 errors += TestMojom('module_tests.py', ['--test']) 27 errors += TestMojom('pack_tests.py', ['--test']) 29 if errors: 31 return min(errors, 127) # Make sure the return value doesn't "wrap".
|
pack_tests.py | 18 errors = 0 24 errors += EXPECT_EQ(2, len(ps.packed_fields)) 25 errors += EXPECT_EQ('testfield2', ps.packed_fields[0].field.name) 26 errors += EXPECT_EQ('testfield1', ps.packed_fields[1].field.name) 28 return errors 31 errors = 0 34 errors += EXPECT_EQ(0, len(ps.packed_fields)) 35 return errors 39 errors = 0 43 errors += EXPECT_EQ(1, len(ps.packed_fields) [all...] |
/external/e2fsprogs/lib/e2p/ |
pe.c | 2 * pe.c - Print a second extended filesystem errors behavior 23 void print_fs_errors (FILE * f, unsigned short errors) 25 switch (errors)
|
/external/junit/src/org/junit/internal/runners/ |
InitializationError.java | 15 public InitializationError(List<Throwable> errors) { 16 fErrors= errors; 19 public InitializationError(Throwable... errors) { 20 this(Arrays.asList(errors));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
bz2_codec.py | 15 def bz2_encode(input,errors='strict'): 20 errors defines the error handling to apply. It defaults to 25 assert errors == 'strict' 29 def bz2_decode(input,errors='strict'): 38 errors defines the error handling to apply. It defaults to 43 assert errors == 'strict' 49 def encode(self, input, errors='strict'): 50 return bz2_encode(input, errors) 51 def decode(self, input, errors='strict'): 52 return bz2_decode(input, errors) [all...] |
zlib_codec.py | 14 def zlib_encode(input,errors='strict'): 19 errors defines the error handling to apply. It defaults to 24 assert errors == 'strict' 28 def zlib_decode(input,errors='strict'): 37 errors defines the error handling to apply. It defaults to 42 assert errors == 'strict' 48 def encode(self, input, errors='strict'): 49 return zlib_encode(input, errors) 50 def decode(self, input, errors='strict'): 51 return zlib_decode(input, errors) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
bz2_codec.py | 15 def bz2_encode(input,errors='strict'): 20 errors defines the error handling to apply. It defaults to 25 assert errors == 'strict' 29 def bz2_decode(input,errors='strict'): 38 errors defines the error handling to apply. It defaults to 43 assert errors == 'strict' 49 def encode(self, input, errors='strict'): 50 return bz2_encode(input, errors) 51 def decode(self, input, errors='strict'): 52 return bz2_decode(input, errors) [all...] |
zlib_codec.py | 14 def zlib_encode(input,errors='strict'): 19 errors defines the error handling to apply. It defaults to 24 assert errors == 'strict' 28 def zlib_decode(input,errors='strict'): 37 errors defines the error handling to apply. It defaults to 42 assert errors == 'strict' 48 def encode(self, input, errors='strict'): 49 return zlib_encode(input, errors) 50 def decode(self, input, errors='strict'): 51 return zlib_decode(input, errors) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
PRESUBMIT.py | 37 errors = [] 39 errors.append(output_api.PresubmitError(errorText)) 40 return errors
|