Searched refs:errors (Results 526 - 550 of 954) sorted by relevance

<<21222324252627282930>>

/external/protobuf/src/google/protobuf/
H A Dreflection_ops.cc220 vector<string>* errors) {
228 errors->push_back(prefix + descriptor->field(i)->name());
248 errors);
254 errors);
217 FindInitializationErrors( const Message& message, const string& prefix, vector<string>* errors) argument
/external/valgrind/main/gdbserver_tests/
H A Dmssnapshot.stderrB.exp6 v.info all_errors : show all errors found so far
9 v.info n_errs_found [msg] : show the nr of errors found so far and the given msg
/external/valgrind/main/memcheck/tests/linux/
H A Dtimerfd-syscall.stderr.exp55 For counts of detected and suppressed errors, rerun with: -v
56 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/main/memcheck/tests/
H A Dpartial_load_dflt.stderr.exp33 For counts of detected and suppressed errors, rerun with: -v
34 ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
/external/chromium_org/extensions/common/
H A Dextension_l10n_util.cc28 namespace errors = extensions::manifest_errors;
51 errors::kLocalesInvalidLocale,
117 *error = errors::kInvalidDefaultLocale;
139 *error = errors::kInvalidName;
178 *error = errors::kInvalidFileBrowserHandler;
193 *error = errors::kInvalidInputComponents;
359 *error = errors::kLocalesNoValidLocaleNamesListed;
/external/chromium_org/third_party/cython/src/Cython/Tests/
H A Dxmlrunner.py180 self.errors, 'ERROR', 'E')
182 def printErrorList(self, flavour, errors):
184 for test_info in errors:
201 for tests in (self.successes, self.failures, self.errors):
231 errors = len([1 for e in tests if e.outcome == _TestInfo.ERROR])
232 testsuite.setAttribute('errors', str(errors))
360 failed, errored = (len(result.failures), len(result.errors))
366 self.stream.write("errors=%d" % errored)
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
H A Dcloudstorage_api.py35 from . import errors namespace
75 errors.AuthorizationError: if authorization failed.
76 errors.NotFoundError: if an object that's expected to exist doesn't.
109 errors.NotFoundError: if the file doesn't exist prior to deletion.
116 errors.check_status(status, [204], filename, resp_headers=resp_headers)
132 errors.AuthorizationError: if authorization failed.
133 errors.NotFoundError: if an object that's expected to exist doesn't.
139 errors.check_status(status, [200], filename, resp_headers=headers)
165 errors.AuthorizationError: if authorization failed.
166 errors
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duts46.cpp42 // Severe errors which usually result in a U+FFFD replacement character in the result string.
240 if( dest.length()>=254 && (info.errors&UIDNA_ERROR_DOMAIN_NAME_TOO_LONG)==0 &&
244 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG;
325 info.errors|=UIDNA_ERROR_EMPTY_LABEL;
346 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG;
349 info.errors|=info.labelErrors;
392 info.errors|=info.labelErrors;
398 info.errors|=info.labelErrors;
401 if( info.isBiDi && U_SUCCESS(errorCode) && (info.errors&severeErrors)==0 &&
404 info.errors|
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage.cc96 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/icu/icu4c/source/common/
H A Duts46.cpp42 // Severe errors which usually result in a U+FFFD replacement character in the result string.
240 if( dest.length()>=254 && (info.errors&UIDNA_ERROR_DOMAIN_NAME_TOO_LONG)==0 &&
244 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG;
325 info.errors|=UIDNA_ERROR_EMPTY_LABEL;
346 info.errors|=UIDNA_ERROR_DOMAIN_NAME_TOO_LONG;
349 info.errors|=info.labelErrors;
391 info.errors|=info.labelErrors;
397 info.errors|=info.labelErrors;
400 if( info.isBiDi && U_SUCCESS(errorCode) && (info.errors&severeErrors)==0 &&
403 info.errors|
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc987 vector<string> errors; local
992 errors = error_log.GetMessages(ERROR);
995 ASSERT_EQ(1, errors.size());
997 "A protocol message was rejected because it was too big", errors[0]);
1033 // of data from it. Then it returns the logged errors and warnings in the given
1053 vector<string> errors; local
1055 SetupTotalBytesLimitWarningTest(10240, 1024, &errors, &warnings);
1057 EXPECT_EQ(0, errors.size());
1070 vector<string> errors; local
1074 SetupTotalBytesLimitWarningTest(10240, -1, &errors,
1170 vector<string> errors; local
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp717 StreamString errors; local
759 if (!m_impl_code->Install(errors, exe_ctx))
762 log->Printf ("Failed to install implementation lookup: %s.", errors.GetData());
771 errors.Printf ("No method lookup implementation code found.");
794 errors.Clear();
795 unsigned num_errors = m_impl_function->CompileFunction(errors);
799 log->Printf ("Error compiling function: \"%s\".", errors.GetData());
803 errors.Clear();
804 if (!m_impl_function->WriteFunctionWrapper(exe_ctx, errors))
807 log->Printf ("Error Inserting function: \"%s\".", errors
1051 StreamString errors; local
[all...]
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp78 StreamString errors; local
92 errors,
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.lua371 errors_found and "Errors found" or "No errors found")
377 local status, errors = pcall(CheckCorrectnessForArch, arch)
379 print(string.format("There was an error: %s", errors))
380 errors = true
382 return errors
385 local errors = false
392 errors = SafeCheckCorrectnessForArch(arch, report) or errors
395 os.exit(errors and 1 or 0)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_sanity.c58 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/
H A Dtgsi_sanity.c58 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/chromium_org/chrome/browser/extensions/api/identity/
H A Didentity_apitest.cc60 namespace errors = identity_constants;
756 EXPECT_EQ(std::string(errors::kInvalidClientId), error);
767 EXPECT_EQ(std::string(errors::kInvalidScopes), error);
778 EXPECT_EQ(std::string(errors::kUserNotSignedIn), error);
791 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
804 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
816 EXPECT_EQ(std::string(errors::kNoGrant), error);
833 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
847 EXPECT_TRUE(StartsWithASCII(error, errors::kAuthFailure, false));
907 EXPECT_EQ(std::string(errors
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dxslt.c139 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++;
1295 style->errors++;
1311 style->errors++;
1390 if (style != NULL) style->errors
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dpython_message.py763 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())
885 errors
[all...]
/external/protobuf/python/google/protobuf/
H A Dreflection.py792 errors = []
860 def IsInitialized(self, errors=None):
864 errors: A list which, if provided, will be populated with the field
877 if errors is not None:
878 errors.extend(self.FindInitializationErrors())
886 if errors is not None:
887 errors.extend(self.FindInitializationErrors())
890 if errors is not None:
891 errors.extend(self.FindInitializationErrors())
906 errors
[all...]
/external/chromium_org/extensions/common/api/bluetooth/
H A Dbluetooth_manifest_permission.cc26 namespace errors = bluetooth_errors;
36 errors::kErrorInvalidUuid, uuid);
/external/chromium_org/extensions/renderer/resources/
H A Dschema_utils.js20 if (schemaValidator.errors.length == 0)
24 err = schemaValidator.errors[i]; i++) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DResource.js183 get errors()
188 set errors(x)
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
H A Dsmoothness.py127 if 'frame_queueing_durations' in stats.errors:
128 none_value_reason = stats.errors['frame_queueing_durations']
/external/valgrind/main/drd/tests/
H A Dannotate_hb_err.stderr.exp25 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)

Completed in 805 milliseconds

<<21222324252627282930>>