Home
last modified time | relevance | path

Searched refs:mismatch (Results 1 – 25 of 392) sorted by relevance

12345678910>>...16

/external/llvm/test/tools/dsymutil/X86/
Dmismatch.m3 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.o
23 @import mismatch;
27 // CHECK: warning: hash mismatch
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/dsymutil/X86/
Dmismatch.m3 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.o
23 @import mismatch;
27 // CHECK: warning: hash mismatch
[all …]
/external/libcxx/test/std/algorithms/alg.nonmodifying/mismatch/
Dmismatch_pred.pass.cpp40 auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), eq); in test_constexpr()
44 auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic), eq); in test_constexpr()
48 auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), eq); in test_constexpr()
52 auto p4 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic), eq); in test_constexpr()
56 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic)), eq); in test_constexpr()
59 …auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic))… in test_constexpr()
83 assert(std::mismatch(II(ia), II(ia + sa), II(ib), EQ()) in main()
85 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), EQ()) in main()
89 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), std::ref(bcp)) in main()
95 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib + sb), EQ()) in main()
[all …]
Dmismatch.pass.cpp35 auto p1 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic)); in test_constexpr()
39 auto p2 = std::mismatch(std::begin(ia), std::end(ia), std::begin(ic), std::end(ic)); in test_constexpr()
43 auto p3 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic)); in test_constexpr()
47 auto p4 = std::mismatch(std::begin(ib), std::end(ib), std::begin(ic), std::end(ic)); in test_constexpr()
51 auto p5 = std::mismatch(II(std::begin(ib)), II(std::end(ib)), II(std::begin(ic))); in test_constexpr()
54 …auto p6 = std::mismatch(BI(std::begin(ib)), BI(std::end(ib)), BI(std::begin(ic)), BI(std::end(ic))… in test_constexpr()
72 assert(std::mismatch(II(ia), II(ia + sa), II(ib)) in main()
75 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib)) in main()
79 assert(std::mismatch(II(ia), II(ia + sa), II(ib), II(ib+sb)) in main()
82 assert(std::mismatch(RAI(ia), RAI(ia + sa), RAI(ib), RAI(ib+sb)) in main()
[all …]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCondition.java17 Condition<O> apply(I value, Description mismatch); in apply() argument
33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) { in matched() argument
34 return new Matched<T>(theValue, mismatch); in matched()
39 private final Description mismatch; field in Condition.Matched
41 private Matched(T theValue, Description mismatch) { in Matched() argument
43 this.mismatch = mismatch; in Matched()
51 mismatch.appendText(message); in matching()
52 matcher.describeMismatch(theValue, mismatch); in matching()
58 return next.apply(theValue, mismatch); in and()
DFeatureMatcher.java39 protected boolean matchesSafely(T actual, Description mismatch) { in matchesSafely() argument
42 mismatch.appendText(featureName).appendText(" "); in matchesSafely()
43 subMatcher.describeMismatch(featureValue, mismatch); in matchesSafely()
/external/autotest/server/site_tests/firmware_Cr50CCDServoCap/
Dfirmware_Cr50CCDServoCap.py194 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:
240 mismatch))
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-profdata/
Dthreaded-count-mismatch.test4 RUN: %S/Inputs/counter-mismatch-1.proftext \
5 RUN: %S/Inputs/counter-mismatch-2.proftext \
6 RUN: %S/Inputs/counter-mismatch-3.proftext \
7 RUN: %S/Inputs/counter-mismatch-4.proftext \
10 CHECK: Function basic block count change detected (counter mismatch)
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/xml/
DHasXPath.java60 public boolean matchesSafely(Node item, Description mismatch) { in matchesSafely() argument
61 return evaluated(item, mismatch) in matchesSafely()
74 private Condition<Object> evaluated(Node item, Description mismatch) { in evaluated() argument
76 return matched(compiledXPath.evaluate(item, evaluationMode), mismatch); in evaluated()
78 mismatch.appendText(e.getMessage()); in evaluated()
86 public Condition<String> apply(Object value, Description mismatch) { in nodeExists()
88 mismatch.appendText("xpath returned no results."); in nodeExists()
91 return matched(String.valueOf(value), mismatch); in nodeExists()
/external/python/cpython2/Tools/unicode/
Dcomparecodecs.py15 mismatch = 0
30 mismatch += 1
45 mismatch += 1
46 if mismatch:
48 print 'Found %i mismatches' % mismatch
/external/python/cpython3/Tools/unicode/
Dcomparecodecs.py15 mismatch = 0
30 mismatch += 1
45 mismatch += 1
46 if mismatch:
48 print('Found %i mismatches' % mismatch)
/external/deqp/data/gles31/shaders/es32/
Dseparate_shader_validation.test91 desc "Variable type mismatch"
123 desc "Variable precision mismatch"
155 desc "Variable type mismatch, explicit varying locations"
187 desc "Variable precision mismatch, explicit varying locations"
219 desc "Variable location mismatch"
251 desc "Variable location mismatch"
283 desc "Variable location mismatch"
316 desc "Variable location mismatch"
391 desc "Struct member name mismatch"
431 desc "Struct member type mismatch"
[all …]
Dlinkage_io_block.test22 desc "Shader io block mismatch: different number of declarations"
57 desc "Shader io block mismatch: different member declaration order"
93 desc "Shader io block mismatch: different member type"
128 desc "Shader io block mismatch: different member name"
162 desc "Shader io block mismatch: different member array size"
235 desc "Shader io block mismatch: different array size"
269 desc "Shader io block mismatch: missing output block"
/external/deqp/data/gles31/shaders/es31/
Dseparate_shader_validation.test73 desc "Variable type mismatch"
105 desc "Variable precision mismatch"
137 desc "Variable type mismatch, explicit varying locations"
169 desc "Variable precision mismatch, explicit varying locations"
201 desc "Variable location mismatch"
233 desc "Variable location mismatch"
265 desc "Variable location mismatch"
298 desc "Variable location mismatch"
373 desc "Struct member name mismatch"
413 desc "Struct member type mismatch"
[all …]
Dlinkage_io_block.test3 desc "Shader io block mismatch: different number of declarations"
39 desc "Shader io block mismatch: different member declaration order"
76 desc "Shader io block mismatch: different member type"
112 desc "Shader io block mismatch: different member name"
147 desc "Shader io block mismatch: different member array size"
222 desc "Shader io block mismatch: different array size"
257 desc "Shader io block mismatch: missing output block"
Dlinkage_shader_storage_block.test4 desc "Shader storage block mismatch: different number of declarations"
43 desc "Shader storage block mismatch: different number of declarations"
83 desc "Shader storage block mismatch: different number of declarations"
121 desc "Shader storage block mismatch: different number of declarations"
159 desc "Shader storage block mismatch: different number of declarations"
197 desc "Shader storage block mismatch: different number of declarations"
235 desc "Shader storage block mismatch: different number of declarations"
273 desc "Shader storage block mismatch: different number of declarations"
/external/clang/test/ASTMerge/Inputs/
Dinterface1.m13 // Ivar mismatch
20 // Superclass mismatch
31 // Method mismatch
37 // Method mismatch
43 // Method mismatch
Dinterface2.m13 // Ivar mismatch
20 // Superclass mismatch
31 // Method mismatch
36 // Method mismatch
42 // Method mismatch
/external/autotest/server/site_tests/firmware_Cr50DeepSleepStress/
Dfirmware_Cr50DeepSleepStress.py51 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/openssh/regress/
Dproto-mismatch.sh6 mismatch () function
18 mismatch 2 SSH-1.5-HALLO
20 mismatch 1 SSH-2.0-HALLO
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestStreaming.java82 boolean mismatch, testOK = true; in testStreaming()
101 mismatch = false; in testStreaming()
118 mismatch |= j >= nPortions || in testStreaming()
125 if (mismatch || j != nPortions) { in testStreaming()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestStreaming.java85 boolean mismatch, testOK = true; in testStreaming()
104 mismatch = false; in testStreaming()
121 mismatch |= j >= nPortions || in testStreaming()
128 if (mismatch || j != nPortions) { in testStreaming()
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
DAllOf.java23 public boolean matches(Object o, Description mismatch) { in matches() argument
26 mismatch.appendDescriptionOf(matcher).appendText(" "); in matches()
27 matcher.describeMismatch(o, mismatch); in matches()
DIsInstanceOf.java40 protected boolean matches(Object item, Description mismatch) { in matches() argument
42 mismatch.appendText("null"); in matches()
47 mismatch.appendValue(item).appendText(" is a " + item.getClass().getName()); in matches()
/external/libaom/libaom/aom_util/
Ddebug_util.c192 int mismatch = 0; in mismatch_check_block_pre() local
199 mismatch = 1; in mismatch_check_block_pre()
203 if (mismatch) { in mismatch_check_block_pre()
238 int mismatch = 0; in mismatch_check_block_tx() local
245 mismatch = 1; in mismatch_check_block_tx()
249 if (mismatch) { in mismatch_check_block_tx()

12345678910>>...16