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

<<21222324252627282930>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.cc 96 void Message::FindInitializationErrors(vector<string>* errors) const {
97 return ReflectionOps::FindInitializationErrors(*this, "", errors);
101 vector<string> errors; local
102 FindInitializationErrors(&errors);
103 return JoinStrings(errors, ", ");
  /external/chromium/chrome/common/extensions/
extension_unittest.cc 38 namespace errors = extension_manifest_errors;
159 EXPECT_EQ(errors::kInvalidVersion, error);
164 EXPECT_EQ(errors::kInvalidVersion, error);
171 EXPECT_EQ(errors::kInvalidName, error);
176 EXPECT_EQ(errors::kInvalidName, error);
183 EXPECT_EQ(errors::kInvalidDescription, error);
190 EXPECT_EQ(errors::kInvalidIcons, error);
200 EXPECT_TRUE(MatchPattern(error, errors::kInvalidIconPath));
207 EXPECT_EQ(errors::kInvalidContentScriptsList, error);
217 EXPECT_TRUE(MatchPattern(error, errors::kInvalidContentScript))
1070 std::string errors; local
1158 std::string errors; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/identity/
identity_apitest.cc 45 namespace errors = identity_constants;
412 EXPECT_EQ(std::string(errors::kInvalidClientId), error);
423 EXPECT_EQ(std::string(errors::kInvalidScopes), error);
435 EXPECT_EQ(std::string(errors::kUserNotSignedIn), error);
451 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
465 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
479 EXPECT_EQ(std::string(errors::kNoGrant), error);
498 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
537 EXPECT_EQ(std::string(errors::kUserNotSignedIn), error);
554 EXPECT_EQ(std::string(errors::kUserNotSignedIn), error)
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.lua 360 errors_found and "Errors found" or "No errors found")
366 local status, errors = pcall(CheckCorrectnessForArch, arch)
368 print(string.format("There was an error: %s", errors))
369 errors = true
371 return errors
374 local errors = false
381 errors = SafeCheckCorrectnessForArch(arch, report) or errors
384 os.exit(errors and 1 or 0
    [all...]
  /external/v8/tools/gcmole/
gcmole.lua 357 errors_found and "Errors found" or "No errors found")
363 local status, errors = pcall(CheckCorrectnessForArch, arch)
365 print(string.format("There was an error: %s", errors))
366 errors = true
368 return errors
371 local errors = false
378 errors = SafeCheckCorrectnessForArch(arch, report) or errors
381 os.exit(errors and 1 or 0
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldDatabaseTest.java 261 List<String> errors = tracker.getErrors(); local
263 if (errors.size() > 0) {
264 assertEquals(errors.get(0), db.error_string(Constants.SQLITE_LOCKED));
265 for (String s : errors) {
335 List<String> errors = tracker.getErrors(); local
336 if (errors.size() > 0) {
337 // assertEquals(errors.get(0),
339 for (String s: errors) {
366 // errors = tracker.getErrors();
367 // if (errors.size() > 0)
425 List<String> errors = tracker.getErrors(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/web_dev_style/
css_checker.py 63 errors = []
69 errors.append(' %s;\n' % (';\n '.join(rules)))
70 return errors
218 errors = []
222 errors.append(' :%s (should be ::%s)' % (pseudo, pseudo))
223 return errors
234 errors = []
236 errors.append(' ' + b.group(1).strip().splitlines()[-1:][0])
237 return errors
261 errors = [
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
notifications_custom_bindings.js 71 var errors = 0;
75 errors++;
78 if (errors > 0) {
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 58 uint errors; member in struct:sanity_check_ctx
165 ctx->errors++;
512 if (ctx->errors || ctx->warnings)
513 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings );
552 ctx.errors = 0;
563 return ctx.errors == 0;
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 58 uint errors; member in struct:sanity_check_ctx
165 ctx->errors++;
512 if (ctx->errors || ctx->warnings)
513 debug_printf( "%u errors, %u warnings\n", ctx->errors, ctx->warnings );
552 ctx.errors = 0;
563 return ctx.errors == 0;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this?
69 if errors:
70 return self.__class__(self.data.decode(encoding, errors))
75 def encode(self, encoding=None, errors=None): # XXX improve this?
77 if errors:
78 return self.__class__(self.data.encode(encoding, errors))
145 errors that would be very hard to track down.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this?
69 if errors:
70 return self.__class__(self.data.decode(encoding, errors))
75 def encode(self, encoding=None, errors=None): # XXX improve this?
77 if errors:
78 return self.__class__(self.data.encode(encoding, errors))
145 errors that would be very hard to track down.
  /external/chromium_org/third_party/libxslt/libxslt/
xslt.c 139 style->errors++;
743 ret->errors = 0;
863 * Returns 0 if OK, -1 on API or internal errors.
1192 if (style != NULL) style->errors++;
1232 style->errors++;
1246 style->errors++;
1261 style->errors++;
    [all...]
  /external/libxslt/libxslt/
xslt.c 139 style->errors++;
743 ret->errors = 0;
863 * Returns 0 if OK, -1 on API or internal errors.
1192 if (style != NULL) style->errors++;
1232 style->errors++;
1246 style->errors++;
1261 style->errors++;
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
python_message.py 763 errors = []
839 def IsInitialized(self, errors=None):
843 errors: A list which, if provided, will be populated with the field
856 if errors is not None:
857 errors.extend(self.FindInitializationErrors())
865 if errors is not None:
866 errors.extend(self.FindInitializationErrors())
869 if errors is not None:
870 errors.extend(self.FindInitializationErrors()
    [all...]
  /external/protobuf/python/google/protobuf/
reflection.py 792 errors = []
860 def IsInitialized(self, errors=None):
864 errors: A list which, if provided, will be populated with the field
    [all...]
  /build/tools/
event_log_tags.py 36 self.errors.append((self.filename, linenum, msg))
47 self.errors = []
java-event-log-tags.py 86 if tagfile.errors:
87 for fn, ln, msg in tagfile.errors:
  /development/testrunner/
runtest.py 45 import errors namespace
187 raise errors.AbortError
232 except errors.ParseError:
233 raise errors.AbortError
391 raise errors.AbortError
465 except errors.WaitForResponseTimedOutError:
470 except errors.AbortError, error:
473 except errors.WaitForResponseTimedOutError:
  /development/testrunner/test_defs/
xml_suite_helper.py 25 import errors namespace
94 raise errors.ParseError(msg=error_msg)
  /external/chromium_org/build/android/pylib/gtest/
test_package_apk.py 18 from pylib.android_commands import errors namespace
67 raise errors.DeviceUnresponsiveError(
  /external/chromium_org/extensions/common/permissions/
permissions_data.cc 36 namespace errors = manifest_errors;
104 *error = ErrorUtils::FormatErrorMessageUTF16(errors::kInvalidPermissions,
155 *error = ASCIIToUTF16(errors::kExperimentalFlagRequired);
208 errors::kInvalidPermissionScheme, permission_str),
482 *error = errors::kCannotAccessChromeUrl;
492 *error = errors::kCannotAccessExtensionUrl;
519 *error = ErrorUtils::FormatErrorMessage(errors::kCannotAccessPage,
558 *error = ErrorUtils::FormatErrorMessage(errors::kCannotAccessPage,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner_unittest.py 50 result.errors.append((self.name, self.msg))
100 self.assertEqual(len(runner.errors), 1)
  /external/chromium_org/tools/telemetry/telemetry/page/
buildbot_page_measurement_results.py 38 return self.errors or self.failures
121 # If there were any page errors, we typically will print nothing.
146 # If there were any page errors, we typically will print nothing.
186 [len(self.errors)], 'count', 'unimportant')
  /external/chromium_org/url/
url_canon_icu.cc 172 if (U_SUCCESS(err) && info.errors == 0) {
177 // TODO(jungshik): Look at info.errors to handle them case-by-case basis
179 if (err != U_BUFFER_OVERFLOW_ERROR || info.errors != 0)

Completed in 866 milliseconds

<<21222324252627282930>>