HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 76 - 100 of 415) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/testrunner/test_defs/
host_test.py 23 import errors namespace
85 errors.AbortError: if fatal error occurs
97 raise errors.AbortError(msg="Could not find jar %s" % path)
  /external/chromium/chrome/browser/diagnostics/
sqlite_diagnostics.cc 47 int errors = 0; local
70 ++errors;
74 if (errors != 0) {
76 str += base::IntToString16(errors) + ASCIIToUTF16(" errors");
  /external/chromium/chrome/browser/
page_info_model.cc 48 // Some of what IsCertStatusError classifies as errors we want to show as
133 // HTTP or HTTPS with errors (not warnings).
140 std::vector<SSLErrorInfo> errors; local
142 url, &errors);
143 for (size_t i = 0; i < errors.size(); ++i) {
145 description += errors[i].short_description();
  /external/chromium/chrome/browser/sync/sessions/
session_state_unittest.cc 114 ErrorCounters errors; local
115 errors.num_conflicting_commits = 250;
117 errors.ToValue());
144 errors,
159 ExpectDictionaryValue(*expected_errors_value, *value, "errors");
  /external/chromium/chrome/common/
json_schema_validator.h 102 // Errors will result in CHECK at runtime; this constructor should not be used
112 // and valid. Errors will result in CHECK at runtime; this constructor should
134 // Returns any errors from the last call to to Validate().
135 const std::vector<Error>& errors() const { function in class:JSONSchemaValidator
140 // otherwise. If false is returned any errors are available from the errors()
206 // Errors accumulated since the last call to Validate().
libxml_utils.h 20 // libxml uses a global error function pointer for reporting errors.
93 // Returns the errors reported by libxml, if any.
94 // (libxml normally just dumps these errors to stderr.)
95 const std::string& errors() const { return errors_; } function in class:XmlReader
98 // A callback for libxml to report errors.
108 // to report errors into |errors_| for the lifetime of this object.
160 // Returns false on errors.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checkerbase.py 29 from closure_linter import errors namespace
52 checker: Class to report errors to.
75 """Checks a token, given the current parser_state, for warnings and errors.
107 error_handler: Object that handles errors.
108 lint_rules: LintRules object defining lint errors given a token
144 """Returns true if the style checker has found any errors.
147 True if the style checker has found any errors.
152 """Checks the file, printing warnings and errors as they are found.
166 self.HandleError(errors.FILE_NOT_FOUND, 'File not found', None)
184 """Checks a file, given as an iterable of lines, for warnings and errors
    [all...]
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...]
javascriptlintrules.py 31 from closure_linter import errors namespace
47 """JavaScript lint rules that catch JavaScript specific style errors."""
58 """Handle errors associated with a parameter missing a param tag."""
59 self._HandleError(errors.MISSING_PARAMETER_DOCUMENTATION,
79 """Checks a token, given the current parser_state, for warnings and errors.
140 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_PREFIX,
146 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_TYPE,
157 self._HandleError(errors.MISSING_JSDOC_TAG_TYPE,
163 errors.OUT_OF_ORDER_JSDOC_TAG_TYPE,
176 errors.UNNECESSARY_DOUBLE_QUOTED_STRING
    [all...]
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
js_checker.py 119 from closure_linter import checker, errors namespace
127 """Filters out errors that don't apply to Chromium JavaScript code."""
148 """Check whether an error is valid. Most errors are valid, with a few
156 errors.COMMA_AT_END_OF_LITERAL,
157 errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
158 errors.JSDOC_TAG_DESCRIPTION_ENDS_WITH_INVALID_CHARACTER,
159 errors.LINE_TOO_LONG,
160 errors.MISSING_JSDOC_TAG_THIS,
188 # Use closure_linter to check for several different errors
  /external/chromium_org/build/android/pylib/gtest/
test_package_apk.py 18 from pylib.android_commands import errors namespace
67 raise errors.DeviceUnresponsiveError(
  /external/chromium_org/chrome/browser/component_updater/
update_response.h 116 // errors().
120 const std::string& errors() const { return errors_; } function in class:component_updater::UpdateResponse
  /external/chromium_org/chrome/browser/extensions/api/storage/
syncable_settings_storage.cc 248 std::vector<syncer::SyncError> errors; local
262 errors.push_back(syncer::SyncError(
318 errors.push_back(error);
330 // TODO(kalman): Something sensible with multiple errors.
331 return errors.empty() ? syncer::SyncError() : errors[0];
  /external/chromium_org/chrome/browser/extensions/error_console/
error_console_unittest.cc 74 // Errors are only kept if we have the FeatureSwitch and have Developer Mode
88 // Test adding errors, and removing them by reference, by incognito status,
91 ASSERT_EQ(0u, error_console_->errors().size());
96 // Populate with both incognito and non-incognito errors (evenly distributed).
102 // There should only be one entry in the map, since errors are stored in lists
104 ASSERT_EQ(1u, error_console_->errors().size());
108 // Remove the incognito errors; three errors should remain, and all should
111 const ErrorConsole::ErrorList& errors = local
113 ASSERT_EQ(kNumNonIncognitoErrors, errors.size())
159 const ErrorConsole::ErrorList& errors = local
198 const ErrorConsole::ErrorList& errors = local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
policy_handlers.cc 32 policy::PolicyErrorMap* errors) {
33 return CheckAndGetList(policies, errors, NULL);
40 policy::PolicyErrorMap errors; local
41 if (CheckAndGetList(policies, &errors, &list) && list)
51 policy::PolicyErrorMap* errors,
57 if (!CheckAndGetValue(policies, errors, &value))
75 errors->AddError(policy_name(),
83 errors->AddError(policy_name(),
108 policy::PolicyErrorMap* errors) {
110 return CheckAndGetValue(policies, errors, &value) &
    [all...]
test_extension_prefs.cc 155 std::string errors; local
157 path, location, manifest, extra_flags, &errors);
158 EXPECT_TRUE(extension.get()) << errors;
  /external/chromium_org/chrome/browser/resources/web_dev_style/
js_checker.py 141 from closure_linter import checker, errors namespace
149 """Filters out errors that don't apply to Chromium JavaScript code."""
170 """Check whether an error is valid. Most errors are valid, with a few
178 errors.COMMA_AT_END_OF_LITERAL,
179 errors.JSDOC_ILLEGAL_QUESTION_WITH_PIPE,
180 errors.JSDOC_TAG_DESCRIPTION_ENDS_WITH_INVALID_CHARACTER,
181 errors.LINE_TOO_LONG,
182 errors.MISSING_JSDOC_TAG_THIS,
209 # Use closure_linter to check for several different errors
  /external/chromium_org/chrome/browser/sync/glue/
model_association_manager_unittest.cc 127 std::map<syncer::ModelType, syncer::SyncError> errors; local
132 errors[syncer::BOOKMARKS] = error;
137 errors,
194 std::map<syncer::ModelType, syncer::SyncError> errors; local
199 errors[syncer::BOOKMARKS] = error;
203 errors,
229 std::map<syncer::ModelType, syncer::SyncError> errors; local
234 errors[syncer::BOOKMARKS] = error;
238 errors,
266 std::map<syncer::ModelType, syncer::SyncError> errors; local
366 std::map<syncer::ModelType, syncer::SyncError> errors; local
    [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/chrome/common/extensions/
update_manifest.h 79 // errors().
83 const std::string& errors() { return errors_; } function in class:UpdateManifest
  /external/chromium_org/content/shell/app/
webkit_test_platform_support_win.cc 60 std::list<std::string> errors; local
65 errors.push_back("Must use normal size fonts (96 dpi).");
74 errors.push_back("ClearType must be disabled.");
94 errors.push_back(is_vista_or_later
101 for (std::list<std::string>::iterator it = errors.begin(); it != errors.end();
105 return errors.empty();
  /external/chromium_org/third_party/closure_linter/closure_linter/
checkerbase.py 29 from closure_linter import errors namespace
52 checker: Class to report errors to.
75 """Checks a token, given the current parser_state, for warnings and errors.
107 error_handler: Object that handles errors.
108 lint_rules: LintRules object defining lint errors given a token
144 """Returns true if the style checker has found any errors.
147 True if the style checker has found any errors.
152 """Checks the file, printing warnings and errors as they are found.
166 self.HandleError(errors.FILE_NOT_FOUND, 'File not found', None)
184 """Checks a file, given as an iterable of lines, for warnings and errors
    [all...]
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...]
javascriptlintrules.py 31 from closure_linter import errors namespace
47 """JavaScript lint rules that catch JavaScript specific style errors."""
58 """Handle errors associated with a parameter missing a param tag."""
59 self._HandleError(errors.MISSING_PARAMETER_DOCUMENTATION,
79 """Checks a token, given the current parser_state, for warnings and errors.
140 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_PREFIX,
146 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_TYPE,
157 self._HandleError(errors.MISSING_JSDOC_TAG_TYPE,
163 errors.OUT_OF_ORDER_JSDOC_TAG_TYPE,
176 errors.UNNECESSARY_DOUBLE_QUOTED_STRING
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message_unittest.cc 182 vector<string> errors; local
187 errors = log.GetMessages(ERROR);
190 ASSERT_EQ(1, errors.size());
193 errors[0]);
236 vector<string> errors; local
237 message.FindInitializationErrors(&errors);
238 ASSERT_EQ(3, errors.size());
239 EXPECT_EQ("a", errors[0]);
240 EXPECT_EQ("b", errors[1]);
241 EXPECT_EQ("c", errors[2])
    [all...]

Completed in 2171 milliseconds

1 2 34 5 6 7 8 91011>>