Searched refs:Next (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/base/tools/aapt2/io/
H A DIo.h36 virtual bool Next(const void** data, size_t* size) = 0;
39 // from Next().
40 // Useful when the last block returned from Next() wasn't fully read.
73 virtual bool Next(void** data, size_t* size) = 0;
76 // from Next().
77 // Useful for when the last block returned from Next() wasn't fully written to.
H A DBigBufferOutputStream.h31 bool Next(void** data, size_t* size) override;
H A DBigBufferInputStream.h32 bool Next(const void** data, size_t* size) override;
H A DBigBufferStreams.cpp27 bool BigBufferInputStream::Next(const void** data, size_t* size) { function in class:aapt::io::BigBufferInputStream
74 bool BigBufferOutputStream::Next(void** data, size_t* size) { function in class:aapt::io::BigBufferOutputStream
H A DData.h51 bool Next(const void** data, size_t* size) override {
100 bool Next(const void** data, size_t* size) override {
148 bool Next(const void** data, size_t* size) override {
197 bool Next(const void** /*data*/, size_t* /*size*/) override { return false; }
H A DUtil.cpp79 while (in->Next(&in_buffer, &in_len)) {
82 if (!out->Next(&out_buffer, &out_len)) {
H A DFile.h90 virtual IFile* Next() = 0;
H A DFileSystem.cpp52 IFile* FileCollectionIterator::Next() { function in class:aapt::io::FileCollectionIterator
H A DFileSystem.h48 io::IFile* Next() override;
H A DZipArchive.h58 io::IFile* Next() override;
H A DZipArchive.cpp72 IFile* ZipFileCollectionIterator::Next() { function in class:aapt::io::ZipFileCollectionIterator
112 while ((result = Next(cookie, &zip_data, &zip_entry_name)) == 0) {
/frameworks/base/libs/androidfw/
H A DChunkIterator.cpp23 Chunk ChunkIterator::Next() { function in class:android::ChunkIterator
24 CHECK(len_ != 0) << "called Next() after last chunk";
H A DApkAssets.cpp153 while ((result = ::Next(cookie, &entry, &name)) == 0) {
/frameworks/native/services/vr/performanced/
H A Ddirectory_reader.h35 // pointer is only valid unitl the next call to Next() or the DirectoryReader
37 dirent* Next() { function in class:android::dvr::DirectoryReader
/frameworks/base/tools/aapt2/optimize/
H A DVersionCollapser.cpp43 typename Iterator::reference Next() { return *NextIter(); } function in class:aapt::FilterIterator
106 filter_iter.Next() = {};
/frameworks/base/libs/androidfw/include/androidfw/
H A DChunk.h77 // const Chunk chunk = iter.Next();
95 Chunk Next();
/frameworks/base/tools/aapt2/compile/
H A DPng.h65 bool Next(const void** buffer, size_t* len) override;
H A DPngChunkFilter.cpp94 bool PngChunkFilter::Next(const void** buffer, size_t* len) { function in class:aapt::PngChunkFilter
/frameworks/base/tools/aapt2/unflatten/
H A DResChunkPullParser.cpp39 ResChunkPullParser::Event ResChunkPullParser::Next() { function in class:aapt::ResChunkPullParser
H A DResChunkPullParser.h69 Event Next();
H A DBinaryResourceParser.cpp93 if (!ResChunkPullParser::IsGoodEvent(parser.Next())) {
110 if (parser.Next() != ResChunkPullParser::Event::kEndDocument) {
138 while (ResChunkPullParser::IsGoodEvent(parser.Next())) {
224 while (ResChunkPullParser::IsGoodEvent(parser.Next())) {
/frameworks/base/tools/aapt2/xml/
H A DXmlPullParser.h81 Event Next();
236 while (IsGoodEvent(event = parser->Next()) &&
251 event = parser->Next();
259 switch (parser->Next()) {
/frameworks/base/tools/aapt2/
H A DLoadedApk.cpp77 io::IFile* file = iterator->Next();
/frameworks/base/tools/aapt2/flatten/
H A DArchive.cpp99 while (in->Next(&data, &len)) {
181 while (in->Next(&data, &len)) {
/frameworks/base/core/jni/
H A Dandroid_util_jar_StrictJarFile.cpp124 const int32_t error = Next(*handle->CookieAddress(), &data, &entryName);

Completed in 336 milliseconds

12