HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 326 - 350 of 1660) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
undefined.py 18 def encode(self,input,errors='strict'):
21 def decode(self,input,errors='strict'):
unicode_escape.py 22 return codecs.unicode_escape_encode(input, self.errors)[0]
26 return codecs.unicode_escape_decode(input, self.errors)[0]
unicode_internal.py 22 return codecs.unicode_internal_encode(input, self.errors)[0]
26 return codecs.unicode_internal_decode(input, self.errors)[0]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
unicodeobject.h 142 produce different external names and thus cause import errors in
444 decoding if the errors argument is set to "replace". Note: the
536 const char *errors /* error handling */
624 Many of these APIs take two arguments encoding and errors. These
625 parameters encoding and errors have the same semantics as the ones
630 Error handling is set by errors which may also be set to NULL
689 const char *errors /* error handling */
699 const char *errors /* error handling */
708 const char *errors /* error handling */
717 const char *errors /* error handling *
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
raw_unicode_escape.py 22 return codecs.raw_unicode_escape_encode(input, self.errors)[0]
26 return codecs.raw_unicode_escape_decode(input, self.errors)[0]
string_escape.py 17 return codecs.escape_encode(input, self.errors)[0]
21 return codecs.escape_decode(input, self.errors)[0]
undefined.py 18 def encode(self,input,errors='strict'):
21 def decode(self,input,errors='strict'):
unicode_escape.py 22 return codecs.unicode_escape_encode(input, self.errors)[0]
26 return codecs.unicode_escape_decode(input, self.errors)[0]
unicode_internal.py 22 return codecs.unicode_internal_encode(input, self.errors)[0]
26 return codecs.unicode_internal_decode(input, self.errors)[0]
  /external/chromium_org/chrome/browser/profiles/
incognito_mode_policy_handler.cc 25 PolicyErrorMap* errors) {
35 errors->AddError(key::kIncognitoModeAvailability,
41 errors->AddError(key::kIncognitoModeAvailability,
51 errors->AddError(key::kIncognitoEnabled,
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service.h 16 // This service manages a list of errors that are meant to be shown globally.
18 // error should be shown using this service. Examples of global errors are:
23 // Type used to represent the list of currently active errors.
31 // Adds the given error to the list of global errors and displays it on
37 // Hides the given error and removes it from the list of global errors. Caller
53 // Gets all errors.
54 const GlobalErrorList& errors() { return errors_; } function in class:GlobalErrorService
  /external/chromium_org/chrome/common/extensions/docs/server2/
test_object_store.py 51 errors = []
56 errors.append('%s: expected %s got %s' % (desc, expected, actual))
58 return (len(errors) == 0, ', '.join(errors))
test_servlet.py 61 errors, content = link_tester.TestBrokenLinks()
63 errors, content = link_tester.TestOrphanedPages()
67 errors = link_errors + orphaned_errors
70 if errors:
  /external/chromium_org/extensions/common/manifest_handlers/
web_accessible_resources_info.cc 18 namespace errors = manifest_errors;
70 *error = base::ASCIIToUTF16(errors::kInvalidWebAccessibleResourcesList);
77 errors::kInvalidWebAccessibleResource, base::IntToString(i));
83 errors::kInvalidURLPatternError, extension->url().spec());
  /external/chromium_org/media/audio/
simple_sources.h 36 int errors() { return errors_; } function in class:media::SineWaveAudioSource
simple_sources_unittest.cc 31 EXPECT_EQ(0, source.errors());
67 EXPECT_EQ(0, source.errors());
73 EXPECT_EQ(1, source.errors());
75 EXPECT_EQ(2, source.errors());
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
__init__.py 28 from errors import *
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm-options.c 48 int errors = 0, warnings = 0; local
72 errors++;
94 errors++;
99 return errors;
  /external/protobuf/src/google/protobuf/
reflection_ops.h 69 vector<string>* errors);
  /external/valgrind/main/memcheck/tests/
describe-block.stderr.exp 14 For counts of detected and suppressed errors, rerun with: -v
15 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
  /external/valgrind/main/none/tests/x86/
bug126147-x86.c 117 size_t errors = 0; variable
126 ++errors;
190 if (errors == 0)
192 printf("No errors.\n");
196 printf("%d errors.\n", (int)errors);
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
error_fixer.py 24 from closure_linter import errors namespace
53 """Object that fixes simple style errors."""
60 instead of overwriting the files the errors are found in.
69 """Notifies this ErrorPrinter that subsequent errors are in filename.
102 if code == errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL:
121 elif code == errors.JSDOC_MISSING_OPTIONAL_TYPE:
134 elif code in (errors.MISSING_SEMICOLON_AFTER_FUNCTION,
135 errors.MISSING_SEMICOLON):
143 elif code in (errors.ILLEGAL_SEMICOLON_AFTER_FUNCTION,
144 errors.REDUNDANT_SEMICOLON
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
error_fixer.py 24 from closure_linter import errors namespace
53 """Object that fixes simple style errors."""
60 instead of overwriting the files the errors are found in.
69 """Notifies this ErrorPrinter that subsequent errors are in filename.
102 if code == errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL:
121 elif code == errors.JSDOC_MISSING_OPTIONAL_TYPE:
134 elif code in (errors.MISSING_SEMICOLON_AFTER_FUNCTION,
135 errors.MISSING_SEMICOLON):
143 elif code in (errors.ILLEGAL_SEMICOLON_AFTER_FUNCTION,
144 errors.REDUNDANT_SEMICOLON
    [all...]
  /external/chromium_org/chrome/common/extensions/api/input_ime/
input_components_handler.cc 21 namespace errors = manifest_errors;
54 *error = base::ASCIIToUTF16(errors::kInvalidInputComponents);
73 *error = base::ASCIIToUTF16(errors::kInvalidInputComponents);
80 errors::kInvalidInputComponentName,
92 errors::kInvalidInputComponentType,
98 errors::kInvalidInputComponentType,
111 errors::kInvalidInputComponentDescription,
143 errors::kInvalidInputComponentLayoutName,
156 errors::kInvalidInputComponentShortcutKey,
164 errors::kInvalidInputComponentShortcutKeycode
    [all...]
  /external/chromium_org/third_party/webrtc/tools/barcode_tools/
helper_functions.py 18 """Exception raised for errors in the helper."""
84 errors = False
91 errors = True
96 return not errors

Completed in 1450 milliseconds

<<11121314151617181920>>