Searched defs:errors (Results 76 - 100 of 315) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dgcs_file_system.py7 from third_party.cloudstorage import errors namespace
35 except errors.Error:
48 except errors.Error:
63 except (TypeError, errors.Error):
95 except errors.AuthorizationError:
108 except errors.AuthorizationError:
/external/chromium_org/components/sync_driver/
H A Ddata_type_status_table.cc13 const DataTypeStatusTable::TypeErrorMap& errors) {
15 for (DataTypeStatusTable::TypeErrorMap::const_iterator it = errors.begin();
16 it != errors.end(); ++it) {
31 bool DataTypeStatusTable::UpdateFailedDataTypes(const TypeErrorMap& errors) { argument
32 if (errors.empty())
35 DVLOG(1) << "Setting " << errors.size() << " new failed types.";
37 for (TypeErrorMap::const_iterator iter = errors.begin(); iter != errors.end();
66 DVLOG(1) << "Resetting data type errors.";
142 // Just return the first one. It is assumed all the unrecoverable errors
12 GetTypesFromErrorMap( const DataTypeStatusTable::TypeErrorMap& errors) argument
[all...]
/external/chromium_org/content/shell/app/
H A Dwebkit_test_platform_support_win.cc74 std::list<std::string> errors; local
79 errors.push_back("Must use normal size fonts (96 dpi).");
99 errors.push_back(is_vista_or_later
106 for (std::list<std::string>::iterator it = errors.begin(); it != errors.end();
110 return errors.empty();
/external/chromium_org/extensions/common/
H A Dupdate_manifest.h78 // errors().
82 const std::string& errors() { return errors_; } function in class:UpdateManifest
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Derror_fixer.py27 from closure_linter import errors namespace
56 """Object that fixes simple style errors."""
63 instead of overwriting the files the errors are found in.
72 """Notifies this ErrorPrinter that subsequent errors are in filename.
106 if code == errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL:
125 elif code == errors.JSDOC_MISSING_OPTIONAL_TYPE:
138 elif code == errors.JSDOC_MISSING_VAR_ARGS_TYPE:
151 elif code in (errors.MISSING_SEMICOLON_AFTER_FUNCTION,
152 errors.MISSING_SEMICOLON):
160 elif code in (errors
[all...]
H A Djavascriptlintrules.py30 from closure_linter import errors namespace
46 """JavaScript lint rules that catch JavaScript specific style errors."""
61 """Handle errors associated with a parameter missing a param tag."""
62 self._HandleError(errors.MISSING_PARAMETER_DOCUMENTATION,
83 """Checks a token, given the current parser_state, for warnings and errors.
156 self._HandleError(errors.JSDOC_MISSING_VAR_ARGS_NAME,
162 self._HandleError(errors.JSDOC_MISSING_VAR_ARGS_TYPE,
171 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_PREFIX,
177 self._HandleError(errors.JSDOC_MISSING_OPTIONAL_TYPE,
191 self._HandleError(errors
[all...]
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Dcloudstorage_api.py35 from . import errors namespace
75 errors.AuthorizationError: if authorization failed.
76 errors.NotFoundError: if an object that's expected to exist doesn't.
109 errors.NotFoundError: if the file doesn't exist prior to deletion.
116 errors.check_status(status, [204], filename, resp_headers=resp_headers)
132 errors.AuthorizationError: if authorization failed.
133 errors.NotFoundError: if an object that's expected to exist doesn't.
139 errors.check_status(status, [200], filename, resp_headers=headers)
165 errors.AuthorizationError: if authorization failed.
166 errors
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dpp.c156 int errors; local
172 errors = parser->error;
174 return errors;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc182 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[
[all...]
H A Dreflection_ops.cc225 vector<string>* errors) {
233 errors->push_back(prefix + descriptor->field(i)->name());
253 errors);
259 errors);
222 FindInitializationErrors( const Message& message, const string& prefix, vector<string>* errors) argument
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
H A Dvie_autotest_main.cc153 int errors = 0; local
155 case 7: errors = vieAutoTest.ViELoopbackCall(); break;
156 case 8: errors = vieAutoTest.ViECustomCall(); break;
157 case 9: errors = vieAutoTest.ViESimulcastCall(); break;
158 case 10: errors = vieAutoTest.ViERecordCall(); break;
162 return errors;
171 int errors = 0; local
193 case 1: errors = RunTestMatching(kStandardTest, "*"); break;
194 case 2: errors = RunTestMatching(kApiTest, "*"); break;
195 case 3: errors
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
H A Dyasm-options.c48 int errors = 0, warnings = 0; local
66 errors++;
68 return errors;
88 errors++;
112 errors++;
127 errors++;
152 errors++;
157 return errors;
/external/doclava/src/com/google/doclava/
H A DTodoFile.java59 public int errors; field in class:TodoFile.PackageStats
83 String base = classBase + ".errors.";
84 int errors = 0;
88 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
89 errors++;
98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
103 errors++;
112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
117 errors++;
127 setHDF(data, base + errors,
[all...]
/external/junit/src/org/junit/internal/runners/rules/
H A DRuleFieldValidator.java15 * {@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) { argument
50 validateField(each, errors);
53 private void validateField(FrameworkField field, List<Throwable> errors) { argument
54 optionallyValidateStatic(field, errors);
55 validatePublic(field, errors);
56 validateTestRuleOrMethodRule(field, errors);
59 optionallyValidateStatic(FrameworkField field, List<Throwable> errors) argument
65 validatePublic(FrameworkField field, List<Throwable> errors) argument
70 validateTestRuleOrMethodRule(FrameworkField field, List<Throwable> errors) argument
86 addError(List<Throwable> errors, FrameworkField field, String suffix) argument
[all...]
/external/junit/src/org/junit/runners/
H A DParameterized.java113 protected void validateConstructor(List<Throwable> errors) { argument
114 validateOnlyOneConstructor(errors);
/external/junit/src/org/junit/runners/model/
H A DFrameworkMethod.java58 * Adds to {@code errors} if this method:
66 public void validatePublicVoidNoArg(boolean isStatic, List<Throwable> errors) { argument
67 validatePublicVoid(isStatic, errors);
69 errors.add(new Exception("Method " + fMethod.getName() + " should have no parameters"));
74 * Adds to {@code errors} if this method:
81 public void validatePublicVoid(boolean isStatic, List<Throwable> errors) { argument
84 errors.add(new Exception("Method " + fMethod.getName() + "() " + state + " be static"));
87 errors.add(new Exception("Class " + fMethod.getDeclaringClass().getName() + " should be public"));
89 errors.add(new Exception("Method " + fMethod.getName() + "() should be public"));
91 errors
94 validateNoTypeParametersOnArgs(List<Throwable> errors) argument
[all...]
/external/libsepol/src/
H A Dassertion.c70 unsigned long errors = 0; local
82 errors++;
90 errors++;
95 return errors;
105 unsigned long errors = 0; local
140 errors += check_assertion_helper
147 errors += check_assertion_helper
154 if (errors)
155 ERR(handle, "%lu neverallow failures occurred", errors);
159 return errors
[all...]
/external/libunwind/tests/
H A Dtest-proc-info.c41 int errors; variable
44 { ++errors; fprintf (stderr, args); return -1; }
102 ++errors;
/external/mesa3d/src/glsl/glcpp/
H A Dpp.c156 int errors; local
172 errors = parser->error;
174 return errors;
/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc220 vector<string>* errors) {
228 errors->push_back(prefix + descriptor->field(i)->name());
248 errors);
254 errors);
217 FindInitializationErrors( const Message& message, const string& prefix, vector<string>* errors) argument
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dutils_module_tests.c44 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/wpa_supplicant_8/src/utils/
H A Dutils_module_tests.c44 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/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dutils_module_tests.c44 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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dindentation.py22 from closure_linter import errors namespace
109 Can be used to find common indentation errors in JavaScript, ActionScript and
128 """Checks a token for indentation errors.
165 errors.MALFORMED_END_OF_SCOPE_COMMENT,
173 errors.MISSING_END_OF_SCOPE_COMMENT,
223 errors.WRONG_INDENTATION,
/external/chromium_org/chrome/browser/diagnostics/
H A Dsqlite_diagnostics.cc94 int errors = 0; variable
140 ++errors;
150 if (errors != 0) {
152 str += base::IntToString(errors) + " errors";

Completed in 486 milliseconds

1234567891011>>