/external/piex/ |
README | 1 The Preview Image Extractor (PIEX) is designed to find and extract the largest
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
IntegerResourceLoaderTest.java | 18 ResourceExtractor extractor = new ResourceExtractor(); local 19 extractor.addLocalRClass( R.class ); 20 extractor.addSystemRClass( android.R.class ); 22 resourceLoader = new IntegerResourceLoader( extractor );
|
/external/opencv3/modules/features2d/misc/java/test/ |
BRIEFDescriptorExtractorTest.java | 17 DescriptorExtractor extractor; field in class:BRIEFDescriptorExtractorTest 31 extractor = DescriptorExtractor.create(DescriptorExtractor.BRIEF); 45 extractor.compute(img, keypoints, descriptors); 60 assertNotNull(extractor); 64 assertEquals(32, extractor.descriptorSize()); 68 assertEquals(CvType.CV_8U, extractor.descriptorType()); 72 assertFalse(extractor.empty()); 79 extractor.read(filename); 81 assertEquals(64, extractor.descriptorSize()); 87 extractor.write(filename) [all...] |
SURFDescriptorExtractorTest.java | 17 DescriptorExtractor extractor; field in class:SURFDescriptorExtractorTest 32 extractor = DescriptorExtractor.create(DescriptorExtractor.SURF); 35 extractor.read(filename); 50 extractor.compute(img, keypoints, descriptors); 76 assertNotNull(extractor); 80 assertEquals(128, extractor.descriptorSize()); 84 assertEquals(CvType.CV_32F, extractor.descriptorType()); 88 assertFalse(extractor.empty()); 95 extractor.read(filename); 97 assertEquals(128, extractor.descriptorSize()) [all...] |
ORBDescriptorExtractorTest.java | 17 DescriptorExtractor extractor; field in class:ORBDescriptorExtractorTest 36 extractor = DescriptorExtractor.create(DescriptorExtractor.ORB); 50 extractor.compute(img, keypoints, descriptors); 62 assertNotNull(extractor); 66 assertEquals(32, extractor.descriptorSize()); 70 assertEquals(CvType.CV_8U, extractor.descriptorType()); 74 assertFalse(extractor.empty()); 85 extractor.read(filename); 87 extractor.compute(img, keypoints, descriptors); 101 extractor.write(filename) [all...] |
SIFTDescriptorExtractorTest.java | 17 DescriptorExtractor extractor; field in class:SIFTDescriptorExtractorTest 33 extractor = DescriptorExtractor.create(DescriptorExtractor.SIFT); 60 extractor.compute(img, keypoints, descriptors); 66 assertNotNull(extractor); 70 assertEquals(128, extractor.descriptorSize()); 74 assertEquals(CvType.CV_32F, extractor.descriptorType()); 78 assertFalse(extractor.empty()); 88 extractor.write(filename); 99 extractor.write(filename);
|
Features2dTest.java | 85 DescriptorExtractor extractor = DescriptorExtractor.create(DescriptorExtractor.SURF); local 94 extractor.read(extractorCfgFile); 111 extractor.compute(imgTrain, trainKeypoints, trainDescriptors); 112 extractor.compute(imgQuery, queryKeypoints, queryDescriptors);
|
/frameworks/base/media/jni/ |
android_media_MediaExtractor.cpp | 258 JNIEnv *env, jobject thiz, const sp<JMediaExtractor> &extractor) { 262 if (extractor != NULL) { 263 extractor->incStrong(thiz); 268 env->SetLongField(thiz, gFields.context, (jlong)extractor.get()); 283 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 285 if (extractor == NULL) { 290 return (jint) extractor->countTracks(); 295 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 297 if (extractor == NULL) { 303 status_t err = extractor->getTrackFormat(index, &format) 315 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 335 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 352 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 369 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 387 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 408 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 430 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 452 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 474 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 496 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 616 sp<JMediaExtractor> extractor = new JMediaExtractor(env, thiz); local 626 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 673 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 701 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 733 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local 751 sp<JMediaExtractor> extractor = getMediaExtractor(env, thiz); local [all...] |
/frameworks/av/cmds/stagefright/ |
muxer.cpp | 66 sp<NuMediaExtractor> extractor = new NuMediaExtractor; local 67 if (extractor->setDataSource(NULL /* httpService */, path) != OK) { 68 fprintf(stderr, "unable to instantiate extractor. %s\n", path); 88 size_t trackCount = extractor->countTracks(); 89 // Map the extractor's track index to the muxer's track index. 103 status_t err = extractor->getTrackFormat(i, &format); 105 ALOGV("extractor getTrackFormat: %s", format->debugString().c_str()); 142 err = extractor->selectTrack(i); 166 status_t err = extractor->getSampleTrackIndex(&trackIndex); 173 extractor->advance() [all...] |
/frameworks/av/media/libmedia/ |
IMediaExtractor.cpp | 188 wp<IMediaExtractor> extractor; member in struct:android::__anon28819 201 if (extractor.promote() == NULL) { 228 sp<IMediaExtractor> extractor = instance.extractor.promote(); local 229 if (extractor != NULL && extractor == ex) { 241 const sp<IMediaExtractor> &extractor, 246 ex.name = extractor->name(); 249 ex.extractor = extractor; [all...] |
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/ |
SampleExtractor.java | 27 * Extractor for reading track metadata and samples stored in tracks. 36 * <p>Call {@link #release()} when the extractor is no longer needed to free resources. 41 * Prepares the extractor for reading track metadata and samples. 61 * <p>This method should not be called until after the extractor has been successfully prepared. 72 * <p>This method should not be called until after the extractor has been successfully prepared. 97 /** Releases resources associated with this extractor. */
|
/prebuilts/tools/linux-x86_64/kythe/extractors/ |
javac-wrapper.sh | 18 # requires the same environment variables as the javac extractor (see 28 # the REAL_JAVAC environment variable. The default path for the javac extractor 64 "$@" >>"$TMPDIR"/javac-extractor.out 2>> "$TMPDIR"/javac-extractor.err
|
/external/llvm/include/llvm/Transforms/Utils/ |
CodeExtractor.h | 57 /// \brief Create a code extractor for a single basic block. 63 /// \brief Create a code extractor for a sequence of blocks. 66 /// dominates the rest, prepare a code extractor object for pulling this 72 /// \brief Create a code extractor for a loop body. 78 /// \brief Create a code extractor for a region node. 91 /// \brief Test whether this code extractor is eligible. 93 /// Based on the blocks used when constructing the code extractor,
|
/prebuilts/tools/linux-x86_64/kythe/ |
README.md | 14 - bazel_cxx_extractor :: C++ extractor for Bazel extra_actions 15 - bazel_java_extractor.jar :: Java extractor for Bazel extra_actions 16 - cxx_extractor :: C++ extractor 17 - javac_extractor.jar :: Java extractor 18 - javac-wrapper.sh :: javac wrapper script for extractor 56 # Setup the Java extractor's environment 107 Since each extractor is meant to replace a compiler, all configuration is passed 111 This helps the extractor correctly infer file input paths. 121 `extractors/javac-wrapper.sh` is provided as one way to inject an extractor into
|
/external/pdfium/core/src/fpdftext/ |
fpdf_text_int_unittest.cpp | 18 CPDF_TestLinkExtract extractor; local 31 EXPECT_FALSE(extractor.CheckMailLink(text_str)); 53 EXPECT_TRUE(extractor.CheckMailLink(text_str));
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 131 MediaExtractor extractor = new MediaExtractor(); local 132 extractor.setDataSource(srcPath); 134 int trackCount = extractor.getTrackCount(); 146 MediaFormat format = extractor.getTrackFormat(i); 158 extractor.selectTrack(i); 172 // Set up the orientation and starting time for extractor. 185 extractor.seekTo(startMs * 1000, MediaExtractor.SEEK_TO_CLOSEST_SYNC); 199 bufferInfo.size = extractor.readSampleData(dstBuf, offset); 205 bufferInfo.presentationTimeUs = extractor.getSampleTime(); 210 bufferInfo.flags = extractor.getSampleFlags() [all...] |
/docs/source.android.com/src/devices/tech/display/ |
hdr.jd | 116 extractor.</p> 218 HDR-capable extractor.</p> 224 <h3 id="extractor">Extractor</h3> 294 <th>Container (Extractor) 342 <li>A platform may support an HDR-capable extractor, but no corresponding 468 <li>Provide a Dolby-Vision aware extractor, even if it does not support 503 <h4>Dolby Vision extractor support</h4> 505 <p>Platforms that support Dolby Vision decoders must add Dolby extractor 506 (called Dolby Extractor) support for Dolby Video content.</p [all...] |
/development/ndk/platforms/android-21/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/frameworks/av/include/ndk/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 62 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|
/prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/media/ |
NdkMediaExtractor.h | 46 * Create new media extractor 51 * Delete a previously created media extractor 56 * Set the file descriptor from which the extractor will read. 61 * Set the URI from which the extractor will read.
|