Home
last modified time | relevance | path

Searched refs:detect (Results 1 – 25 of 905) sorted by relevance

12345678910>>...37

/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/
DDetectCompressorTestCase.java132 assertEquals(CompressorStreamFactory.BZIP2, detect("bla.txt.bz2")); in testDetect()
133 assertEquals(CompressorStreamFactory.GZIP, detect("bla.tgz")); in testDetect()
134 assertEquals(CompressorStreamFactory.PACK200, detect("bla.pack")); in testDetect()
135 assertEquals(CompressorStreamFactory.XZ, detect("bla.tar.xz")); in testDetect()
136 assertEquals(CompressorStreamFactory.DEFLATE, detect("bla.tar.deflatez")); in testDetect()
137 assertEquals(CompressorStreamFactory.LZ4_FRAMED, detect("bla.tar.lz4")); in testDetect()
138 assertEquals(CompressorStreamFactory.LZMA, detect("bla.tar.lzma")); in testDetect()
139 assertEquals(CompressorStreamFactory.SNAPPY_FRAMED, detect("bla.tar.sz")); in testDetect()
140 assertEquals(CompressorStreamFactory.Z, detect("bla.tar.Z")); in testDetect()
141 assertEquals(CompressorStreamFactory.ZSTANDARD, detect("bla.tar.zst")); in testDetect()
[all …]
/external/mockito/src/test/java/org/mockito/internal/
DInvalidStateDetectionTest.java170 void detect(IMethods mock); in detect() method
175 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnVerify
182 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnVerifyInOrder
189 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnVerifyZeroInteractions
196 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnVerifyNoMoreInteractions
203 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnDoAnswer
210 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnStub
216 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnMethodCallOnMock
223 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnMockCreation
230 public void detect(IMethods mock) { in detect() method in InvalidStateDetectionTest.OnSpyCreation
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
DTestCharsetDetector.java144 m = det.detect(); in TestInputFilter()
152 m = det.detect(); in TestInputFilter()
196 m = det.detect(); in TestUTF16()
203 m = det.detect(); in TestUTF16()
232 m = det.detect(); in TestC1Bytes()
240 m = det.detect(); in TestC1Bytes()
267 m = det.detect(); in TestShortInput()
304 match = det.detect(); in TestBufferOverflow()
422 CharsetMatch m = det.detect(); in checkMatch()
517 m = det.detect(); in TestJapanese()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
DTestCharsetDetector.java147 m = det.detect(); in TestInputFilter()
155 m = det.detect(); in TestInputFilter()
199 m = det.detect(); in TestUTF16()
206 m = det.detect(); in TestUTF16()
235 m = det.detect(); in TestC1Bytes()
243 m = det.detect(); in TestC1Bytes()
270 m = det.detect(); in TestShortInput()
307 match = det.detect(); in TestBufferOverflow()
425 CharsetMatch m = det.detect(); in checkMatch()
520 m = det.detect(); in TestJapanese()
[all …]
/external/webrtc/webrtc/base/
Dproxy_unittest.cc61 AutoDetectProxyRunner* detect = new AutoDetectProxyRunner("unittest/1.0"); in DetectProxyType() local
62 detect->set_proxy(address); in DetectProxyType()
63 detect->Run(); // blocks until done in DetectProxyType()
64 type = detect->proxy().type; in DetectProxyType()
65 detect->Destroy(false); in DetectProxyType()
/external/autotest/client/site_tests/kernel_CheckArmErrata/
Dcontrol9 Fails if we detect that we're on a CPU that should have an erratum
10 fix applied but we can detect that the erratum wasn't applied.
12 test can also fail if we don't detect the needed kernel infrastructure
26 If we detect that we're not on an ARM board or if we're running on an ARM
/external/u-boot/board/boundary/nitrogen6x/
Dnitrogen6x.c510 .detect = detect_i2c,
530 .detect = NULL,
550 .detect = NULL,
570 .detect = detect_i2c,
590 .detect = NULL,
610 .detect = detect_i2c,
630 .detect = detect_i2c,
650 .detect = NULL,
670 .detect = detect_i2c,
690 .detect = 0,
[all …]
/external/freetype/builds/
Ddetect.mk71 PLATFORMS := $(notdir $(subst /detect.mk,,$(wildcard $(BUILD_CONFIG)/*/detect.mk)))
93 include $(wildcard $(BUILD_CONFIG)/*/detect.mk)
/external/libvpx/libvpx/
Dtools_common.c79 struct FileTypeDetectionBuffer *detect = &input_ctx->detect; in read_yuv_frame() local
111 const size_t left = detect->buf_read - detect->position; in read_yuv_frame()
114 memcpy(ptr, detect->buf + detect->position, more); in read_yuv_frame()
117 detect->position += more; in read_yuv_frame()
Divfdec.c66 input_ctx->detect.buf_read = 0; in file_is_ivf()
68 input_ctx->detect.position = 4; in file_is_ivf()
/external/compiler-rt/lib/asan/
Dasan_flags.inc23 "Size (in Mb) of quarantine used to detect use-after-free "
36 "Controls the way to handle globals (0 - don't detect buffer overflow on "
37 "globals, 1 - detect buffer overflow, 2 - print data about registered "
123 "If non-zero, try to detect operations like <, <=, >, >= and - on "
131 "If >=2, detect violation of One-Definition-Rule (ODR); "
132 "If ==1, detect ODR-violation only if the two variables "
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/
DArchiveStreamFactoryTest.java243 assertEquals(extension, detect("bla."+extension)); in testDetect()
247 … ArchiveStreamFactory.detect(new BufferedInputStream(new ByteArrayInputStream(new byte[0]))); in testDetect()
254 ArchiveStreamFactory.detect(null); in testDetect()
261 ArchiveStreamFactory.detect(new BufferedInputStream(new MockEvilInputStream())); in testDetect()
268 private String detect(String resource) throws IOException, ArchiveException { in detect() method in ArchiveStreamFactoryTest
271 return ArchiveStreamFactory.detect(in); in detect()
/external/libaom/libaom/common/
Dtools_common.c80 struct FileTypeDetectionBuffer *detect = &input_ctx->detect; in read_yuv_frame() local
112 const size_t left = detect->buf_read - detect->position; in read_yuv_frame()
115 memcpy(ptr, detect->buf + detect->position, more); in read_yuv_frame()
118 detect->position += more; in read_yuv_frame()
Divfdec.c57 input_ctx->detect.buf_read = 0; in file_is_ivf()
59 input_ctx->detect.position = 4; in file_is_ivf()
/external/u-boot/arch/arm/dts/
Dstih410-pinctrl.dtsi18 usb-oc-detect = <&pio35 0 ALT1 IN>;
27 usb-oc-detect = <&pio35 2 ALT1 IN>;
/external/u-boot/arch/arm/mach-imx/
Dvideo.c16 if (dev->detect && dev->detect(dev)) { in board_video_skip()
/external/google-fruit/extras/packaging/
Ddebian.control14 It uses C++ metaprogramming together with some new C++11 features to detect
23 It uses C++ metaprogramming together with some new C++11 features to detect
Dlibfruit.spec30 It uses C++ metaprogramming together with some new C++11 features to detect
43 It uses C++ metaprogramming together with some new C++11 features to detect
/external/skqp/site/dev/testing/
Dfonts.md8 to detect when images change unexpectedly, indicating that a rendering bug has
11 The gm tests have a secondary purpose: they detect when rendering is different
/external/skia/site/dev/testing/
Dfonts.md8 to detect when images change unexpectedly, indicating that a rendering bug has
11 The gm tests have a secondary purpose: they detect when rendering is different
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/dsymutil/ARM/
Dfat-arch-name.test4 # We detect thumb triples from the binaries, because those are the only ones
6 # we would detect armv7m-apple-darwin as non-thumb triple, but you can't
/external/llvm/test/tools/dsymutil/ARM/
Dfat-arch-name.test4 # We detect thumb triples from the binaries, because those are the only ones
6 # we would detect armv7m-apple-darwin as non-thumb triple, but you can't
/external/autotest/server/site_tests/audio_LeftRightInternalSpeaker/
Dcontrol.native21 sounds to left and right channels separately. It can't detect if the
22 channel/speaker pairing is incorrect, but it can detect when a certain
Dcontrol.browser21 sounds to left and right channels separately. It can't detect if the
22 channel/speaker pairing is incorrect, but it can detect when a certain
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/charsetdet/
DDetectingViewer.java268 private CharsetMatch[] detect(byte[] bytes) in detect() method in DetectingViewer
277 private CharsetMatch[] detect(BufferedInputStream inputStream) in detect() method in DetectingViewer
361 CharsetMatch[] matches = detect(inputStream); in doOpenFile()
378 CharsetMatch[] matches = detect(filtered); in doOpenURL()

12345678910>>...37