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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
working-directory.h 1 #include <Inputs/working-directory-1.h>
  /external/valgrind/memcheck/tests/
supp-dir.stderr.exp 2 FATAL: suppressions file "x86/" is a directory
  /packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DirectoryMessagesUiTest.java 42 bots.directory.openDocument(DemoProvider.DIR_AUTH);
43 bots.directory.assertHasMessage(
44 "To view this directory, sign in to DocumentsUI Tests");
45 bots.directory.assertHasMessageButtonText("SIGN IN");
49 bots.directory.openDocument(DemoProvider.DIR_INFO);
50 bots.directory.assertHasMessage(DemoProvider.MSG_INFO);
51 bots.directory.assertHasMessageButtonText("DISMISS");
55 bots.directory.openDocument(DemoProvider.DIR_INFO);
56 bots.directory.assertHasMessage(true);
57 bots.directory.clickMessageButton()
    [all...]
RenameDocumentUiTest.java 41 bots.directory.selectDocument(fileName1, 1);
50 bots.directory.selectDocument(fileNameNoRename, 1);
59 bots.directory.selectDocument(fileName1, 1);
60 bots.directory.selectDocument(fileNameNoRename, 2);
69 bots.directory.selectDocument(fileName1, 1);
70 bots.directory.selectDocument(fileName2, 2);
79 bots.directory.selectDocument(fileName1, 1);
89 bots.directory.waitForDocument(newName);
90 bots.directory.assertDocumentsAbsent(fileName1);
91 bots.directory.assertDocumentsCount(4)
    [all...]
ArchiveUiTest.java 31 bots.directory.openDocument("archive.zip");
32 bots.directory.waitForDocument("file1.txt");
33 bots.directory.assertDocumentsPresent("dir1", "dir2", "file1.txt");
34 bots.directory.openDocument("dir1");
35 bots.directory.waitForDocument("cherries.txt");
40 bots.directory.openDocument("broken.zip");
43 bots.directory.assertPlaceholderMessageText(msg);
  /cts/libs/vogar-expect/src/vogar/commands/
Mkdir.java 26 public void mkdirs(File directory) {
27 new Command("mkdir", "-p", directory.getPath()).execute();
Rm.java 30 public void directoryTree(File directory) {
31 new Command("rm", "-rf", directory.getPath()).execute();
  /external/valgrind/none/tests/
nodir.stderr.exp 1 valgrind: ./nodir.vgtest/foobar: Not a directory
cmdline5.stderr.exp 1 valgrind: ./no-such-program-my-friend: No such file or directory
threadederrno.stdout.exp 1 f = 0, errno = 2 (No such file or directory)
2 f = 0, errno = 2 (No such file or directory)
3 f = 0, errno = 2 (No such file or directory)
  /external/valgrind/none/tests/scripts/
shell_dir.stderr.exp 1 valgrind: ./x86/: is a directory
shell_nosuchfile.stderr.exp 1 valgrind: ./shell_nosuchfile: No such file or directory
bug338606.stderr.exp 1 valgrind: ./bug338606: bad interpreter: No such file or directory
shell_badinterp.stderr.exp 1 valgrind: ./shell_badinterp: bad interpreter: No such file or directory
  /external/ltp/testcases/commands/cron/
cron_dirs_check.c 7 /* Check directory Access */
8 int check_directory_access(char *directory)
13 printf("Checking %s\n", directory);
15 if (stat(directory, &statbuf) == -1) {
16 printf("FAIL: %s. Could not obtain directory status\n",
17 directory);
22 printf("FAIL: %s. Invalid owner\n", directory);
27 printf("FAIL: %s. Invalid write access\n", directory);
31 printf("PASS: %s\n", directory);
39 printf("Please enter target directory");
    [all...]
  /external/proguard/src/proguard/io/
DirectoryPump.java 27 * This class can read a given file or directory, recursively, applying a given
34 private final File directory; field in class:DirectoryPump
37 public DirectoryPump(File directory)
39 this.directory = directory;
48 if (!directory.exists())
50 throw new IOException("No such file or directory");
53 readFiles(directory, dataEntryReader);
65 dataEntryReader.read(new FileDataEntry(directory, file));
FileDataEntry.java 34 private final File directory; field in class:FileDataEntry
39 public FileDataEntry(File directory,
42 this.directory = directory;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
55 .substring(directory.getPath().length() + File.separator.length())
  /external/ltp/testcases/kernel/fs/fs_bind/regression/
00_Descriptions.txt 24 The contents of the regression directory:
25 test01 - bind unshared directory to unshare mountpoint.
26 test02 - rbind unshared directory to unshare mountpoint.
27 test03 - move unshared directory to unshare mountpoint.
32 bind unshared directory to unshare mountpoint.
37 rbind unshared directory to unshare mountpoint.
42 move unshared directory to unshare mountpoint.
  /external/ImageMagick/MagickCore/
vms.c 36 % The directory methods are strongly based on similar methods written
64 % closedir() closes the named directory stream and frees the DIR structure.
75 void closedir(DIR *directory)
79 assert(directory != (DIR *) NULL);
80 directory->pattern=DestroyString(directory->pattern);
81 directory=DestroyString(directory);
96 % opendir() opens the directory named by filename and associates a directory
109 *directory; local
    [all...]
  /frameworks/rs/script_api/
Generator.h 21 bool generateHeaderFiles(const std::string& directory);
24 bool generateTestFiles(const std::string& directory, unsigned int versionOfTestFiles);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
DirectorySourceFileLocator.java 20 * Locator for source files that picks source files from a given directory in
25 private final File directory; field in class:DirectorySourceFileLocator
29 * directory.
31 * @param directory
32 * directory to search for source file
40 public DirectorySourceFileLocator(final File directory,
43 this.directory = directory;
48 final File file = new File(directory, path);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
PwdCommandHandler.java 25 * CommandHandler for the PWD (Print Working Directory) and XPWD commands. By default, return
26 * an empty directory name, along with a reply code of 257. You can customize the returned
27 * directory name by setting the <code>directory</code> property.
36 private String directory = ""; field in class:PwdCommandHandler
46 sendReply(session, quotes(directory));
50 * Set the directory String to be returned by this command
52 * @param directory - the directory
54 public void setDirectory(String directory) {
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputFactoryService.java 41 * A {@link TrialOutputFactory} implemented as a service that manages a directory either under
42 * {@code /tmp} or in a user configured directory.
44 * <p>If there is a user configured directory, then no files will be deleted on service shutdown.
60 private File directory; field in class:TrialOutputFactoryService
74 if (directory == null) {
78 dir = directory;
105 File directory; local
109 directory = new File(dirName);
110 if (!directory.exists()) {
111 if (!directory.mkdirs())
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcsclient.py 13 # environment or from a hidden file in the current directory
36 directory = None
48 directory = a
61 if not directory:
63 directory = open(os.path.join("CVS", "Repository")).readline()
67 if directory[-1] == '\n':
68 directory = directory[:-1]
69 if directory:
70 x.cd(directory)
    [all...]
  /external/python/cpython2/Demo/pdist/
rcsclient.py 13 # environment or from a hidden file in the current directory
36 directory = None
48 directory = a
61 if not directory:
63 directory = open(os.path.join("CVS", "Repository")).readline()
67 if directory[-1] == '\n':
68 directory = directory[:-1]
69 if directory:
70 x.cd(directory)
    [all...]

Completed in 2962 milliseconds

1 2 3 4 5 6 7 8 91011>>