HomeSort by relevance Sort by last modified time
    Searched refs:DIRECTORY (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /external/toolchain-utils/
pyrun 3 DIRECTORY=$(cd `dirname $0` && pwd)
4 PYTHONPATH=$DIRECTORY:$PYTHONPATH
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
StoredEntryType.java 29 * Entry is a directory.
31 DIRECTORY
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
DirectoryFileFilter.java 26 * current directory's subdirectories:
45 * Singleton instance of directory filter.
48 public static final IOFileFilter DIRECTORY = new DirectoryFileFilter();
50 * Singleton instance of directory filter.
51 * Please use the identical DirectoryFileFilter.DIRECTORY constant.
55 public static final IOFileFilter INSTANCE = DIRECTORY;
64 * Checks to see if the file is a directory.
67 * @return true if the file is a directory
FileFilterUtils.java 77 * Returns a filter that checks if the file is a directory.
82 return DirectoryFileFilter.DIRECTORY;
86 * Returns a filter that checks if the file is a file (and not a directory).
342 return DirectoryFileFilter.DIRECTORY;
344 return new AndFileFilter(DirectoryFileFilter.DIRECTORY, filter);
  /external/valgrind/memcheck/tests/solaris/
syscall_at.c 14 #define DIRECTORY "/tmp/"
22 int dfd = open(DIRECTORY, O_RDONLY);
26 linkat(0x9879151, DIRECTORY FILENAME, 0x9879152, DIRECTORY FILENAME, 0);
32 symlinkat(DIRECTORY FILENAME, 0x26868151, DIRECTORY FILENAME);
38 readlinkat(0x4368151, DIRECTORY FILENAME, buf, 1);
45 syscall(SYS_frealpathat, 0x443115, DIRECTORY FILENAME, buf, 1);
51 faccessat(0x4132151, DIRECTORY FILENAME, F_OK, 0);
57 fchownat(0x4369251, DIRECTORY FILENAME, -1, -1, 0)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
arlex.l 52 "DIRECTORY" { return DIRECTORY; }
67 "directory" { return DIRECTORY; }
arparse.y 52 %token DIRECTORY
152 DIRECTORY FILENAME modulelist optional_filename
  /external/perfetto/protos/perfetto/trace/filesystem/
inode_file_map.proto 36 DIRECTORY = 2;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AtraceScriptsWriter.java 35 CaptureHolder.DIRECTORY + "/loopback_listener";
40 File file = new File(CaptureHolder.DIRECTORY);
42 // Create a directory for script and signal file
51 // Check for writable directory that already existed or after creating
53 Log.d(TAG, "writeScriptsToFile: " + CaptureHolder.DIRECTORY
54 + (!file.isDirectory() ? "is not a directory " : "")
CaptureHolder.java 38 public static final String DIRECTORY = STORAGE + "Loopback";
39 private static final String SIGNAL_FILE = DIRECTORY + "/loopback_signal";
  /tools/tradefederation/core/src/com/android/tradefed/util/
FakeTestsZipFolder.java 34 FILE, DIRECTORY,
70 if (ItemType.DIRECTORY.equals(type)) {
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
FakeTestsZipFolderTest.java 41 mFiles.put("testinfo", ItemType.DIRECTORY);
59 case DIRECTORY:
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 38 public static final String DIRECTORY = DCIM + "/Camera";
42 String.valueOf(DIRECTORY.toLowerCase().hashCode());
102 return DIRECTORY + '/' + title + ".jpg";
115 File dir = new File(DIRECTORY);
122 StatFs stat = new StatFs(DIRECTORY);
  /packages/apps/Contacts/src/com/android/contacts/logging/
QuickContactEvent.java 46 public static final int DIRECTORY = 3;
  /external/ltp/testcases/open_posix_testsuite/scripts/
locate-test 11 Usage: $(basename "$0") [OPTIONs] DIRECTORY
13 Lists the tests (source/binary) available from the DIRECTORY directory
76 # Need the DIRECTORY arg ...
78 echo >&2 "Error: $WHERE: no such directory"
92 # waltz down the tools directory and try and build t0 (which doesn't
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripContentQueries.java 35 private static final String CAMERA_PATH = Storage.DIRECTORY + "%";
50 * Query the camera storage directory and convert it to local data
  /packages/apps/Camera2/src/com/android/camera/
Storage.java 51 public static final String DIRECTORY = DCIM + "/Camera";
52 public static final File DIRECTORY_FILE = new File(DIRECTORY);
305 Log.e(TAG, "Failed to create parent directory for file: " + path);
334 Log.e(TAG, "Input path is directory: " + inputPath.getAbsolutePath());
338 Log.e(TAG, "Failed to create parent directory for file: " +
372 * Given a file path, makes sure the directory it's in exists, and if not
376 * @return Whether the directory exists. If 'false' is returned, this file
377 * cannot be written to since the parent directory could not be
383 // If the parent exists, return 'true' if it is a directory. If it's a
419 return generateFilepath(DIRECTORY, title, mimeType)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/app/
CameraServicesImpl.java 68 StackSaverFactory mStackSaverFactory = new StackSaverFactory(Storage.DIRECTORY,
  /external/cn-cbor/
CMakeLists.txt 135 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/html DESTINATION share/doc)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoStore.java 39 * in the specified directory.
47 // Directory name under the root directory for photo storage.
48 private final String DIRECTORY = "photos";
50 /** Map of keys to entries in the directory. */
66 * Constructs an instance of the PhotoStore under the specified directory.
67 * @param rootDirectory The root directory of the storage.
71 mStorePath = new File(rootDirectory, DIRECTORY);
75 throw new RuntimeException("Unable to create photo storage directory "
117 * specified root directory
    [all...]
  /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...]
  /external/googletest/googlemock/
CMakeLists.txt 14 # A directory to find Google Test sources.
36 # CMake files in this project can refer to the root source directory
37 # as ${gmock_SOURCE_DIR} and to the root binary directory as
54 # directory in a subdirectory of our own as VC compilation may break
67 # This directory is needed to build directly from Google
102 # If the CMake version supports it, attach header directory information
118 install(DIRECTORY ${gmock_SOURCE_DIR}/include/gmock
146 # This must be set in the root directory for the tests to be run by
  /frameworks/data-binding/extensions/library/
build.gradle 157 it.getContentTypes(), it.getScopes(), Format.DIRECTORY);
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/1.5.0/
transform-api-1.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/transform-api/2.0.0-alpha1/
transform-api-2.0.0-alpha1.jar 

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 9