HomeSort by relevance Sort by last modified time
    Searched refs:archive (Results 101 - 125 of 481) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/sdk/current/support/multidex/library/libs/
android-support-multidex.jar 
  /external/emma/core/java12/com/vladium/emma/rt/
ClassPathProcessorST.java 81 public void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest)
83 m_archiveFile = Files.newFile (parentDir, archive.getPath ());
173 public void handleArchiveEnd (final File parentDir, final File archive)
  /device/google/dragon-kernel/
push-kernel.sh 25 gsbase=gs://chromeos-image-archive
  /external/chromium-trace/catapult/third_party/Paste/paste/
fileapp.py 300 in a given zip or tar archive.
304 ``filepath`` the path to the archive being served
315 self.archive = zipfile.ZipFile(filepath,"r")
317 self.archive = tarfile.TarFileCompat(filepath,"r")
336 info = self.archive.getinfo(path)
351 app.set_content(self.archive.read(path),
  /external/elfutils/libelf/
Makefile.am 105 $(AM_V_CCLD)$(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 69 public final void handleArchiveStart (final File parentDir, final File archive, final Manifest manifest)
72 if (log.atTRACE2 ()) log.trace2 ("handleArchiveStart", "[" + parentDir + "] [" + archive + "]");
75 // TODO: detect if manifest corresonds to a previously intrumented archive already ?
79 final File fullArchiveFile = Files.newFile (parentDir, archive);
99 mainAttrs.put (Attributes.Name.IMPLEMENTATION_TITLE, "instrumented version of [" + archive.getAbsolutePath () + "]");
107 // closed in the archive end event handler]:
111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB));
124 // in the archive end event handler]:
126 m_origArchiveFile = Files.newFile (parentDir, archive);
129 final String archiveName = Files.getFileName (archive) + IAppConstants.APP_NAME_LC
    [all...]
  /external/llvm/lib/Object/
Binary.cpp 21 #include "llvm/Object/Archive.h"
44 case sys::fs::file_magic::archive:
45 return Archive::create(Buffer);
SymbolicFile.cpp 41 case sys::fs::file_magic::archive:
  /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...]
  /external/v8/build/android/pylib/perf/
test_runner.py 141 archive_file_name: name of the file to write the compressed ZIP archive.
299 """Archive all files in the output dir, and return as compressed bytes."""
300 with io.BytesIO() as archive:
301 with zipfile.ZipFile(archive, 'w', zipfile.ZIP_DEFLATED) as contents:
314 logging.warning('No files in the output dir. Archive is empty.')
315 return archive.getvalue()
  /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...]

Completed in 882 milliseconds

1 2 3 45 6 7 8 91011>>