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

<<11121314151617181920>>

  /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/valgrind/main/memcheck/tests/
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)
sem.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/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/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/
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...]
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));
file_handler_info.cc 19 namespace errors = manifest_errors;
60 errors::kInvalidFileHandlerType, handler_id);
68 errors::kInvalidFileHandlerExtension, handler_id);
75 errors::kInvalidFileHandlerNoTypeOrExtension,
85 errors::kInvalidFileHandlerTypeElement,
99 errors::kInvalidFileHandlerExtensionElement,
130 *error = base::ASCIIToUTF16(errors::kInvalidFileHandlers);
147 *error = base::ASCIIToUTF16(errors::kInvalidFileHandlers);
162 errors::kInvalidFileHandlersTooManyTypesAndExtensions);
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 24 namespace errors = manifest_errors;
134 *error = base::ASCIIToUTF16(errors::kInvalidImportAndExport);
141 *error = base::ASCIIToUTF16(errors::kInvalidExport);
146 *error = base::ASCIIToUTF16(errors::kInvalidExportResources);
152 *error = base::ASCIIToUTF16(errors::kInvalidExportWhitelist);
160 errors::kInvalidExportWhitelistString, base::IntToString(i));
170 errors::kInvalidExportResourcesString, base::IntToString(i));
176 errors::kInvalidExportResourcesString, base::IntToString(i));
187 *error = base::ASCIIToUTF16(errors::kInvalidImport);
193 *error = base::ASCIIToUTF16(errors::kInvalidImport)
    [all...]
  /external/libsepol/src/
assertion.c 70 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 ? -1 : 0
    [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/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/
errorrules_test.py 26 from closure_linter import errors namespace
61 expected = [errors.LINE_TOO_LONG, errors.LINE_TOO_LONG]
84 expected = [errors.GOOG_REQUIRES_NOT_ALPHABETIZED,
85 errors.FILE_MISSING_NEWLINE]
ecmalintrules.py 32 from closure_linter import errors namespace
62 Can be used to find common style errors in JavaScript, ActionScript and other
110 """Handle errors associated with a parameter missing a @param tag."""
172 errors.LINE_TOO_LONG,
176 """Checks the given type for style errors.
188 errors.JSDOC_PREFER_QUESTION_TO_PIPE_NULL,
198 errors.MISSING_BRACES_AROUND_TYPE,
216 errors.MISSING_SPACE,
233 errors.EXTRA_SPACE, 'Extra space before "%s"' % token.string,
239 self._HandleError(errors.MISSING_SPACE
    [all...]
  /external/chromium_org/third_party/icu/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/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/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:__anon10362
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/

Completed in 473 milliseconds

<<11121314151617181920>>