/external/lzma/CPP/7zip/Archive/7z/ |
7zIn.cpp | 135 void Set(CInArchive *archive, const Byte *data, size_t size, bool needUpdatePos);
136 void Set(CInArchive *archive, const CByteBuffer &byteBuffer);
137 void Set(CInArchive *archive, const CObjectVector<CByteBuffer> *dataVector);
151 void CStreamSwitch::Set(CInArchive *archive, const Byte *data, size_t size, bool needUpdatePos)
154 _archive = archive;
160 void CStreamSwitch::Set(CInArchive *archive, const CByteBuffer &byteBuffer)
162 Set(archive, byteBuffer, byteBuffer.Size(), false);
165 void CStreamSwitch::Set(CInArchive *archive, const CObjectVector<CByteBuffer> *dataVector)
168 Byte external = archive->ReadByte();
171 CNum dataIndex = archive->ReadNum(); [all...] |
/external/antlr/antlr-3.4/runtime/Python/ |
hudson-build.sh | 8 JAR=$(ls $WORKSPACE/../../$ANTLR_JOB/lastSuccessful/org.antlr\$antlr/archive/org.antlr/antlr/*/antlr-*-jar-with-dependencies.jar)
|
/external/deqp/external/vulkancts/modules/vulkan/ |
vktBuildPrograms.cpp | 309 tcu::DirArchive archive ("."); 312 tcu::TestContext testCtx (platform, archive, log, deqpCmdLine, DE_NULL);
|
/external/deqp/framework/common/ |
tcuApp.cpp | 80 App::App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine) 108 m_testCtx = new TestContext(m_platform, archive, log, cmdLine, m_watchDog);
|
/external/deqp/modules/internal/ |
ditImageCompareTests.cpp | 43 static void loadImageRGBA8 (tcu::TextureLevel& dst, const tcu::Archive& archive, const char* path) 46 tcu::ImageIO::loadImage(tmp, archive, path);
|
/external/guice/ |
AndroidCallMunge.mk | 26 # munge_zip_location = Path to lib/build/munge.jar source archive
|
/external/lzma/CPP/7zip/UI/Common/ |
OpenArchive.h | 146 // if FormatIndex == ErrorFormatIndex, the archive is open with offset
151 - other variables show message and warnings of archive that is open */
217 HRESULT PrepareToOpen(const COpenOptions &op, unsigned formatIndex, CMyComPtr<IInArchive> &archive);
222 CMyComPtr<IInArchive> Archive;
226 // 2) we reopen sfx archive with CTailInStream
242 Int64 Offset; // it's offset of start of archive inside stream that is open by Archive Handler
251 UInt64 ArcStreamOffset; // offset of stream that is open by Archive Handler
252 Int64 GetGlobalOffset() const { return ArcStreamOffset + Offset; } // it's global offset of archive
279 HRESULT ReadBasicProps(IInArchive *archive, UInt64 startPos, HRESULT openRes); [all...] |
/external/nanopb-c/tools/ |
make_windows_package.sh | 17 git archive HEAD | tar x -C $DEST
|
/ndk/build/tools/ |
builder-funcs.sh | 319 builder_log "${_BUILD_PREFIX}Archive: $libname" 331 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!" 350 builder_log "${_BUILD_PREFIX}Archive: $libname" 353 fail_panic "Could not archive ${_BUILD_PREFIX}$libname objects!"
|
/toolchain/binutils/binutils-2.25/bfd/ |
makefile.vms | 39 OBJS:=$(OBJS),archive.obj,archive64.obj,archures.obj,bfd.obj,bfdio.obj,\
|
/toolchain/binutils/binutils-2.25/gold/ |
Makefile.am | 60 archive.cc \ 110 archive.h \ 281 gcctestdir1/ld -o $@ -r --whole-archive libgold.a 294 gcctestdir2-r/ld -o $@ -r --whole-archive libgold.a
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
FatLfnDirectoryEntry.java | 30 * to the {@link #setArchiveFlag(boolean) archive}, 174 * Returns if this directory entry has the FAT "archive" flag set. 176 * @return if this entry has the archive flag set 183 * Sets the "archive" flag on this {@code FatLfnDirectoryEntry} to the 186 * @param archive if this entry should have the archive flag set 190 public void setArchiveFlag(boolean archive) throws ReadOnlyException { 193 this.realEntry.setArchiveFlag(archive);
|
/external/deqp/framework/opengl/ |
gluTexture.cpp | 214 Texture2D* Texture2D::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* levelFileNames) 227 tcu::ImageIO::loadPNG(level, archive, levelFileNames[0]); 244 tcu::ImageIO::loadPNG(level, archive, levelFileNames[levelNdx]); 267 tcu::ImageIO::loadPKM(levels[ndx], archive, levelFileNames[ndx]); 275 Texture2D* Texture2D::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames) 283 return Texture2D::create(context, contextInfo, archive, numLevels, &charPtrs[0]); 405 TextureCube* TextureCube::create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames [all...] |
gluShaderLibrary.hpp | 168 std::vector<tcu::TestNode*> parseFile (const tcu::Archive& archive, const std::string& filename, ShaderCaseFactory* caseFactory);
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/ |
ConversationListFragment.java | 321 final MenuItem archive = menu.findItem(R.id.action_show_archived); local 322 if (archive != null) { 323 archive.setVisible(true);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 57 self._make_tarball('archive') 116 base_name = os.path.join(tmpdir2, 'archive') 152 base_name = os.path.join(tmpdir2, 'archive') 163 base_name = os.path.join(tmpdir2, 'archive') 214 base_name = os.path.join(tmpdir2, 'archive') 227 base_name = os.path.join(tmpdir, 'archive') 241 base_name = os.path.join(self.mkdtemp() , 'archive') 275 archive = tarfile.open(archive_name) 277 for member in archive.getmembers(): 281 archive.close( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 57 self._make_tarball('archive') 116 base_name = os.path.join(tmpdir2, 'archive') 152 base_name = os.path.join(tmpdir2, 'archive') 163 base_name = os.path.join(tmpdir2, 'archive') 214 base_name = os.path.join(tmpdir2, 'archive') 227 base_name = os.path.join(tmpdir, 'archive') 241 base_name = os.path.join(self.mkdtemp() , 'archive') 275 archive = tarfile.open(archive_name) 277 for member in archive.getmembers(): 281 archive.close( [all...] |
/build/core/ |
ninja.mk | 172 KATI_LD += -static -Wl,--whole-archive -lpthread -Wl,--no-whole-archive -ldl
|
pathmap.mk | 123 documents-archive \
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkBinaryRegistry.hpp | 178 BinaryRegistryReader (const tcu::Archive& archive, const std::string& srcPath); 186 const tcu::Archive& m_archive;
|
/external/elfutils/backends/ |
Makefile.am | 121 -Wl,--whole-archive $< $(cpu_$*) -Wl,--no-whole-archive \
|
/external/elfutils/libdw/ |
Makefile.am | 114 -Wl,--whole-archive $(filter-out $<,$^) -Wl,--no-whole-archive\
|
/external/icu/icu4c/source/tools/genren/ |
Makefile | 57 ( cd $(ICUDIR) ; CPPFLAGS=-DU_DISABLE_RENAMING=1 $(GENREN_CONFIGURE_ENV) $(top_srcdir)/../configure --with-data-packaging=archive --enable-tests=no --prefix=`pwd` $(GENREN_CONFIGURE_OPTS) )
|
/external/iputils/ |
Makefile | 251 @git archive --format=tar --prefix=iputils-$(TAG)/ $(TAG) | bzip2 -9 > ../iputils-$(TAG).tar.bz2
|
/external/llvm/lib/Object/ |
ObjectFile.cpp | 71 case sys::fs::file_magic::archive:
|