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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_sandboxed_unittest.cc 12 namespace errors = manifest_errors;
71 errors::kInvalidSandboxedPagesList),
73 errors::kInvalidSandboxedPage),
75 errors::kInvalidSandboxedPagesCSP),
77 errors::kInvalidSandboxedPagesCSP),
79 errors::kInvalidSandboxedPagesCSP)
extension_manifests_requirements_unittest.cc 13 namespace errors = manifest_errors;
21 errors::kInvalidRequirements),
22 Testcase("requirements_invalid_keys.json", errors::kInvalidRequirements),
25 errors::kInvalidRequirement, "3D")),
28 errors::kInvalidRequirement, "3D")),
31 errors::kInvalidRequirement, "3D")),
34 errors::kInvalidRequirement, "3D")),
37 errors::kInvalidRequirement, "plugins")),
40 errors::kInvalidRequirement, "plugins")),
43 errors::kInvalidRequirement, "plugins")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
codecs.h 55 encoding using the error handling method defined by errors. errors
65 const char *errors
71 encoding using the error handling method defined by errors. errors
81 const char *errors
108 const char *errors
115 const char *errors
123 const char *errors
131 const char *errors
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
codecs.h 55 encoding using the error handling method defined by errors. errors
65 const char *errors
71 encoding using the error handling method defined by errors. errors
81 const char *errors
108 const char *errors
115 const char *errors
123 const char *errors
131 const char *errors
    [all...]
  /external/chromium/chrome/common/extensions/
extension_manifests_unittest.cc 24 namespace errors = extension_manifest_errors;
161 errors::kInvalidWebURLs);
165 errors::kInvalidWebURL,
167 errors::kExpectString));
172 errors::kInvalidWebURL,
180 errors::kInvalidWebURL,
182 errors::kNoWildCardsInPaths));
187 errors::kInvalidWebURL,
189 errors::kCannotClaimAllURLsInExtent));
194 errors::kInvalidWebURL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
generate-inspector-protocol-version 75 errors = []
85 errors.append("%s: domain has been %s" % (name, removed(reverse)))
87 compare_domains(domain_1, domains_by_name_2[name], types_1, types_2, errors, reverse)
88 return errors
90 def compare_domains(domain_1, domain_2, types_map_1, types_map_2, errors, reverse):
97 errors.append("%s.%s: command has been %s" % (domain_1["domain"], name, removed(reverse)))
99 compare_commands(domain_name, command_1, commands_2[name], types_map_1, types_map_2, errors, reverse)
106 errors.append("%s.%s: event has been %s" % (domain_1["domain"], name, removed(reverse)))
108 compare_events(domain_name, event_1, events_2[name], types_map_1, types_map_2, errors, reverse)
110 def compare_commands(domain_name, command_1, command_2, types_map_1, types_map_2, errors, reverse)
    [all...]
  /external/junit/src/org/junit/runners/model/
FrameworkMethod.java 58 * Adds to {@code errors} if this method:
66 public void validatePublicVoidNoArg(boolean isStatic, List<Throwable> errors) {
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) {
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.add(new Exception("Method " + fMethod.getName() + "() should be void"))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 15 def uu_encode(input,errors='strict',filename='<data>',mode=0666):
20 errors defines the error handling to apply. It defaults to
25 assert errors == 'strict'
44 def uu_decode(input,errors='strict'):
53 errors defines the error handling to apply. It defaults to
61 assert errors == 'strict'
98 def encode(self,input,errors='strict'):
99 return uu_encode(input,errors)
101 def decode(self,input,errors='strict'):
102 return uu_decode(input,errors)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 15 def uu_encode(input,errors='strict',filename='<data>',mode=0666):
20 errors defines the error handling to apply. It defaults to
25 assert errors == 'strict'
44 def uu_decode(input,errors='strict'):
53 errors defines the error handling to apply. It defaults to
61 assert errors == 'strict'
98 def encode(self,input,errors='strict'):
99 return uu_encode(input,errors)
101 def decode(self,input,errors='strict'):
102 return uu_decode(input,errors)
    [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...]
policy_handlers.h 30 policy::PolicyErrorMap* errors) OVERRIDE;
39 policy::PolicyErrorMap* errors,
57 policy::PolicyErrorMap* errors) OVERRIDE;
65 policy::PolicyErrorMap* errors);
81 policy::PolicyErrorMap* errors) OVERRIDE;
  /external/chromium_org/chrome/browser/component_updater/test/
update_response_unittest.cc 216 EXPECT_FALSE(parser.errors().empty());
220 EXPECT_FALSE(parser.errors().empty());
224 EXPECT_FALSE(parser.errors().empty());
228 EXPECT_FALSE(parser.errors().empty());
232 EXPECT_FALSE(parser.errors().empty());
236 EXPECT_FALSE(parser.errors().empty());
240 EXPECT_TRUE(parser.errors().empty());
253 EXPECT_TRUE(parser.errors().empty());
255 EXPECT_TRUE(parser.errors().empty());
260 EXPECT_TRUE(parser.errors().empty())
    [all...]
  /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/mojo/public/bindings/generators/
mojom_test.py 11 # the number of errors that are encountered.
18 # errors = 0
19 # errors += EXPECT_EQ('test', test())
21 # return errors
123 # errors
125 errors = 0
127 errors += EXPECT_EQ('test', module.name)
128 errors += EXPECT_EQ('testspace', module.namespace)
129 errors += EXPECT_EQ(1, len(module.structs))
130 errors += EXPECT_EQ('teststruct', module.structs[0].name
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
runptests.c 48 int errors = 0; local
79 ++errors;
87 errors++;
101 ++errors;
116 ++errors;
124 printf ("\n%u tests, %d errors\n", (int) cnt, errors);
126 return 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/chrome/browser/net/
url_request_mock_net_error_job.cc 25 std::vector<int> errors,
28 errors(errors),
32 std::vector<int> errors; member in struct:URLRequestMockNetErrorJob::MockInfo
39 const std::vector<int>& errors,
46 url_mock_info_map_[url] = MockInfo(base, errors, ssl_cert);
79 return new URLRequestMockNetErrorJob(request, mock_info.errors,
85 const std::vector<int>& errors, net::X509Certificate* cert,
88 errors_(errors),
  /external/chromium/testing/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/chromium_org/components/policy/core/browser/
configuration_policy_handler_list.cc 31 PolicyErrorMap* errors) const {
33 if (!errors)
34 errors = &scoped_errors;
38 if ((*handler)->CheckPolicySettings(policies, errors) && prefs)
48 errors->AddError(it->first, IDS_POLICY_DEPRECATED);
  /external/chromium_org/testing/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const std::string& errors_str = errors.GetString();
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/llvm/utils/unittest/googletest/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/mesa3d/src/gtest/src/
gtest-typed-test.cc 60 Message errors; local
66 errors << "Test " << name << " is listed more than once.\n";
83 errors << "No test named " << name
92 errors << "You forgot to list test " << *it << ".\n";
96 const String& errors_str = errors.GetString();
  /external/open-vcdiff/gtest/src/
gtest-typed-test.cc 48 Message errors; local
54 errors << "Test " << name << " is listed more than once.\n";
71 errors << "No test named " << name
80 errors << "You forgot to list test " << *it << ".\n";
84 const String& errors_str = errors.GetString();

Completed in 2180 milliseconds

1 2 3 4 5 67 8 91011>>