HomeSort by relevance Sort by last modified time
    Searched full:errors (Results 51 - 75 of 9212) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
tc11_XCHG.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc13_laog1.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc24_nonzero_sem.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
pth_create_glibc_2_0.stderr.exp 5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
pth_spinlock.stderr.exp 5 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/valgrind/main/helgrind/tests/
annotate_smart_pointer.stderr.exp 4 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
hg01_all_ok.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
hg06_readshared.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
t2t_laog.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc02_simple_tls.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc03_re_excl.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc07_hbl1.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc08_hbl2.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc11_XCHG.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
tc24_nonzero_sem.stderr.exp 3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
  /external/llvm/test/MC/ARM/
thumb2-diagnostics.s 2 @ RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
13 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'le', but expected 'eq'
14 @ CHECK-ERRORS: addle r0, r1, r2
15 @ CHECK-ERRORS: ^
16 @ CHECK-ERRORS: error: incorrect condition in IT block; got 'al', but expected 'ne'
17 @ CHECK-ERRORS: nop
18 @ CHECK-ERRORS: ^
19 @ CHECK-ERRORS: error: instructions in IT block must be predicable
20 @ CHECK-ERRORS: it le
21 @ CHECK-ERRORS:
    [all...]
diagnostics.s 2 @ RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
8 @ CHECK-ERRORS: error: instruction 'mls' can not set flags,
9 @ CHECK-ERRORS: but 's' suffix specified
23 @ CHECK-ERRORS: error: invalid immediate shift value
24 @ CHECK-ERRORS: adc r1, r2, r3, lsl #invalid
25 @ CHECK-ERRORS: ^
26 @ CHECK-ERRORS: error: immediate shift value out of range
27 @ CHECK-ERRORS: adc r4, r5, r6, lsl #-1
28 @ CHECK-ERRORS: ^
29 @ CHECK-ERRORS: error: immediate shift value out of rang
    [all...]
thumb-diagnostics.s 2 @ RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
4 @ RUN: FileCheck --check-prefix=CHECK-ERRORS-V5 < %t %s
10 @ CHECK-ERRORS: error: invalid instruction
11 @ CHECK-ERRORS: add r1, r2, r3
12 @ CHECK-ERRORS: ^
17 @ CHECK-ERRORS: error: instruction variant requires Thumb2
18 @ CHECK-ERRORS: add r2, r3
19 @ CHECK-ERRORS: ^
20 @ CHECK-ERRORS-V5: error: instruction variant requires ARMv6 or later
21 @ CHECK-ERRORS-V5: mov r2, r
    [all...]
  /bootable/recovery/edify/
main.c 26 int expect(const char* expr_str, const char* expected, int* errors) {
37 printf("error parsing \"%s\" (%d errors)\n",
39 ++*errors;
53 ++*errors;
64 ++*errors;
74 int errors = 0; local
76 expect("a", "a", &errors);
77 expect("\"a\"", "a", &errors);
78 expect("\"\\x61\"", "a", &errors);
82 "a", &errors);
    [all...]
  /external/valgrind/main/memcheck/tests/
error_counts.stderr.exp 0 errors: 0
3 errors: 1
5 errors: 1
12 errors: 1
19 errors: 1
  /external/junit/src/org/junit/runners/model/
NoGenericTypeParametersValidator.java 18 void validate(List<Throwable> errors) {
20 validateNoTypeParameterOnType(each, errors);
23 private void validateNoTypeParameterOnType(Type type, List<Throwable> errors) {
25 errors.add(new Exception("Method " + fMethod.getName()
28 validateNoTypeParameterOnParameterizedType((ParameterizedType) type, errors);
30 validateNoTypeParameterOnWildcardType((WildcardType) type, errors);
32 validateNoTypeParameterOnGenericArrayType((GenericArrayType) type, errors);
36 List<Throwable> errors) {
38 validateNoTypeParameterOnType(each, errors);
42 List<Throwable> errors) {
51 validateNoTypeParameterOnType(arrayType.getGenericComponentType(), errors); local
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
error-warning-count.html 2 function clickHandler(errors, warnings)
6 for (var i = 0; i < errors; ++i)
16 { errors: 0, warnings: 0 },
17 { errors: 1, warnings: 0 },
18 { errors: 2, warnings: 0 },
19 { errors: 0, warnings: 1 },
20 { errors: 0, warnings: 2 },
21 { errors: 1, warnings: 1 },
22 { errors: 1, warnings: 2 },
23 { errors: 2, warnings: 1 }
    [all...]
  /external/clang/test/Frontend/
warning-mapping-2.c 1 // Check that -w has lower priority than -pedantic-errors.
2 // RUN: %clang_cc1 -verify -pedantic-errors -w %s
Weverything.c 1 // Regression check that -pedantic-errors doesn't cause other diagnostics to
2 // become errors.
4 // RUN: %clang_cc1 -verify -Weverything -pedantic-errors %s
  /external/llvm/test/MC/AsmParser/
macros-parsing.s 2 // RUN: FileCheck --check-prefix=CHECK-ERRORS %s < %t.err
8 // CHECK-ERRORS: 9:1: error: unknown directive
14 // CHECK-ERRORS: macro '.test0' is already defined
18 // CHECK-ERRORS: unexpected '.endmacro' in file
21 // CHECK-ERRORS: no matching '.endmacro' in definition

Completed in 589 milliseconds

1 23 4 5 6 7 8 91011>>