HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 476 - 500 of 3113) sorted by null

<<11121314151617181920>>

  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
CentralDirectory.java 38 * Representation of the central directory of a zip archive.
43 * Field in the central directory with the central directory signature.
48 * Field in the central directory with the "made by" code.
54 * Field in the central directory with the minimum version required to extract the entry.
61 * Field in the central directory with the GP bit flag.
67 * Field in the central directory with the code of the compression method. See
73 * Field in the central directory with the last modification time in MS-DOS format (see
80 * Field in the central directory with the last modification date in MS-DOS format. See
87 * Field in the central directory with the CRC32 checksum of the entry. This will be zero fo
229 CentralDirectory directory = new CentralDirectory(file); local
260 CentralDirectory directory = new CentralDirectory(file); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ProcessBuilderTest.java 442 File directory = new File("/tmp/fake/directory/for/" + TAG); local
443 assertEquals(directory, new ProcessBuilder().directory(directory).directory());
444 assertNull(new ProcessBuilder().directory());
446 .directory(directory)
447 .directory(null
    [all...]
  /sdk/attribute_stats/src/
Analyzer.java 53 * This program takes one or more directory paths, and then it searches all of them recursively
91 System.err.println("Recursively scans for layouts in the given directory and");
126 File directory = new File(arg); local
127 if (!directory.exists()) {
128 System.err.println(directory.getName() + " does not exist");
132 if (!directory.isDirectory()) {
133 System.err.println(directory.getName() + " is not a directory");
137 directories.add(directory);
144 for (File directory : mDirectories)
    [all...]
  /bootable/recovery/
roots.cpp 228 int format_volume(const char* volume, const char* directory) {
306 if (result == 0 && directory != nullptr) {
311 directory,
346 if (result == 0 && directory != nullptr) {
351 "-f", directory,
  /build/soong/cc/
ndk_headers.go 49 // Base directory of the headers being installed. As an example:
86 // Output path is the sysroot base + "usr/include" + to directory + directory component
87 // of the file without the leading from directory stripped.
158 // Base directory of the headers being installed. As an example:
180 // Unlike ndk_headers, we don't operate on a list of sources but rather a whole directory, the
181 // module does not have the srcs property, and operates on a full directory (the `from` property).
222 // The versioner depends on a dependencies directory to simplify determining include paths
223 // when parsing headers. This directory contains architecture specific directories as well
224 // as a common directory, each of which contains symlinks to the actually directories t
    [all...]
  /external/clang/tools/scan-build-py/libear/
__init__.py 234 def add_include(self, directory):
235 self.inc.extend(['-I', directory])
243 def build_release(self, directory):
250 cwd=directory)
256 cwd=directory)
  /external/javassist/src/main/javassist/
ClassPoolTail.java 35 String directory; field in class:DirClassPath
38 directory = dirName;
44 String filename = directory + sep
55 String filename = directory + sep
71 return directory;
  /external/python/cpython2/Mac/scripts/
buildpkg.py 87 "A forward iterator that traverses files in a directory tree."
89 def __init__(self, directory, pattern="*"):
90 self.stack = [directory]
102 # pop next directory from stack
103 self.directory = self.stack.pop()
104 self.files = os.listdir(self.directory)
108 fullname = join(self.directory, file)
180 as the root directory. Option items replace the default ones
199 # Check where we should leave the output. Default is current directory
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassPathResolver.java 200 for (String directory: classPathDirs) {
201 File directoryFile = new File(directory);
263 private void loadOatDependencies(@Nonnull File directory, @Nonnull List<String> oatDependencies)
265 // We assume that all oat dependencies are located in the same directory as the oat file
268 File file = new File(directory, oatDependencyName);
270 throw new NotFoundException("Cannot find dependency %s in %s", oatDependencyName, directory);
  /external/testng/src/main/java/org/testng/xml/
LaunchSuite.java 50 * Saves the suite file in the specified directory and returns the file
53 * @param directory the directory where the suite file is to be saved.
56 public abstract File save(File directory);
92 public File save(File directory) {
94 File result = new File(directory, RemoteTestNG.DEBUG_SUITE_FILE);
190 * file in the specified directory.
193 public File save(File directory) {
194 final File suiteFile = new File(directory, "temp-testng-customsuite.xml");
  /device/linaro/bootloader/edk2/
Edk2Setup.bat 16 @REM Three other scripts, located in the BaseTools\Scripts directory, may be called
43 @REM [--pull [Directory]| --rebuild [Directory]]
66 @REM Always set the WORKSPACE environment variable to the current directory
96 @REM back to WORKSPACE\BaseTools while the --location DIRECTORY flag will
135 @REM alternate directory
153 @REM Force pulling updated (or checkout if they do not exist) from SVN for the BaseTools\Bin\Win32 directory
154 @REM or the directory pointed to by the --location option
219 @echo working directory.
236 @echo template files from the BaseTools/Conf directory.
    [all...]
  /build/soong/third_party/zip/
writer.go 54 // Close finishes writing the zip file by writing the central directory.
68 // write central directory
134 // zip64 end of central directory record
140 b.uint32(0) // number of the disk with the start of the central directory
141 b.uint64(records) // total number of entries in the central directory on this disk
142 b.uint64(records) // total number of entries in the central directory
143 b.uint64(size) // size of the central directory
144 b.uint64(offset) // offset of start of central directory with respect to the starting disk number
146 // zip64 end of central directory locator
148 b.uint32(0) // number of the disk with the start of the zip64 end of central directory
    [all...]
  /external/libxml2/
testrecurse.c 50 const char *out; /* output directory */
79 char directory[500]; local
84 strncpy(directory, pattern, 499);
85 for (len = strlen(directory);len >= 0;len--) {
86 if (directory[len] == '/') {
88 directory[len] = 0;
108 strncpy(directory + len, FindFileData.cFileName, 499 - len);
109 ret->gl_pathv[ret->gl_pathc] = strdup(directory);
123 strncpy(directory + len, FindFileData.cFileName, 499 - len);
124 ret->gl_pathv[ret->gl_pathc] = strdup(directory);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 51 * <p>The cache stores its data in a directory on the filesystem. This
52 * directory must be exclusive to the cache; the cache may delete or overwrite
53 * files from its directory. It is an error for multiple processes to use the
54 * same cache directory at the same time.
142 private final File directory; field in class:DiskLruCache
187 DiskLruCache(FileSystem fileSystem, File directory, int appVersion, int valueCount, long maxSize,
190 this.directory = directory;
192 this.journalFile = new File(directory, JOURNAL_FILE);
193 this.journalFileTmp = new File(directory, JOURNAL_FILE_TEMP)
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
image.py 416 def list_pictures(directory, ext='jpg|jpeg|bmp|png|ppm'):
419 for root, _, files in os.walk(directory)
591 directory,
605 directory,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/clean/
clean.go 28 The go command builds most objects in a temporary directory,
35 _obj/ old object directory, left from Makefiles
36 _test/ old test directory, left from Makefiles
48 directory, and MAINFILE is the base name of any Go source
49 file in the directory that is not included when building
107 // Remove the cache subdirectories but not the top cache directory.
108 // The top cache directory may have been created with special permissions
219 // Remove a potential executable for each .go file in the directory that
220 // is not part of the directory's package.
  /prebuilts/go/linux-x86/src/cmd/go/internal/clean/
clean.go 28 The go command builds most objects in a temporary directory,
35 _obj/ old object directory, left from Makefiles
36 _test/ old test directory, left from Makefiles
48 directory, and MAINFILE is the base name of any Go source
49 file in the directory that is not included when building
107 // Remove the cache subdirectories but not the top cache directory.
108 // The top cache directory may have been created with special permissions
219 // Remove a potential executable for each .go file in the directory that
220 // is not part of the directory's package.
  /build/soong/android/
neverallow_test.go 29 name: "no vndk.enabled under vendor directory",
43 name: "no vndk.enabled under device directory",
57 name: "vndk-ext under vendor or device directory",
  /build/soong/ui/build/
test_build.go 24 // Checks for files in the out directory that have a rule that depends on them but no rule to
28 // previously built files are still present in the output directory.
65 // Leaf node is not in the out directory.
  /cts/hostsidetests/compilation/src/android/cts/compilation/
AdbRootDependentCompilationTest.java 59 private String directory; field in class:AdbRootDependentCompilationTest.ProfileLocation
61 ProfileLocation(String directory) {
62 this.directory = directory;
66 return directory;
70 return directory + "/primary.prof";
257 // Get the owner of the parent directory so we can set it on the file
401 // Cannot push to a privileged directory with one command.
404 // Push to a tmp directory and then move it to the final destination
413 // of the tmp directory - b/37425296
    [all...]
  /device/google/cuttlefish_common/host/libs/ivserver/
README.md 49 From this directory issue the following in the command line
53 Once the binary is built using bazel. Just run it from this directory
54 as the default options expect the JSON files under conf directory.
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 331 private void scanDirectory(File directory, ClassLoader classloader) throws IOException {
332 scanDirectory(directory, classloader, "", ImmutableSet.<File>of());
336 File directory, ClassLoader classloader, String packagePrefix,
338 File canonical = directory.getCanonicalFile();
343 File[] files = directory.listFiles();
345 logger.warning("Cannot read directory " + directory);
346 // IO error, just skip the directory
  /external/libopus/doc/
customdoxygen.css 523 /* @group Directory (tree) */
534 .directory {
540 .directory h3 {
554 .directory h3.swap {
559 .directory h3.swap span {
564 .directory > h3 {
568 .directory p {
573 .directory div {
578 .directory img {
584 .directory-alt
    [all...]
  /external/syslinux/linux/
syslinux.c 281 if (opt.directory && opt.directory[0]) {
282 int len = strlen(opt.directory);
284 opt.directory[0] == '/' ? "" : "/",
285 opt.directory,
286 opt.directory[len-1] == '/' ? "" : "/");
342 fprintf(stderr, "%s: Cannot access the %s directory.\n",
  /external/syslinux/win/
syslinux.c 183 * On Windows Me/98/95 you cannot open a directory, physical disk, or
241 char new_name[strlen(opt.directory) + 16];
250 for (sd = opt.directory; *sd; sd++) {
277 "Failed to move %s to destination directory: %s\n",
278 filename, opt.directory);
490 syslinux_patch(sectors, nsectors, opt.stupid_mode, opt.raid_mode, opt.directory, NULL);
521 if (opt.directory)
552 if (opt.directory)

Completed in 768 milliseconds

<<11121314151617181920>>