HomeSort by relevance Sort by last modified time
    Searched refs:errors (Results 251 - 275 of 1521) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/memcheck/tests/linux/
syslog-syscall.stderr.exp 10 For counts of detected and suppressed errors, rerun with: -v
11 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/
mallinfo.stderr.exp 10 For counts of detected and suppressed errors, rerun with: -v
11 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
new_override.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
sbfragment.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/ppc32/
power_ISA2_05.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/memcheck/tests/ppc64/
power_ISA2_05.stderr.exp 9 For counts of detected and suppressed errors, rerun with: -v
10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/chromium_org/chrome/browser/signin/
signin_ui_util.cc 31 std::vector<GlobalError*> errors = GetSignedInServiceErrors(profile); local
32 if (errors.empty())
34 return errors[0];
38 std::vector<GlobalError*> errors; local
40 // Auth errors have the highest priority - after that, individual service
41 // errors.
44 errors.push_back(signin_error);
54 errors.push_back(error);
57 return errors;
65 // No errors, so just display the signed in user, if any
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
failed_data_types_handler.cc 15 const FailedDataTypesHandler::TypeErrorMap& errors) {
17 for (FailedDataTypesHandler::TypeErrorMap::const_iterator it = errors.begin();
18 it != errors.end(); ++it) {
33 bool FailedDataTypesHandler::UpdateFailedDataTypes(const TypeErrorMap& errors) {
34 if (errors.empty())
37 for (TypeErrorMap::const_iterator iter = errors.begin(); iter != errors.end();
109 // Note: persistence errors are not failed types. They just trigger automatic
  /external/chromium_org/chrome/common/extensions/
webview_handler.cc 19 namespace errors = extensions::manifest_errors;
75 *error = ASCIIToUTF16(errors::kInvalidWebview);
82 *error = ASCIIToUTF16(errors::kInvalidWebviewAccessibleResourcesList);
90 errors::kInvalidWebviewAccessibleResource, base::IntToString(i));
96 errors::kInvalidURLPatternError, extension->url().spec());
108 *error = ASCIIToUTF16(errors::kInvalidWebviewPrivilegedPartitionList);
115 errors::kInvalidWebviewPrivilegedPartition, base::IntToString(i));
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler.h 40 // ConfigurationPolicyHandler can be applied. Fills |errors| with error
41 // messages or warnings. |errors| may contain error messages even when
44 PolicyErrorMap* errors) = 0;
71 PolicyErrorMap* errors) OVERRIDE;
78 PolicyErrorMap* errors,
104 PolicyErrorMap* errors) OVERRIDE;
114 PolicyErrorMap* errors);
166 PolicyErrorMap* errors) OVERRIDE;
172 // returns false on errors.
175 PolicyErrorMap* errors);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner.py 46 self.errors = []
57 def handle(self, message_name, source, test_name, delay=None, failures=None, errors=None):
65 if errors:
66 self.errors.append((test_name, errors))
67 self.printer.print_finished_test(source, test_name, delay, failures, errors)
90 [failure[1] for failure in result.failures], [error[1] for error in result.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/chrome/common/extensions/api/file_handlers/
file_handlers_parser.cc 18 namespace errors = manifest_errors;
55 errors::kInvalidFileHandlerType, handler_id);
63 errors::kInvalidFileHandlerExtension, handler_id);
70 errors::kInvalidFileHandlerNoTypeOrExtension,
77 *error = ASCIIToUTF16(errors::kInvalidFileHandlerTitle);
86 errors::kInvalidFileHandlerTypeElement,
100 errors::kInvalidFileHandlerExtensionElement,
118 *error = ASCIIToUTF16(errors::kInvalidFileHandlers);
132 *error = ASCIIToUTF16(errors::kInvalidFileHandlers);
148 errors::kInvalidFileHandlersTooManyTypesAndExtensions)
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/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/api/extension_action/
script_badge_handler.cc 20 namespace errors = manifest_errors;
48 InstallWarning(errors::kScriptBadgeRequiresFlag, keys::kScriptBadge));
53 *error = ASCIIToUTF16(errors::kInvalidScriptBadge);
70 InstallWarning(errors::kScriptBadgeTitleIgnored,
77 InstallWarning(errors::kScriptBadgeIconIgnored,
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
nacl_modules_handler.cc 18 namespace errors = manifest_errors;
46 *error = ASCIIToUTF16(errors::kInvalidNaClModules);
55 *error = ASCIIToUTF16(errors::kInvalidNaClModules);
63 errors::kInvalidNaClModulesPath, base::IntToString(i));
71 errors::kInvalidNaClModulesMIMEType, base::IntToString(i));
  /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/icu4c/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/chromeos/policy/
configuration_policy_handler_chromeos.cc 44 policy::PolicyErrorMap* errors,
50 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR);
55 errors->AddError(policy, subkey, IDS_POLICY_TYPE_ERROR, "string");
59 errors->AddError(policy, subkey, IDS_POLICY_NOT_SPECIFIED_ERROR);
76 PolicyErrorMap* errors) {
77 if (!TypeCheckingPolicyHandler::CheckPolicySettings(policies, errors))
93 if (!GetSubkeyString(*dict, errors, policy, kSubkeyURL, &url_string) ||
94 !GetSubkeyString(*dict, errors, policy, kSubkeyHash, &hash_string)) {
100 errors->AddError(policy, kSubkeyURL, IDS_POLICY_VALUE_FORMAT_ERROR);
107 errors->AddError(policy, kSubkeyHash, IDS_POLICY_VALUE_FORMAT_ERROR)
264 PolicyErrorMap errors; local
    [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:__anon6764
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...]

Completed in 516 milliseconds

<<11121314151617181920>>