Home
last modified time | relevance | path

Searched refs:fromIndex (Results 1 – 2 of 2) sorted by relevance

/cts/tests/media/jni/
DNativeMuxerTest.cpp83 bool writeAFewSamplesData(AMediaMuxer* muxer, uint32_t fromIndex, uint32_t toIndex);
90 bool appendMedia(AMediaMuxer *muxer, uint32_t fromIndex, uint32_t toIndex);
244 bool MuxerNativeTestHelper::writeAFewSamplesData(AMediaMuxer* muxer, uint32_t fromIndex, in writeAFewSamplesData() argument
246 ALOGV("fromIndex:%u, toIndex:%u", fromIndex, toIndex); in writeAFewSamplesData()
249 if (fromIndex > toIndex || toIndex >= mTrackIdxOrder.size()) { in writeAFewSamplesData()
254 for (int i = 0; i < fromIndex; ++i) { in writeAFewSamplesData()
261 for (int i = fromIndex; i <= toIndex; ++i) { in writeAFewSamplesData()
326 bool MuxerNativeTestHelper::appendMedia(AMediaMuxer *muxer, uint32_t fromIndex, uint32_t toIndex) { in appendMedia() argument
328 ALOGV("fromIndex:%u, toIndex:%u", fromIndex, toIndex); in appendMedia()
329 if (fromIndex == 0) { in appendMedia()
[all …]
/cts/tests/tests/print/printTestUtilLib/src/android/print/test/
DBasePrintTest.java817 int fromIndex, int toIndex) throws IOException { in writeBlankPages() argument
819 final int pageCount = toIndex - fromIndex + 1; in writeBlankPages()