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

1 2 3 4 5 6 7

  /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...]
  /external/swiftshader/third_party/llvm-7.0/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
  /external/openssh/regress/
proto-mismatch.sh 1 # $OpenBSD: proto-mismatch.sh,v 1.4 2015/03/03 22:35:19 markus Exp $
4 tid="protocol version mismatch"
6 mismatch () function
18 mismatch 2 SSH-1.5-HALLO
20 mismatch 1 SSH-2.0-HALLO
  /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);
  /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...]
mismatch_pred.pass.cpp 16 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2, Pred pred);
20 // mismatch(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2, Pred pred); // C++14
40 auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), eq);
44 auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic), eq);
48 auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), eq);
52 auto p4 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic), eq);
56 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)), eq);
59 auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic)), eq);
83 assert(std::mismatch(II(ia), II(ia + sa), II(ib), EQ())
85 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), EQ()
    [all...]
  /build/make/core/combo/
fdo.mk 33 -DANDROID_FDO -fprofile-correction -Wcoverage-mismatch -Wno-error
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/xml/
HasXPath.java 60 public boolean matchesSafely(Node item, Description mismatch) {
61 return evaluated(item, mismatch)
74 private Condition<Object> evaluated(Node item, Description mismatch) {
76 return matched(compiledXPath.evaluate(item, evaluationMode), mismatch);
78 mismatch.appendText(e.getMessage());
86 public Condition<String> apply(Object value, Description mismatch) {
88 mismatch.appendText("xpath returned no results.");
91 return matched(String.valueOf(value), mismatch);
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
AllOf.java 23 public boolean matches(Object o, Description mismatch) {
26 mismatch.appendDescriptionOf(matcher).appendText(" ");
27 matcher.describeMismatch(o, mismatch);
IsInstanceOf.java 40 protected boolean matches(Object item, Description mismatch) {
42 mismatch.appendText("null");
47 mismatch.appendValue(item).appendText(" is a " + item.getClass().getName());
CombinableMatcher.java 17 protected boolean matchesSafely(T item, Description mismatch) {
19 matcher.describeMismatch(item, mismatch);
  /external/autotest/server/site_tests/firmware_Cr50CCDServoCap/
firmware_Cr50CCDServoCap.py 185 If there is any mismatch between the device state and state flags,
194 mismatch = []
196 mismatch.append('CCD functionality enabled without CCD EXT')
199 mismatch.append('CCD output is enabled with servo attached')
201 mismatch.append('AP UART enabled without AP UART on')
203 mismatch.append('EC UART enabled without EC on')
204 return mismatch
227 mismatch = self.check_state_flags(ccdstate)
235 mismatch.append('%s is %r not %r' % (name, ccdstate[name],
237 if mismatch
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
fnmatch.c 105 const char * const mismatch = pattern; local
108 *ep = mismatch;
115 *ep = mismatch;
132 *ep = mismatch;
147 const char * const mismatch = *pattern; local
246 *pattern = mismatch;
295 const char *mismatch = NULL; local
373 mismatch = pattern;
443 * but slashes will mismatch, and are not consumed)
457 pattern = mismatch;
    [all...]
  /cts/tests/signature/lib/common/src/android/signature/cts/
FailureType.java 25 static FailureType mismatch(JDiffClassDescription description) { method in class:FailureType
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
TestStreaming.java 85 boolean mismatch, testOK = true;
104 mismatch = false;
121 mismatch |= j >= nPortions ||
128 if (mismatch || j != nPortions) {
130 errln("\nProcessed lengths mismatch for" +
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestStreaming.java 82 boolean mismatch, testOK = true;
101 mismatch = false;
118 mismatch |= j >= nPortions ||
125 if (mismatch || j != nPortions) {
127 errln("\nProcessed lengths mismatch for" +
  /external/autotest/server/site_tests/firmware_Cr50DeepSleepStress/
firmware_Cr50DeepSleepStress.py 51 mismatch = []
53 mismatch.append('count mismatch: expected %s got %s' %
56 mismatch.append('version mismatch: expected %s got %s' %
59 if mismatch:
61 '" and "'.join(mismatch))
  /external/antlr/runtime/C/src/
antlr3treeparser.c 38 static void mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow);
83 parser->rec->mismatch = mismatch;
169 /** Override for standard base recognizer mismatch function
174 mismatch (pANTLR3_BASE_RECOGNIZER recognizer, ANTLR3_UINT32 ttype, pANTLR3_BITSET_LIST follow) function
  /external/curl/
androidconfigure 96 patch -p1 --no-backup-if-mismatch < local-configure.patch
  /external/mockito/src/test/java/org/mockitousage/stubbing/
StrictStubbingEndToEndTest.java 103 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.ReportMismatchButNotUnusedStubbing
130 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.LenientStrictness1
143 @Test public void mismatch() { method in class:StrictStubbingEndToEndTest.LenientStrictness2

Completed in 2246 milliseconds

1 2 3 4 5 6 7