/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_contentsecuritypolicy_unittest.cc | 9 namespace errors = extensions::manifest_errors; 17 errors::kInsecureContentSecurityPolicy), 19 errors::kInsecureContentSecurityPolicy), 21 errors::kInsecureContentSecurityPolicy),
|
/external/chromium_org/mojo/public/bindings/generators/ |
mojom_pack_tests.py | 16 errors = 0 22 errors += EXPECT_EQ(2, len(ps.packed_fields)) 23 errors += EXPECT_EQ('testfield2', ps.packed_fields[0].field.name) 24 errors += EXPECT_EQ('testfield1', ps.packed_fields[1].field.name) 26 return errors 29 errors = 0 32 errors += EXPECT_EQ(0, len(ps.packed_fields)) 33 return errors 37 errors = 0 41 errors += EXPECT_EQ(1, len(ps.packed_fields) [all...] |
run_mojom_tests.py | 24 errors = 0 25 errors += TestMojom('mojom_tests.py', ['--test']) 26 errors += TestMojom('mojom_data_tests.py', ['--test']) 27 errors += TestMojom('mojom_pack_tests.py', ['--test']) 29 if errors: 31 return errors
|
/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...] |
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...] |
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...] |
quopri_codec.py | 12 def quopri_encode(input, errors='strict'): 15 errors defines the error handling to apply. It defaults to 20 assert errors == 'strict' 28 def quopri_decode(input, errors='strict'): 31 errors defines the error handling to apply. It defaults to 36 assert errors == 'strict' 45 def encode(self, input,errors='strict'): 46 return quopri_encode(input,errors) 47 def decode(self, input,errors='strict'): 48 return quopri_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...] |
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...] |
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...] |
quopri_codec.py | 12 def quopri_encode(input, errors='strict'): 15 errors defines the error handling to apply. It defaults to 20 assert errors == 'strict' 28 def quopri_decode(input, errors='strict'): 31 errors defines the error handling to apply. It defaults to 36 assert errors == 'strict' 45 def encode(self, input,errors='strict'): 46 return quopri_encode(input,errors) 47 def decode(self, input,errors='strict'): 48 return quopri_decode(input,errors) [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
error-warning-count.html | 2 function clickHandler(errors, warnings) 6 for (var i = 0; i < errors; ++i) 16 { errors: 0, warnings: 0 }, 17 { errors: 1, warnings: 0 }, 18 { errors: 2, warnings: 0 }, 19 { errors: 0, warnings: 1 }, 20 { errors: 0, warnings: 2 }, 21 { errors: 1, warnings: 1 }, 22 { errors: 1, warnings: 2 }, 23 { errors: 2, warnings: 1 } [all...] |
/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...] |
/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/chromium_org/chrome/browser/sync/glue/ |
failed_data_types_handler.h | 24 bool UpdateFailedDataTypes(const TypeErrorMap& errors); 26 // Resets the current set of data type errors. 29 // Resets the set of types with cryptographer errors. 32 // Resets those persistence errors that intersect with |purged_types|. 35 // Returns a list of all the errors this class has recorded. 38 // Returns all types with errors. 41 // Returns the types that are failing due to startup or runtime errors. 44 // Returns the types that are failing due to cryptographer errors. 47 // Returns the types that are failing due to persistence errors. 51 // Returns true if there are any types with errors [all...] |
/build/core/ |
apicheck_msg_last.txt | 4 an SDK. Please fix the errors listed above.
|
/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/browser/chromeos/policy/ |
login_screen_power_management_policy_unittest.cc | 41 PolicyErrorMap errors; local 43 EXPECT_FALSE(policy.Init("Invalid JSON!", &errors)); 45 errors.GetErrors(key::kDeviceLoginScreenPowerManagement).empty()); 59 PolicyErrorMap errors; local 63 &errors)); 65 errors.GetErrors(key::kDeviceLoginScreenPowerManagement).empty()); 69 errors.Clear(); 72 &errors)); 74 errors.GetErrors(key::kDeviceLoginScreenPowerManagement).empty()); 78 errors.Clear() 148 PolicyErrorMap errors; local [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.') 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/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));
|