HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 126 - 150 of 1189) sorted by null

1 2 3 4 56 7 8 91011>>

  /cts/tests/tests/jni/libjnitest/
android_jni_cts_LinkerNamespacesTest.cpp 109 std::vector<std::string>* errors) {
122 errors->push_back("The library \"" + path +
127 errors->push_back("The library \"" + path + "\" is not a public library but it loaded.");
133 errors->push_back("unexpected dlerror: " + err);
143 std::vector<std::string>* errors) {
153 errors->push_back("Failed to open " + dir + ": " + strerror(errno));
168 } else if (!check_lib(path, library_search_paths, libraries, errors)) {
236 std::vector<std::string> errors; local
242 errors.push_back("Errors in vendor public library file:" + error_msg)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_runner.py 46 errors = [] variable in class:TestCleanUp.testCleanUpWithErrors.MockResult
48 self.errors.append((test, exc_info))
67 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
  /external/chromium-libpac/test/
proxy_resolver_v8_unittest.cc 65 errors.push_back(mstd);
78 std::vector<std::string> errors; member in class:net::__anon14495::MockJSBindings
163 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
178 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
211 EXPECT_EQ(0U, resolver.mock_js_bindings()->errors.size());
245 ASSERT_EQ(1U, bindings->errors.size());
247 bindings->errors[0]);
276 ASSERT_EQ(1U, bindings->errors.size());
279 bindings->errors[0]);
324 ASSERT_EQ(1U, bindings->errors.size())
    [all...]
  /external/doclava/src/com/google/doclava/
TodoFile.java 60 public int errors; field in class:TodoFile.PackageStats
84 String base = classBase + ".errors.";
85 int errors = 0; local
89 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
90 errors++;
99 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
104 errors++;
113 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
118 errors++;
128 setHDF(data, base + errors, f.position(), f.name(), MISSING)
    [all...]
  /external/guice/core/src/com/google/inject/internal/
MembersInjectorStore.java 43 @Override protected MembersInjectorImpl<?> create(TypeLiteral<?> type, Errors errors)
45 return createWithListeners(type, errors);
67 public <T> MembersInjectorImpl<T> get(TypeLiteral<T> key, Errors errors) throws ErrorsException {
68 return (MembersInjectorImpl<T>) cache.get(key, errors);
87 private <T> MembersInjectorImpl<T> createWithListeners(TypeLiteral<T> type, Errors errors)
89 int numErrorsBefore = errors.size();
95 errors.merge(e.getErrorMessages())
    [all...]
ProvisionListenerStackCallback.java 63 public T provision(Errors errors, InternalContext context, ProvisionCallback<T> callable)
65 Provision provision = new Provision(errors, context, callable);
78 throw errors
94 final Errors errors; field in class:ProvisionListenerStackCallback.Provision
103 public Provision(Errors errors, InternalContext context, ProvisionCallback<T> callable) {
106 this.errors = errors;
    [all...]
  /external/guice/core/src/com/google/inject/spi/
InjectionPoint.java 29 import com.google.inject.internal.Errors;
91 Errors errors = new Errors(field); local
94 key = Annotations.getKey(declaringType.getFieldType(field), field, annotations, errors);
96 errors.merge(e.getErrorMessages());
98 errors.merge(e.getErrors());
100 errors.throwConfigurationExceptionIfErrorsExist();
108 Errors errors = new Errors(member) local
242 Errors errors = new Errors(rawType); local
335 Errors errors = new Errors(); local
379 Errors errors = new Errors(); local
    [all...]
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java 29 import com.google.inject.internal.Errors;
94 Errors errors = new Errors(method); local
102 Key<?> key = getKey(errors, parameterTypes.get(i), method, parameterAnnotations[i]);
119 Key<T> key = getKey(errors, returnType, method, method.getAnnotations());
121 = Annotations.findScopeAnnotation(errors, method.getAnnotations());
123 for (Message message : errors.getMessages()) {
132 <T> Key<T> getKey(Errors errors, TypeLiteral<T> type, Member member, Annotation[] annotations)
    [all...]
  /external/icu/icu4c/source/common/unicode/
uidna.h 172 * Output container for IDNA processing errors.
177 * if(U_SUCCESS(errorCode) && info.errors!=0) { ... }
192 * Bit set indicating IDNA processing errors. 0 if no errors.
196 uint32_t errors; member in struct:UIDNAInfo
212 * If any processing step fails, then pInfo->errors will be non-zero and
214 * The label might be modified according to the types of errors.
215 * Labels with severe errors will be left in (or turned into) their Unicode form.
241 * If any processing step fails, then pInfo->errors will be non-zero.
242 * The label might be modified according to the types of errors
    [all...]
  /external/icu/icu4c/source/test/intltest/
jamotest.cpp 402 int32_t errors = 0; local
411 ++errors;
433 if (errors != 0) {
434 errln((UnicodeString)"Test word failures: " + errors + " out of " + total);
  /external/junit/src/main/java/junit/framework/
TestResult.java 11 * The test framework distinguishes between <i>failures</i> and <i>errors</i>.
12 * A failure is anticipated and checked for with assertions. Errors are
33 * Adds an error to the list of errors. The passed in exception
87 * Gets the number of detected errors.
94 * Returns an Enumeration for the errors
96 public synchronized Enumeration<TestFailure> errors() { method in class:TestResult
  /external/junit/src/main/java/junit/textui/
ResultPrinter.java 44 printDefects(result.errors(), result.errorCount(), "error");
89 ", Errors: " + result.errorCount());
  /external/junit/src/main/java/org/junit/runners/
ParentRunner.java 119 * Adds to {@code errors} a throwable for each problem noted with the test class (available from {@link #getTestClass()}).
124 protected void collectInitializationErrors(List<Throwable> errors) {
125 validatePublicVoidNoArgMethods(BeforeClass.class, true, errors);
126 validatePublicVoidNoArgMethods(AfterClass.class, true, errors);
127 validateClassRules(errors);
128 applyValidators(errors);
131 private void applyValidators(List<Throwable> errors) {
134 errors.addAll(each.validateTestClass(getTestClass()));
140 * Adds to {@code errors} if any method in this class is annotated with
151 boolean isStatic, List<Throwable> errors) {
160 CLASS_RULE_VALIDATOR.validate(getTestClass(), errors); local
161 CLASS_RULE_METHOD_VALIDATOR.validate(getTestClass(), errors); local
    [all...]
  /external/junit/src/main/java/org/junit/runners/parameterized/
BlockJUnit4ClassRunnerWithParameters.java 87 protected void validateConstructor(List<Throwable> errors) {
88 validateOnlyOneConstructor(errors);
90 validateZeroArgConstructor(errors);
95 protected void validateFields(List<Throwable> errors) {
96 super.validateFields(errors);
104 errors.add(new Exception("Invalid @Parameter value: "
116 errors.add(new Exception("@Parameter(" + index
119 errors.add(new Exception("@Parameter(" + index
  /external/libcups/cups/
testlang.c 43 int errors = 0; /* Number of errors */ local
76 errors ++;
85 errors += test_string(language, "No");
86 errors += test_string(language, "Yes");
112 errors ++;
126 errors ++;
135 errors ++;
144 errors ++;
200 errors ++
    [all...]
  /external/libcups/filter/
testraster.c 201 int errors; /* Number of errors */ local
207 errors = do_ps_tests();
208 errors += do_raster_tests(CUPS_RASTER_WRITE);
209 errors += do_raster_tests(CUPS_RASTER_WRITE_COMPRESSED);
210 errors += do_raster_tests(CUPS_RASTER_WRITE_PWG);
211 errors += do_raster_tests(CUPS_RASTER_WRITE_APPLE);
220 for (errors = 0, num_options = 0, options = NULL, i = 1; i < argc; i ++)
251 errors += do_ppd_tests(argv[i], num_options, options);
253 errors += do_ras_file(argv[i])
328 int errors = 0; \/* Number of errors *\/ local
457 int errors = 0; \/* Number of errors *\/ local
521 int errors = 0; \/* Number of errors *\/ local
    [all...]
  /external/libese/libese/include/ese/
ese_hw_api.h 173 const char **errors; member in struct:EseOperations
191 * Provided by libese to manage exposing usable errors up the stack to the
  /external/linux-kselftest/tools/testing/selftests/powerpc/mm/
subpage_prot.c 35 int errors; variable
80 ++errors;
119 errors = 0;
130 if (errors) {
131 printf("%d errors detected\n", errors);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_lock/
s-c2.c 235 int errors; local
246 errors = 0;
384 errors++;
393 if (errors == 0) {
404 output(" %i lock operation failed.\n", errors);
  /external/parameter-framework/upstream/parameter/
SystemClass.cpp 111 core::Results errors; local
112 bool bLoadPluginsSuccess = loadSubsystemsFromSharedLibraries(errors, pSubsystemPlugins);
116 strError = utility::asString(errors);
121 bool CSystemClass::loadSubsystemsFromSharedLibraries(core::Results &errors,
161 if (!loadPlugins(lstrPluginFiles, errors)) {
170 errors.push_back("Unable to load the following plugins: " +
179 bool CSystemClass::loadPlugins(list<string> &lstrPluginFiles, core::Results &errors)
205 errors.push_back(e.what());
  /external/protobuf/src/google/protobuf/
message_unittest.cc 185 vector<string> errors; local
190 errors = log.GetMessages(ERROR);
193 ASSERT_EQ(1, errors.size());
196 errors[0]);
298 vector<string> errors; local
299 message.FindInitializationErrors(&errors);
300 ASSERT_EQ(3, errors.size());
301 EXPECT_EQ("a", errors[0]);
302 EXPECT_EQ("b", errors[1]);
303 EXPECT_EQ("c", errors[2])
    [all...]
  /external/python/cpython2/Lib/unittest/test/
test_runner.py 47 errors = [] variable in class:TestCleanUp.testCleanUpWithErrors.MockResult
49 self.errors.append((test, exc_info))
68 (test1, (Type1, instance1, _)), (test2, (Type2, instance2, _)) = reversed(MockResult.errors)
  /external/python/cpython3/Lib/test/
test_unicodedata.py 15 errors = 'surrogatepass' variable
64 h.update(''.join(data).encode(encoding, errors))
  /external/python/cpython3/Modules/cjkcodecs/clinic/
multibytecodec.c.h 6 "encode($self, /, input, errors=None)\n"
11 "\'errors\' may be given to set a different error handling scheme. Default is\n"
12 "\'strict\' meaning that encoding errors raise a UnicodeEncodeError. Other possible\n"
22 const char *errors);
28 static const char * const _keywords[] = {"input", "errors", NULL};
31 const char *errors = NULL; local
34 &input, &errors)) {
37 return_value = _multibytecodec_MultibyteCodec_encode_impl(self, input, errors);
44 "decode($self, /, input, errors=None)\n"
49 "\'errors\' may be given to set a different error handling scheme. Default is\n
69 const char *errors = NULL; local
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
AccessibilityUtil.java 99 List<AccessibilityViewCheckResult> errors = AccessibilityCheckResultUtils.getResultsForType( local
101 return (errors.size() == 0);
165 * Control whether or not to throw exceptions when accessibility errors are found.

Completed in 588 milliseconds

1 2 3 4 56 7 8 91011>>