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

<<11121314151617181920>>

  /external/deqp/scripts/
check_redundant_include_guards.py 17 errors = []
27 errors.append("Invalid redundant include guard around line %d:" % lineNumber)
28 errors.append("guard is %s but included file is %s" % (ifndefName, includeName))
34 return errors
56 parser.add_option("-q", "--quiet", action="store_true", dest="quiet", default=False, help="only print files with errors")
71 errors = getRedundantIncludeGuardErrors(file) variable
72 if errors:
75 for err in errors:
  /external/chromium_org/chrome/browser/ui/global_error/
global_error_service_unittest.cc 14 // Error base class that keeps track of the number of errors that exist.
71 // Test adding errors to the global error service.
74 EXPECT_EQ(0u, service->errors().size());
78 EXPECT_EQ(1u, service->errors().size());
79 EXPECT_EQ(error1, service->errors()[0]);
83 EXPECT_EQ(2u, service->errors().size());
84 EXPECT_EQ(error1, service->errors()[0]);
85 EXPECT_EQ(error2, service->errors()[1]);
93 // Test removing errors from the global error service.
101 EXPECT_EQ(2u, service->errors().size())
    [all...]
  /external/chromium_org/extensions/common/manifest_handlers/
file_handler_info.cc 18 namespace errors = manifest_errors;
57 errors::kInvalidFileHandlerType, handler_id);
65 errors::kInvalidFileHandlerExtension, handler_id);
72 errors::kInvalidFileHandlerNoTypeOrExtension,
79 *error = base::ASCIIToUTF16(errors::kInvalidFileHandlerTitle);
88 errors::kInvalidFileHandlerTypeElement,
102 errors::kInvalidFileHandlerExtensionElement,
120 *error = base::ASCIIToUTF16(errors::kInvalidFileHandlers);
133 *error = base::ASCIIToUTF16(errors::kInvalidFileHandlers);
148 errors::kInvalidFileHandlersTooManyTypesAndExtensions)
    [all...]
requirements_info.cc 17 namespace errors = manifest_errors;
75 *error = base::ASCIIToUTF16(errors::kInvalidRequirements);
85 errors::kInvalidRequirement, iter.key());
95 errors::kInvalidRequirement, iter.key());
102 errors::kInvalidRequirement, iter.key());
112 errors::kInvalidRequirement, iter.key());
127 errors::kInvalidRequirement, iter.key());
138 errors::kInvalidRequirement, iter.key());
145 errors::kInvalidRequirement, iter.key());
150 *error = base::ASCIIToUTF16(errors::kInvalidRequirements)
    [all...]
webview_info.cc 19 namespace errors = extensions::manifest_errors;
110 *error = base::ASCIIToUTF16(errors::kInvalidWebview);
116 *error = base::ASCIIToUTF16(errors::kInvalidWebviewPartitionsList);
122 *error = base::ASCIIToUTF16(errors::kInvalidWebviewPartitionsList);
130 errors::kInvalidWebviewPartition, base::IntToString(i));
137 errors::kInvalidWebviewPartitionName, base::IntToString(i));
145 errors::kInvalidWebviewAccessibleResourcesList);
152 errors::kInvalidWebviewAccessibleResourcesList);
163 errors::kInvalidWebviewAccessibleResource, base::IntToString(i));
shared_module_info.cc 23 namespace errors = manifest_errors;
133 *error = base::ASCIIToUTF16(errors::kInvalidImportAndExport);
140 *error = base::ASCIIToUTF16(errors::kInvalidExport);
145 *error = base::ASCIIToUTF16(errors::kInvalidExportResources);
151 *error = base::ASCIIToUTF16(errors::kInvalidExportWhitelist);
159 errors::kInvalidExportWhitelistString, base::IntToString(i));
169 errors::kInvalidExportResourcesString, base::IntToString(i));
175 errors::kInvalidExportResourcesString, base::IntToString(i));
186 *error = base::ASCIIToUTF16(errors::kInvalidImport);
192 *error = base::ASCIIToUTF16(errors::kInvalidImport)
    [all...]
  /frameworks/testing/support/src/android/support/test/internal/runner/junit4/
AndroidJUnit4ClassRunner.java 66 protected void collectInitializationErrors(List<Throwable> errors) {
67 super.collectInitializationErrors(errors);
69 validateInjectFields(errors);
72 private void validateInjectFields(List<Throwable> errors) {
76 validateInjectField(errors, instrField, Instrumentation.class);
81 validateInjectField(errors, contextField, Context.class);
86 validateInjectField(errors, bundleField, Bundle.class);
90 private void validateInjectField(List<Throwable> errors, FrameworkField instrField,
93 errors.add(new InvalidInjectException(String.format(
98 errors.add(new InvalidInjectException(String.format
    [all...]
  /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/common/extensions/manifest_handlers/
nacl_modules_handler.cc 18 namespace errors = manifest_errors;
46 *error = base::ASCIIToUTF16(errors::kInvalidNaClModules);
55 *error = base::ASCIIToUTF16(errors::kInvalidNaClModules);
63 errors::kInvalidNaClModulesPath, base::IntToString(i));
71 errors::kInvalidNaClModulesMIMEType, base::IntToString(i));
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
data_tests.py 77 errors = 0
78 errors += RunTest(TestWriteRead)
79 errors += RunTest(TestRead)
80 errors += RunTest(TestWrite)
82 return errors
  /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/chromium_org/third_party/icu/source/common/unicode/
idna.h 90 * The label might be modified according to the types of errors.
91 * Labels with severe errors will be left in (or turned into) their Unicode form.
113 * The label might be modified according to the types of errors.
136 * The domain name might be modified according to the types of errors.
137 * Labels with severe errors will be left in (or turned into) their Unicode form.
159 * The domain name might be modified according to the types of errors.
260 * Output container for IDNA processing errors.
270 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
272 * Were there IDNA processing errors?
273 * @return TRUE if there were processing errors
312 uint32_t errors, labelErrors; member in class:IDNAInfo
    [all...]
  /external/icu/icu4c/source/common/unicode/
idna.h 96 * The label might be modified according to the types of errors.
97 * Labels with severe errors will be left in (or turned into) their Unicode form.
119 * The label might be modified according to the types of errors.
142 * The domain name might be modified according to the types of errors.
143 * Labels with severe errors will be left in (or turned into) their Unicode form.
165 * The domain name might be modified according to the types of errors.
262 * Output container for IDNA processing errors.
272 IDNAInfo() : errors(0), labelErrors(0), isTransDiff(FALSE), isBiDi(FALSE), isOkBiDi(TRUE) {}
274 * Were there IDNA processing errors?
275 * @return TRUE if there were processing errors
314 uint32_t errors, labelErrors; member in class:IDNAInfo
    [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_org/chrome/browser/net/
proxy_policy_handler.cc 65 PolicyErrorMap* errors) {
75 errors->AddError(key::kProxySettings,
82 if (!CheckProxyModeAndServerMode(policies, errors, &mode_value))
99 errors->AddError(key::kProxySettings,
104 errors->AddError(key::kProxySettings,
109 errors->AddError(key::kProxySettings,
122 errors->AddError(key::kProxySettings,
232 PolicyErrorMap* errors,
244 errors->AddError(key::kProxySettings,
250 errors->AddError(key::kProxySettings
    [all...]
  /external/chromium_org/chrome/installer/test/
alternate_version_generator_main.cc 35 namespace errors { namespace in namespace:__anon10281
57 } // namespace errors
62 errors::ErrorCode error_code,
64 const wchar_t* error_message = errors::GetErrorMessage(error_code);
67 errors::GetErrorMessage(error_code));
133 DumpUsage(*cmd_line, errors::SHOW_HELP, std::wstring());
139 DumpUsage(*cmd_line, errors::MINI_INSTALLER_NOT_FOUND, std::wstring());
144 DumpUsage(*cmd_line, errors::MINI_INSTALLER_NOT_FOUND,
152 DumpUsage(*cmd_line, errors::OUT_FILE_EXISTS, out.value());
168 DumpUsage(*cmd_line, errors::GENERATION_FAILED, mini_installer.value())
    [all...]
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.cc 20 namespace errors = extensions::manifest_errors;
144 *error = base::ASCIIToUTF16(errors::kInvalidPageActionId);
153 *error = base::ASCIIToUTF16(errors::kInvalidPageActionDefaultTitle);
164 *error = base::ASCIIToUTF16(errors::kInvalidFileAccessList);
172 errors::kInvalidFileAccessValue, base::IntToString(i));
178 *error = base::ASCIIToUTF16(errors::kInvalidFileAccessList);
188 *error = base::ASCIIToUTF16(errors::kInvalidFileFiltersList);
195 errors::kInvalidFileFilterValue, base::IntToString(i));
203 errors::kInvalidURLPatternError, filter);
212 errors::kInvalidURLPatternError, filter)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 490 def run(con, errors):
493 errors.append("did not raise ProgrammingError")
498 errors.append("raised wrong exception")
500 errors = []
501 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors})
504 if len(errors) > 0:
505 self.fail("\n".join(errors))
508 def run(con, errors):
511 errors.append("did not raise ProgrammingError"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
dbapi.py 490 def run(con, errors):
493 errors.append("did not raise ProgrammingError")
498 errors.append("raised wrong exception")
500 errors = []
501 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors})
504 if len(errors) > 0:
505 self.fail("\n".join(errors))
508 def run(con, errors):
511 errors.append("did not raise ProgrammingError"
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 71 errors = parser.reported_errors
72 return [ value, errors ]
87 parser_value, errors = evaluate( expression )
93 val, errors = evaluate "6 - (2*1"
95 errors.should have( 1 ).thing
96 errors.first.should =~ /mismatched/
  /external/chromium_org/chrome/browser/extensions/error_console/
error_console_browsertest.cc 115 false, // manifest errors are never from incognito.
133 // A helper class in order to wait for the proper number of errors to be
135 // number of errors are observed.
139 // <Cause three errors...>
169 // Spin until the appropriate number of errors have been observed.
189 // cause any errors.
197 // Do nothing (errors will be caused by a background script,
206 // errors. This should be enabled on any channel <= Dev, but let's make
215 // Errors are only kept if we have Developer Mode enabled.
233 // |expected_errors| errors. Populate |extension| with a pointer to the loade
299 const ErrorList& errors = local
378 const ErrorList& errors = local
436 const ErrorList& errors = local
485 const ErrorList& errors = local
524 const ErrorList& errors = local
569 const ErrorList& errors = local
    [all...]
  /external/chromium_org/chrome/browser/sessions/
restore_on_startup_policy_handler.cc 79 PolicyErrorMap* errors) {
80 if (!TypeCheckingPolicyHandler::CheckPolicySettings(policies, errors))
90 errors->AddError(policy_name(), IDS_POLICY_VALUE_DEPRECATED);
101 errors->AddError(key::kCookiesSessionOnlyForUrls,
111 errors->AddError(key::kClearSiteDataOnExit,
122 errors->AddError(policy_name(),
  /external/chromium_org/components/json_schema/
json_schema_validator_unittest.cc 23 for (size_t i = 0; i < validator.errors().size(); ++i) {
25 << validator.errors()[i].path << ": "
26 << validator.errors()[i].message;
42 ASSERT_EQ(1u, validator.errors().size()) << test_source;
43 EXPECT_EQ(expected_error_path, validator.errors()[0].path) << test_source;
44 EXPECT_EQ(expected_error_message, validator.errors()[0].message)
  /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())));

Completed in 657 milliseconds

<<11121314151617181920>>