HomeSort by relevance Sort by last modified time
    Searched refs:mismatch (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/tools/dsymutil/X86/
mismatch.m 3 module mismatch {
4 header "mismatch.h"
7 echo "struct s;"> mismatch.h
10 -fdisable-module-hash mismatch.m -o 1.o
11 echo > mismatch.h
14 -fdisable-module-hash mismatch.m -o /dev/null
18 // RUN: cp %p/../Inputs/mismatch/1.o %p/../Inputs/mismatch/mismatch.pcm %t.dir
19 // RUN: cp %p/../Inputs/mismatch/1.o %t.dir/2.
    [all...]
  /dalvik/dx/tests/100-local-mismatch/
run 18 dx --dex Blort1.class 2>&1 | grep mismatch
21 dx --dex Blort2.class 2>&1 | grep mismatch
24 dx --dex Blort3.class 2>&1 | grep mismatch
27 dx --dex Blort4.class 2>&1 | grep mismatch
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
mism-1.s 1 ! Test architecture mismatch warnings.
2 ! We don't test every possible mismatch, we just want to be reasonable sure
3 ! the mismatch checking code works.
10 divscc %g1,%g2,%g3 ! { dg-error "mismatch|sparclite" "sparclite divscc mismatch" }
12 scan %g1,%g2,%g3 ! { dg-error "mismatch|sparclite" "sparclite scan mismatch" }
16 movrz %g1,%g2,%g3 ! { dg-error "mismatch|v9" "v9 fp reg mismatch" }
20 shutdown ! { dg-error "mismatch|v9a" "v9a shutdown mismatch"
    [all...]
mism-2.s 1 ! Test architecture mismatch warnings from v9b upwards.
2 ! We don't test every possible mismatch, we just want to be reasonable sure
3 ! the mismatch checking code works.
10 addxc %g1,%g2,%g3 ! { dg-error "mismatch|v9d" "v9d addxc mismatch" }
14 aes_kexpand0 %f0,%f2,%f4 ! { dg-error "mismatch|v9e" "v9b aes_kexpand0 mismatch" }
18 fnumaddd %f0,%f2,%f0,%f4 ! { dg-error "mismatch|v9v" "v9v fnumaddd mismatch" }
22 xmpmul 4 ! { dg-error "mismatch|v9m" "v9m xmpmul mismatch"
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
illegal-lse.l 2 [^:]*:68: Error: operand mismatch -- `cas w0,x1,\[x2\]'
4 [^:]*:68: Error: operand mismatch -- `casa w0,x1,\[x2\]'
6 [^:]*:68: Error: operand mismatch -- `casl w0,x1,\[x2\]'
8 [^:]*:68: Error: operand mismatch -- `casal w0,x1,\[x2\]'
10 [^:]*:68: Error: operand mismatch -- `casb w0,x1,\[x2\]'
12 [^:]*:68: Error: operand mismatch -- `cash w0,x1,\[x2\]'
14 [^:]*:68: Error: operand mismatch -- `casab w0,x1,\[x2\]'
16 [^:]*:68: Error: operand mismatch -- `caslb w0,x1,\[x2\]'
18 [^:]*:68: Error: operand mismatch -- `casalb w0,x1,\[x2\]'
20 [^:]*:68: Error: operand mismatch -- `casah w0,x1,\[x2\]
    [all...]
  /external/autotest/client/site_tests/security_Minijail0/src/
test-caps 17 mismatch=""
25 mismatch="$caps"
29 [ $matched -eq 1 ] || die "Did not drop non-CAP_DAC_OVERRIDE caps: $mismatch"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
arch-err-1.s 1 ; Test mismatch of --march=ARCH1 and .arch ARCH2.
arch-err-2.s 1 ; Test mismatch of --march=ARCH1 and .arch ARCH2.
arch-err-3.s 1 ; Test mismatch of --march=ARCH1 and .arch ARCH2.
arch-err-4.s 1 ; Test mismatch of --march=ARCH1 and .arch ARCH2.
arch-err-5.s 1 ; Test mismatch of --march=ARCH1 and .arch ARCH2.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
comparecodecs.py 15 mismatch = 0
28 print ' * encoding mismatch for 0x%04X: %-14r != %r' % \
30 mismatch += 1
43 print ' * decoding mismatch for 0x%04X: %-14r != %r' % \
45 mismatch += 1
46 if mismatch:
48 print 'Found %i mismatches' % mismatch
  /external/python/cpython2/Tools/unicode/
comparecodecs.py 15 mismatch = 0
28 print ' * encoding mismatch for 0x%04X: %-14r != %r' % \
30 mismatch += 1
43 print ' * decoding mismatch for 0x%04X: %-14r != %r' % \
45 mismatch += 1
46 if mismatch:
48 print 'Found %i mismatches' % mismatch
  /external/python/cpython3/Tools/unicode/
comparecodecs.py 15 mismatch = 0
28 print(' * encoding mismatch for 0x%04X: %-14r != %r' % \
30 mismatch += 1
43 print(' * decoding mismatch for 0x%04X: %-14r != %r' % \
45 mismatch += 1
46 if mismatch:
48 print('Found %i mismatches' % mismatch)
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 17 Condition<O> apply(I value, Description mismatch);
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) {
34 return new Matched<T>(theValue, mismatch);
39 private final Description mismatch; field in class:Condition.Matched
41 private Matched(T theValue, Description mismatch) {
43 this.mismatch = mismatch;
51 mismatch.appendText(message);
52 matcher.describeMismatch(theValue, mismatch);
58 return next.apply(theValue, mismatch);
    [all...]
FeatureMatcher.java 22 * @param featureName Identifying text for mismatch message
39 protected boolean matchesSafely(T actual, Description mismatch) {
42 mismatch.appendText(featureName).appendText(" ");
43 subMatcher.describeMismatch(featureValue, mismatch);
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/global/
main.go 15 panic("testLoop: mismatch")
29 panic("testMediumOffset: index mismatch")
35 panic("testMediumOffset: direct mismatch")
40 panic("testMediumOffset: address mismatch")
48 panic("testLargeOffset: index mismatch")
54 panic("testLargeOffset: direct mismatch")
59 panic("testLargeOffset: address mismatch")
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/global/
main.go 15 panic("testLoop: mismatch")
29 panic("testMediumOffset: index mismatch")
35 panic("testMediumOffset: direct mismatch")
40 panic("testMediumOffset: address mismatch")
48 panic("testLargeOffset: index mismatch")
54 panic("testLargeOffset: direct mismatch")
59 panic("testLargeOffset: address mismatch")
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.nonmodifying/mismatch/
mismatch_pred.pass.cpp 16 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2, Pred pred);
41 assert(std::mismatch(II(ia), II(ia + sa), II(ib), EQ())
43 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), EQ())
47 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), std::ref(bcp))
53 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), EQ())
55 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), RAI(ib + sb), EQ())
58 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), std::ref(bcp))
63 assert(std::mismatch(ia, ia + sa, ib, EQ()) ==
67 assert(std::mismatch(ia, ia + sa, ib, ib + sb, EQ()) ==
69 assert(std::mismatch(ia, ia + sa, ib, ib + 2, EQ()) =
    [all...]
mismatch.pass.cpp 15 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2);
34 assert(std::mismatch(II(ia), II(ia + sa), II(ib))
37 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib))
41 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+sb))
44 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), RAI(ib+sb))
48 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+2))
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug487.go 17 a, b := G() // ERROR "assignment mismatch"
18 a, b = G() // ERROR "assignment mismatch"
23 return G() // ERROR "too many|mismatch"
bug289.go 12 a, b := f() // ERROR "assignment mismatch|does not match"
19 a, b = f() // ERROR "assignment mismatch|does not match"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug487.go 17 a, b := G() // ERROR "assignment mismatch"
18 a, b = G() // ERROR "assignment mismatch"
23 return G() // ERROR "too many|mismatch"
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/
cpu-warn1.s 1 ; Test mismatch between cpu option passed by mcpu option and .cpu
  /external/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/
mismatch.pass.cpp 15 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2);
19 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2); // C++14
35 auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic));
39 auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic));
43 auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic));
47 auto p4 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic));
51 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)));
54 auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)));
72 assert(std::mismatch(II(ia), II(ia + sa), II(ib))
75 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib)
    [all...]

Completed in 327 milliseconds

1 2 3 4 5 6 7 8 91011>>