Searched refs:check (Results 76 - 100 of 1870) sorted by relevance

1234567891011>>

/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
H A DIViolationsOutput.java12 package org.jacoco.report.check;
/external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
H A Dparent0133 check dir1/a dir2/a
39 check "$disk3" dir1/b dir2/b
H A Dchild0430 check -n "$disk2" dir1/a
H A Dparent0433 check -n "$disk3" dir1/b
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DNone.java10 package org.tukaani.xz.check;
/external/syslinux/com32/lib/libpng/
H A Dpngwio.c52 png_uint_32 check; local
57 if ( !WriteFile((HANDLE)(png_ptr->io_ptr), data, length, &check, NULL) )
58 check = 0;
60 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
62 if (check != length)
77 png_uint_32 check; local
89 if ( !WriteFile(io_ptr, near_data, length, &check, NULL) )
90 check = 0;
92 check = fwrite(near_data, 1, length, io_ptr);
99 check
231 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
245 png_far_to_near(png_structp png_ptr, png_voidp ptr, int check) argument
[all...]
/external/autotest/client/site_tests/video_WebRtcMediaRecorder/
H A Dmediarecorder_test_utils.js23 var check = setInterval(function() {
30 clearInterval(check);
/external/icu/icu4c/source/test/
H A DMakefile.in41 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
42 check-exhaustive check-exhaustive-recursive
62 check: everything check-recursive check-local
63 check-recursive: all-recursive
67 check
[all...]
/external/llvm/test/MC/Sparc/
H A Dsparc-directive-xword.s1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=SPARC32
2 ! RUN: llvm-mc %s -triple sparc64 -show-encoding | FileCheck %s --check-prefix=SPARC64
3 ! RUN: llvm-mc %s -triple sparcv9 -show-encoding | FileCheck %s --check-prefix=SPARCV9
/external/snakeyaml/src/test/java/biz/source_code/base64Coder/
H A DBase64CoderTest.java27 check("Aladdin:open sesame", "QWxhZGRpbjpvcGVuIHNlc2FtZQ==");
28 check("a", "YQ==");
29 check("aa", "YWE=");
30 check("a=", "YT0=");
31 check("", "");
65 private void check(String text, String encoded) throws UnsupportedEncodingException { method in class:Base64CoderTest
/external/python/cpython2/Lib/test/
H A Dtest_rfc822.py37 def check(self, msg, results): member in class:MessageTestCase
68 self.check(
78 self.check(
87 self.check(
98 self.check(
107 self.check(
124 self.check(
132 self.check(
138 self.check(
146 self.check(
[all...]
H A Dtest_sys.py79 # check that it worked.
100 # Raise an exception and check that it can be cleared
188 # can't check more than the type, as the user might have changed it
529 # check all types defined in Objects/
533 check = self.check_sizeof
535 check(True, size('l'))
538 check(buffer(''), size('2P2Pil'))
540 check(len, size('3P'))
545 check(x, vsize('iPP') + x.__alloc__())
547 check(ite
[all...]
/external/ltp/testcases/kernel/fs/fs_bind/bind/
H A Dtest2444 mkdir dir1/1 dir1/1/2 dir1/1/2/3 dir1/1/2/check dir2 dir3 dir4
54 mount --bind dir4 dir2/check
56 check dir1/1/2/check/ dir4
68 umount dir2/check
/external/v8/tools/mb/
H A Dmb_unittest.py227 def check(self, args, mbw=None, files=None, out=None, err=None, ret=None): member in class:UnitTest
248 self.check(['gen', '-c', 'gn_debug_goma', '//out/Debug'], mbw=mbw, ret=0)
254 self.check(['gen', '-c', 'gn_debug_goma', '//out/Debug'], mbw=mbw, ret=0)
259 self.check(['gen', '-c', 'gyp_debug', '//out/Debug'], mbw=mbw, ret=0)
266 self.check(['gen', '-c', 'gyp_debug', '//out/Debug'], mbw=mbw, ret=0)
282 self.check(['analyze', '-c', 'gn_debug_goma', '//out/Default',
301 self.check(['analyze', '-c', 'gn_debug_goma', '//out/Default',
313 self.check(['analyze', '-c', 'gn_debug_goma', '//out/Default',
335 self.check(['analyze', '-c', 'gn_debug_goma', '//out/Default',
346 self.check(['ge
[all...]
/external/autotest/client/site_tests/buffet_BasicDBusAPI/
H A Dbuffet_BasicDBusAPI.py18 def check(expected, value): function
41 check('', buffet.device_id)
42 check('Chromium', buffet.oem_name)
43 check('Brillo', buffet.model_name)
44 check('AATST', buffet.model_id)
45 check('', buffet.description)
46 check('', buffet.location)
52 check('A', buffet.name)
53 check('B', buffet.description)
54 check('
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_ntpath.py244 def check(value, expected): function in function:TestNtpath.test_expandvars_nonascii
251 check('$spam bar', '%s bar' % nonascii)
252 check('$%s bar' % nonascii, '$%s bar' % nonascii)
253 check('${spam}bar', '%sbar' % nonascii)
254 check('${%s}bar' % nonascii, 'ham%sbar' % nonascii)
255 check('$spam}bar', '%s}bar' % nonascii)
256 check('$%s}bar' % nonascii, '$%s}bar' % nonascii)
257 check('%spam% bar', '%s bar' % nonascii)
258 check('%{}% bar'.format(nonascii), 'ham%s bar' % nonascii)
259 check('
334 def check(paths, expected): function in function:TestNtpath.test_commonpath
[all...]
/external/llvm/test/ExecutionEngine/RuntimeDyld/Mips/
H A DELF_O32_PIC_relocations.s3 # RUN: llvm-rtdyld -triple=mipsel-unknown-linux -verify -map-section test_ELF_O32.o,"<common symbols>"=0x7FF8 -map-section test_ELF_O32.o,.text=0x1000 -map-section test_ELF_ExternalFunction_O32.o,.text=0x10000 -check=%s %T/test_ELF_O32.o %T/test_ELF_ExternalFunction_O32.o
7 # RUN: llvm-rtdyld -triple=mips-unknown-linux -verify -map-section test_ELF_O32.o,"<common symbols>"=0x7FF8 -map-section test_ELF_O32.o,.text=0x1000 -map-section test_ELF_ExternalFunction_O32.o,.text=0x10000 -check=%s %T/test_ELF_O32.o %T/test_ELF_ExternalFunction_O32.o
10 # rtdyld-check: *{4}R_MIPS_32 = foo[31:0]
13 # rtdyld-check: *{4}(R_MIPS_32+4) = foo[31:0]
15 # rtdyld-check: *{4}(R_MIPS_PC32) = (foo - R_MIPS_PC32)[31:0]
18 # rtdyld-check: *{4}(R_MIPS_PC32 + 4) = (foo - tmp1)[31:0]
36 # rtdyld-check: decode_operand(R_MIPS_26, 0)[27:0] = stub_addr(test_ELF_O32.o, .text, foo)[27:0]
37 # rtdyld-check: decode_operand(R_MIPS_26, 0)[1:0] = 0
42 # rtdyld-check: decode_operand(R_MIPS_PC16, 1)[17:0] = (foo - R_MIPS_PC16)[17:0]
47 # rtdyld-check
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DBlockOutputStream.java16 import org.tukaani.xz.check.Check;
22 private final Check check; field in class:BlockOutputStream
31 Check check) throws IOException {
33 this.check = check;
70 // This is just a sanity check.
84 - headerSize - check.getSize();
94 check.update(buf, off, len);
114 out.write(check.finish());
128 return headerSize + outCounted.getSize() + check
30 BlockOutputStream(OutputStream out, FilterEncoder[] filters, Check check) argument
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DCompactConstructorErrorsTest.java57 private void check(String fileName, String failure, String message) { method in class:CompactConstructorErrorsTest
58 check(fileName, failure, message, true);
61 private void check(String fileName, String failure, String message, boolean exactMatch) { method in class:CompactConstructorErrorsTest
80 check("error2.yaml",
86 check("error3.yaml",
123 check("error6.yaml",
129 check("error7.yaml",
136 check("error8.yaml",
142 check("error9.yaml",
/external/valgrind/helgrind/tests/
H A Dt2t.c25 #define check if (ret != 0) printf("error %d at line %d\n", ret, __LINE__) macro
55 check;
60 check;
69 check;
74 check;
83 check;
89 check;
98 check;
103 check;
/external/dtc/tests/
H A Dutilfdt_test.c33 static void check(const char *fmt, int expect_type, int expect_size) function
59 * Add the given modifier to each of the valid sizes, and check that we get
79 check(fmt, 'i', expected_size);
82 check(fmt, 'u', expected_size);
85 check(fmt, 'x', expected_size);
88 check(fmt, 's', -1);
96 /* check all the valid modifiers and sizes */
/external/skia/tests/
H A DRefCntTest.cpp82 #define check(reporter, ref, unref, make, kill) \ macro
156 check(reporter, 0, 0, 0, 0);
159 check(reporter, 0, 0, 1, 0);
174 check(reporter, 0, 1, 1, 1);
190 check(reporter, 0, 1, 2, 1);
192 check(reporter, 1, 1, 2, 1);
197 check(reporter, 2, 1, 2, 1);
202 check(reporter, 2, 1, 2, 1);
206 check(reporter, 2, 1, 2, 1);
211 check(reporte
[all...]
/external/skqp/tests/
H A DRefCntTest.cpp82 #define check(reporter, ref, unref, make, kill) \ macro
156 check(reporter, 0, 0, 0, 0);
159 check(reporter, 0, 0, 1, 0);
174 check(reporter, 0, 1, 1, 1);
190 check(reporter, 0, 1, 2, 1);
192 check(reporter, 1, 1, 2, 1);
197 check(reporter, 2, 1, 2, 1);
202 check(reporter, 2, 1, 2, 1);
206 check(reporter, 2, 1, 2, 1);
211 check(reporte
[all...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
H A Dcwg1170.cpp17 template<typename U> static yes_type check(unsigned_c<sizeof(U(t))> * = 0);
18 template<typename U> static no_type check(...);
21 static const bool value = (sizeof(check<T>(0)) == sizeof(yes_type));
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
H A DGenderInfoTest.java35 check(Gender.OTHER, Gender.OTHER, Gender.OTHER);
43 check(g, g, g, g);
49 check(Gender.OTHER, Gender.MALE, Gender.MALE, Gender.MALE, Gender.MALE);
50 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.FEMALE);
51 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.MALE, Gender.OTHER);
53 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.FEMALE, Gender.MALE);
54 check(Gender.OTHER, Gender.FEMALE, Gender.FEMALE, Gender.FEMALE, Gender.FEMALE);
55 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.FEMALE, Gender.OTHER);
57 check(Gender.OTHER, Gender.OTHER, Gender.MALE, Gender.OTHER, Gender.MALE);
58 check(Gende
62 public void check(Gender neutral, Gender mixed, Gender taints, Gender... genders) { method in class:GenderInfoTest
[all...]

Completed in 590 milliseconds

1234567891011>>