HomeSort by relevance Sort by last modified time
    Searched full:errors (Results 301 - 325 of 9212) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/common/extensions/api/identity/
oauth2_manifest_handler.cc 26 namespace errors = manifest_errors;
52 *error = ASCIIToUTF16(errors::kInvalidOAuth2ClientId);
62 *error = ASCIIToUTF16(errors::kInvalidOAuth2AutoApprove);
71 *error = ASCIIToUTF16(errors::kInvalidOAuth2ClientId);
77 *error = ASCIIToUTF16(errors::kInvalidOAuth2Scopes);
84 *error = ASCIIToUTF16(errors::kInvalidOAuth2Scopes);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
palmos.py 12 def encode(self,input,errors='strict'):
13 return codecs.charmap_encode(input,errors,encoding_map)
15 def decode(self,input,errors='strict'):
16 return codecs.charmap_decode(input,errors,decoding_map)
20 return codecs.charmap_encode(input,self.errors,encoding_map)[0]
24 return codecs.charmap_decode(input,self.errors,decoding_map)[0]
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
palmos.py 12 def encode(self,input,errors='strict'):
13 return codecs.charmap_encode(input,errors,encoding_map)
15 def decode(self,input,errors='strict'):
16 return codecs.charmap_decode(input,errors,decoding_map)
20 return codecs.charmap_encode(input,self.errors,encoding_map)[0]
24 return codecs.charmap_decode(input,self.errors,decoding_map)[0]
punycode.py 130 def decode_generalized_number(extended, extpos, bias, errors):
139 if errors == "strict":
147 elif errors == "strict":
160 def insertion_sort(base, extended, errors):
168 bias, errors)
176 if errors == "strict":
185 def punycode_decode(text, errors):
193 base = unicode(base, "ascii", errors)
195 return insertion_sort(base, extended, errors)
201 def encode(self,input,errors='strict')
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
ttsdebug.js 60 var errors = [];
70 errors.push('Error: start event should have a charIndex of 0.');
74 errors.push('Error: no "start" event received!');
78 errors.push('Error: end event should have a charIndex of 30.');
93 callback(errors.length == 0, delta, warnings.concat(errors));
107 var errors = []; variable
124 errors.push('2x speech rate seems too fast.');
126 errors.push('2x speech rate seems too slow.');
128 callback(errors.length == 0, delta, errors)
142 var errors = []; variable
179 var errors = []; variable
289 var errors = []; variable
404 var errors = []; variable
458 var errors = []; variable
    [all...]
  /external/chromium_org/third_party/WebKit/
PRESUBMIT.py 19 errors = []
22 errors.append(' %s:%d %s' % (f.LocalPath(), line_num, line))
23 return errors
28 errors = []
30 errors.extend(_CheckForVersionControlConflictsInFile(input_api, f))
33 if errors:
35 'Version control conflict markers found, please resolve.', errors))
41 errors = []
63 errors.append(output_api.PresubmitError(
66 return errors
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 29 from closure_linter import errors namespace
61 Can be used to find common style errors in JavaScript, ActionScript and other
102 """Handle errors associated with a parameter missing a @param tag."""
161 self._HandleError(errors.LINE_TOO_LONG,
165 """Checks the given type for style errors.
176 self._HandleError(errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL,
183 self._HandleError(errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
189 self._HandleError(errors.MISSING_BRACES_AROUND_TYPE,
207 errors.MISSING_SPACE,
239 """Checks a token, given the current parser_state, for warnings and errors
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 29 from closure_linter import errors namespace
61 Can be used to find common style errors in JavaScript, ActionScript and other
102 """Handle errors associated with a parameter missing a @param tag."""
161 self._HandleError(errors.LINE_TOO_LONG,
165 """Checks the given type for style errors.
176 self._HandleError(errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL,
183 self._HandleError(errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
189 self._HandleError(errors.MISSING_BRACES_AROUND_TYPE,
207 errors.MISSING_SPACE,
239 """Checks a token, given the current parser_state, for warnings and errors
    [all...]
  /external/chromium/chrome/common/extensions/
extension_unpacker_unittest.cc 16 namespace errors = extension_manifest_errors;
49 EXPECT_EQ(errors::kInvalidDefaultLocale, unpacker_->error_message());
55 EXPECT_EQ(errors::kLocalesTreeMissing, unpacker_->error_message());
61 EXPECT_EQ(errors::kInvalidDefaultLocale, unpacker_->error_message());
75 EXPECT_EQ(errors::kLocalesNoDefaultMessages, unpacker_->error_message());
81 EXPECT_EQ(errors::kLocalesNoDefaultLocaleSpecified,
89 errors::kLocalesMessagesFileMissing +
96 EXPECT_EQ(errors::kLocalesNoDefaultMessages, unpacker_->error_message());
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
filetestcase.py 17 """Test case that runs a checker on a file, matching errors against annotations.
19 Runs the given checker on the given file, accumulating all errors. The list
20 of errors is then matched against those annotated in the file. Based heavily
100 errors = erroraccumulator.ErrorAccumulator()
101 self._runner.Run([filename], errors)
103 errors = errors.GetErrors()
106 error_msgs = [(error.token.line_number, error.code) for error in errors]
  /external/chromium_org/chrome/browser/sync/glue/
chrome_report_unrecoverable_error.cc 22 // We only want to upload |kErrorUploadRatio| ratio of errors.
25 return; // We are not allowed to upload errors.
  /external/chromium_org/chrome/common/extensions/manifest_tests/
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/chromium_org/components/policy/core/browser/
configuration_policy_pref_store.cc 24 // be retrieved. This function is posted to UI to log any errors found on
26 void LogErrors(PolicyErrorMap* errors) {
28 for (iter = errors->begin(); iter != errors->end(); ++iter) {
119 scoped_ptr<PolicyErrorMap> errors(new PolicyErrorMap);
123 errors.get());
125 // Retrieve and log the errors once the UI loop is ready. This is only an
128 FROM_HERE, base::Bind(&LogErrors, base::Owned(errors.release())));
  /external/chromium_org/extensions/common/manifest_handlers/
requirements_info.cc 17 namespace errors = manifest_errors;
75 *error = ASCIIToUTF16(errors::kInvalidRequirements);
85 errors::kInvalidRequirement, iter.key());
95 errors::kInvalidRequirement, iter.key());
102 errors::kInvalidRequirement, iter.key());
112 errors::kInvalidRequirement, iter.key());
126 errors::kInvalidRequirement, iter.key());
132 *error = ASCIIToUTF16(errors::kInvalidRequirements);
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
filetestcase.py 17 """Test case that runs a checker on a file, matching errors against annotations.
19 Runs the given checker on the given file, accumulating all errors. The list
20 of errors is then matched against those annotated in the file. Based heavily
100 errors = erroraccumulator.ErrorAccumulator()
101 self._runner.Run([filename], errors)
103 errors = errors.GetErrors()
106 error_msgs = [(error.token.line_number, error.code) for error in errors]
  /external/clang/test/FixIt/
fixit-cxx1y-compat.cpp 4 // RUN: %clang_cc1 -Wall -pedantic-errors -Werror -x c++ -std=c++11 %t
5 // RUN: %clang_cc1 -Wall -pedantic-errors -Werror -x c++ -std=c++1y %t
  /external/clang/test/PCH/
cxx11-enum-template.cpp 1 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t
2 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t -verify %s
cxx11-user-defined-literals.cpp 1 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -emit-pch %s -o %t
2 // RUN: %clang_cc1 -pedantic-errors -std=c++11 -include-pch %t -verify %s
  /external/emma/core/res/com/vladium/emma/data/
merge_usage.res 34 "quiet operation (ignore all but warnings and severe errors)";
39 "extra-quiet operation (ignore all but severe errors)";
  /external/valgrind/main/gdbserver_tests/
mcsignopass.stderr.exp 21 For counts of detected and suppressed errors, rerun with: -v
22 ERROR SUMMARY: 11 errors from 1 contexts (suppressed: 0 from 0)
mcsigpass.stderr.exp 21 For counts of detected and suppressed errors, rerun with: -v
22 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
mcwatchpoints.stderr.exp 26 For counts of detected and suppressed errors, rerun with: -v
27 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /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)

Completed in 342 milliseconds

<<11121314151617181920>>