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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_web_unittest.cc 16 namespace errors = extensions::manifest_errors;
20 Testcase("web_urls_wrong_type.json", errors::kInvalidWebURLs),
23 errors::kInvalidWebURL,
25 errors::kExpectString)),
28 errors::kInvalidWebURL,
34 errors::kInvalidWebURL,
36 errors::kNoWildCardsInPaths)),
39 errors::kInvalidWebURL,
41 errors::kCannotClaimAllURLsInExtent)),
44 errors::kInvalidWebURL
    [all...]
extension_manifests_launch_unittest.cc 16 namespace errors = manifest_errors;
44 Testcase("launch_window.json", errors::kInvalidLaunchContainer),
46 errors::kInvalidLaunchContainer),
48 errors::kInvalidLaunchContainer),
50 errors::kLaunchURLRequired),
53 errors::kInvalidLaunchValueContainer,
57 errors::kInvalidLaunchValue,
61 errors::kInvalidLaunchValueContainer,
65 errors::kInvalidLaunchValue,
75 errors::kLaunchPathAndURLAreExclusive)
    [all...]
extension_manifests_about_unittest.cc 10 namespace errors = extensions::manifest_errors;
23 errors::kInvalidAboutPage),
27 errors::kInvalidAboutPageExpectRelativePath)};
extension_manifests_experimental_unittest.cc 14 namespace errors = extensions::manifest_errors;
17 LoadAndExpectError("experimental.json", errors::kExperimentalFlagRequired);
extension_manifests_isolatedapp_unittest.cc 16 namespace errors = manifest_errors;
24 errors::kExperimentalFlagRequired);
  /external/junit/src/org/junit/runners/model/
MultipleFailureException.java 17 public MultipleFailureException(List<Throwable> errors) {
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 {
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/junit/src/org/junit/internal/runners/rules/
RuleFieldValidator.java 15 * {@code TestClass} are written to a list of errors.
43 * for rejecting the class to a list of errors.
45 * @param errors the list of errors.
47 public void validate(TestClass target, List<Throwable> errors) {
50 validateField(each, errors);
53 private void validateField(FrameworkField field, List<Throwable> errors) {
54 optionallyValidateStatic(field, errors);
55 validatePublic(field, errors);
56 validateTestRuleOrMethodRule(field, errors);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping
    [all...]
base64_codec.py 13 def base64_encode(input,errors='strict'):
18 errors defines the error handling to apply. It defaults to
23 assert errors == 'strict'
27 def base64_decode(input,errors='strict'):
36 errors defines the error handling to apply. It defaults to
41 assert errors == 'strict'
47 def encode(self, input,errors='strict'):
48 return base64_encode(input,errors)
49 def decode(self, input,errors='strict'):
50 return base64_decode(input,errors)
    [all...]
hex_codec.py 13 def hex_encode(input,errors='strict'):
18 errors defines the error handling to apply. It defaults to
23 assert errors == 'strict'
27 def hex_decode(input,errors='strict'):
36 errors defines the error handling to apply. It defaults to
41 assert errors == 'strict'
47 def encode(self, input,errors='strict'):
48 return hex_encode(input,errors)
49 def decode(self, input,errors='strict'):
50 return hex_decode(input,errors)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
charmap.py 25 def __init__(self, errors='strict', mapping=None):
26 codecs.IncrementalEncoder.__init__(self, errors)
30 return codecs.charmap_encode(input, self.errors, self.mapping)[0]
33 def __init__(self, errors='strict', mapping=None):
34 codecs.IncrementalDecoder.__init__(self, errors)
38 return codecs.charmap_decode(input, self.errors, self.mapping)[0]
42 def __init__(self,stream,errors='strict',mapping=None):
43 codecs.StreamWriter.__init__(self,stream,errors)
46 def encode(self,input,errors='strict'):
47 return Codec.encode(input,errors,self.mapping
    [all...]
base64_codec.py 13 def base64_encode(input,errors='strict'):
18 errors defines the error handling to apply. It defaults to
23 assert errors == 'strict'
27 def base64_decode(input,errors='strict'):
36 errors defines the error handling to apply. It defaults to
41 assert errors == 'strict'
47 def encode(self, input,errors='strict'):
48 return base64_encode(input,errors)
49 def decode(self, input,errors='strict'):
50 return base64_decode(input,errors)
    [all...]
hex_codec.py 13 def hex_encode(input,errors='strict'):
18 errors defines the error handling to apply. It defaults to
23 assert errors == 'strict'
27 def hex_decode(input,errors='strict'):
36 errors defines the error handling to apply. It defaults to
41 assert errors == 'strict'
47 def encode(self, input,errors='strict'):
48 return hex_encode(input,errors)
49 def decode(self, input,errors='strict'):
50 return hex_decode(input,errors)
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
errorrules.py 22 from closure_linter import errors namespace
27 'Whether to report errors for missing JsDoc.')
50 True for all errors except missing documentation errors and disabled
51 errors. For missing documentation, it returns the value of the
67 errors.MISSING_PARAMETER_DOCUMENTATION,
68 errors.MISSING_RETURN_DOCUMENTATION,
69 errors.MISSING_MEMBER_DOCUMENTATION,
70 errors.MISSING_PRIVATE,
71 errors.MISSING_JSDOC_TAG_THIS)) an
    [all...]
  /external/doclava/test/doclava/
ApiCheckTest.java 19 import com.google.doclava.Errors;
20 import com.google.doclava.Errors.Error;
21 import com.google.doclava.Errors.ErrorMessage;
31 * Clear all errors and make sure all future errors will be recorded.
34 Errors.clearErrors();
35 for (Errors.Error error : Errors.ERRORS) {
36 Errors.setErrorLevel(error.code, Errors.ERROR)
61 Iterator<ErrorMessage> errors = report.errors().iterator(); local
74 Iterator<ErrorMessage> errors = report.errors().iterator(); local
    [all...]
  /external/libexif/test/
test-integers.c 43 errors++; \
55 unsigned int errors = 0; local
63 return (errors>0)?1:0;
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
module_tests.py 26 errors = 0
27 errors += RunTest(BuildAndTestModule)
28 errors += RunTest(TestModulesEqual)
30 return errors
  /external/valgrind/main/drd/tests/
threaded-fork.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
annotate_hbefore.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
annotate_rwlock.stderr.exp 4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
annotate_sem.stderr.exp 4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
annotate_smart_pointer.stderr.exp 4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/chromium_org/tools/android/checkstyle/
checkstyle.py 50 errors = stdout.splitlines()
52 if errors and errors[0] == 'Starting audit...':
53 del errors[0]
54 if errors and errors[-1] == 'Audit done.':
55 del errors[-1]
58 errors = [x for x in errors if 'warning: ' not in x]
59 if not errors
    [all...]
  /external/wpa_supplicant_8/src/utils/
utils_module_tests.c 44 int errors = 0; local
58 errors++;
66 errors++;
74 errors++;
83 errors++;
87 if (errors) {
88 wpa_printf(MSG_ERROR, "%d printf test(s) failed", errors);
100 int errors = 0; local
110 errors++;
112 errors++
185 int errors = 0; local
    [all...]
  /external/junit/src/org/junit/internal/runners/model/
MultipleFailureException.java 9 public MultipleFailureException(List<Throwable> errors) {
10 super(errors);

Completed in 670 milliseconds

12 3 4 5 6 7 8 91011>>