HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 326 - 350 of 1488) sorted by null

<<11121314151617181920>>

  /external/ltp/testcases/realtime/
README 46 Run command below from LTP root directory with argument:
52 $./test_realtime.sh -t $arg # From $LTPROOT/testscripts directory
99 4. Alternatively, you can run the individual tests from their local directory.
124 All the automated run scripts set up logging in the logs/ directory. Not all
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
FileEntryTest.groovy 126 assert !clone.directory
137 assert !clone.directory
  /external/python/cpython2/Lib/distutils/
dir_util.py 3 Utility functions for manipulating directories and directory trees."""
17 # b) it blows up if the directory already exists (I want to silently
20 """Create a directory and any missing ancestor directories.
22 If the directory already exists (or if 'name' is the empty string, which
23 means the current directory, which of course exists), then do nothing.
24 Raise DistutilsFileError if unable to create some directory along the way
25 (eg. some sub-path exists, but is a file rather than a directory).
38 # each directory in the path (the current behaviour), or only announce
56 # now 'head' contains the deepest directory that already exists
57 # (that is, the child of 'head' in 'name' is the highest directory
    [all...]
  /external/python/cpython3/Lib/distutils/
dir_util.py 3 Utility functions for manipulating directories and directory trees."""
15 # b) it blows up if the directory already exists (I want to silently
18 """Create a directory and any missing ancestor directories.
20 If the directory already exists (or if 'name' is the empty string, which
21 means the current directory, which of course exists), then do nothing.
22 Raise DistutilsFileError if unable to create some directory along the way
23 (eg. some sub-path exists, but is a file rather than a directory).
36 # each directory in the path (the current behaviour), or only announce
54 # now 'head' contains the deepest directory that already exists
55 # (that is, the child of 'head' in 'name' is the highest directory
    [all...]
  /external/skia/bench/
check_bench_regressions.py 40 print '-d <dir> a directory containing bench_<revision>_<scalar> files.'
204 directory = None
217 directory = value
229 if directory is None or bot is None or rev is None:
235 data_points = bench_util.parse_skp_bench_data(directory, rev, rep)
  /external/skqp/bench/
check_bench_regressions.py 40 print '-d <dir> a directory containing bench_<revision>_<scalar> files.'
204 directory = None
217 directory = value
229 if directory is None or bot is None or rev is None:
235 data_points = bench_util.parse_skp_bench_data(directory, rev, rep)
  /external/swiftshader/third_party/SPIRV-Tools/test/tools/
spirv_test_framework.py 14 """Manages and runs tests from the current working directory.
16 This will traverse the current working directory and look for python files that
23 1. A temporary directory will be created.
143 def __init__(self, test_manager, returncode, stdout, stderr, directory,
149 # temporary directory where the test runs
150 self.directory = directory
238 """A single test case that runs in its own directory."""
250 self.directory = tempfile.mkdtemp(dir=os.getcwd())
262 self.test.environment.write(self.directory)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dwarfdump/X86/
no_apple_names_verify.s 12 # test file in the same directory.
  /external/vboot_reference/scripts/keygeneration/
increment_kernel_subkey_and_key.sh 17 Usage: $0 <keyset directory>
  /external/autotest/client/bin/
site_sysinfo.py 24 """Represents a log directory."""
28 def __init__(self, directory, excludes=DEFAULT_EXCLUDES):
29 super(logdir, self).__init__(directory, log_in_keyval=False)
30 self.dir = directory
77 """Copies this log directory to the specified directory.
79 @param log_dir: The destination log directory.
139 """Represents a log directory that only new content will be copied.
148 def __init__(self, directory, excludes=logdir.DEFAULT_EXCLUDES,
153 @param directory: directory to be diffed after an iteration finished
    [all...]
  /external/tensorflow/tensorflow/lite/testing/model_coverage/
model_coverage_lib.py 45 base_dir: Base directory containing model file.
168 def evaluate_saved_model(directory, tag_set, signature_key):
172 directory: SavedModel directory to convert.
186 meta_graph = _loader.load(sess, tag_set, directory)
348 def test_saved_model(directory,
360 directory: SavedModel directory to convert.
372 directory,
378 tf_eval_func = evaluate_saved_model(directory, tag_set, signature_key
    [all...]
  /external/u-boot/fs/yaffs2/
yaffs_verify.c 368 /* Verify parent is a directory */
372 "Obj %d's parent is not a directory (type %d)",
442 yaffs_trace(YAFFS_TRACE_ALWAYS, "Parent is not directory");
457 "Object in directory %d times",
463 void yaffs_verify_dir(struct yaffs_obj *directory)
468 if (!directory) {
473 if (yaffs_skip_full_verification(directory->my_dev))
476 if (directory->variant_type != YAFFS_OBJECT_TYPE_DIRECTORY) {
478 "Directory has wrong type: %d",
479 directory->variant_type)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/draft/
FileUtilities.java 167 public FileProcessor process(String directory, String fileName) {
169 FileInputStream fileStream = new FileInputStream(directory + File.separator + fileName);
257 public static BufferedReader openFile(String directory, String file, Charset charset) {
259 return new BufferedReader(new InputStreamReader(new FileInputStream(new File(directory, file)), charset));
277 public static BufferedReader openFile(String directory, String file) {
278 return openFile(directory, file, UTF8);
438 * for (String s : FileUtilities.in(directory,name)) {
451 * for (String s : FileUtilities.in(directory,name)) {
464 * for (String s : FileUtilities.in(directory,name)) {
471 public static Iterable<String> in(String directory, String file)
    [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/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...]
  /build/soong/android/
paths.go 101 // Rel returns the portion of the path relative to the directory it was created from. For
103 // directory, and OutputPath.Join("foo").Rel() would return "foo".
126 // GenPathWithExt derives a new file path in ctx's generated sources directory
136 // ObjPathWithExt derives a new file path in ctx's object directory from the
146 // ResPathWithName derives a new path in ctx's output resource directory, using
147 // the current path to create the directory name, and the `name` argument for
220 // PathsForModuleSrc returns Paths rooted from the module's local source directory. It expands globs and references
229 // PathsForModuleSrcExcludes returns Paths rooted from the module's local source directory, excluding paths listed in
247 // PathsAndMissingDepsForModuleSrcExcludes returns Paths rooted from the module's local source directory, excluding
349 // source directory, but strip the local source directory from the beginning o
    [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/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/
DiskLruCache.java 52 * <p>The cache stores its data in a directory on the filesystem. This
53 * directory must be exclusive to the cache; the cache may delete or overwrite
54 * files from its directory. It is an error for multiple processes to use the
55 * same cache directory at the same time.
144 private final File directory; field in class:DiskLruCache
189 DiskLruCache(FileSystem fileSystem, File directory, int appVersion, int valueCount, long maxSize,
192 this.directory = directory;
194 this.journalFile = new File(directory, JOURNAL_FILE);
195 this.journalFileTmp = new File(directory, JOURNAL_FILE_TEMP)
    [all...]
  /build/soong/ui/build/
test_build.go 29 // Checks for files in the out directory that have a rule that depends on them but no rule to
33 // previously built files are still present in the output directory.
76 // Leaf node is not in the out directory.
  /cts/hostsidetests/compilation/src/android/compilation/cts/
AdbRootDependentCompilationTest.java 60 private String directory; field in class:AdbRootDependentCompilationTest.ProfileLocation
62 ProfileLocation(String directory) {
63 this.directory = directory;
67 return directory;
71 return directory + "/primary.prof";
263 // Get the owner of the parent directory so we can set it on the file
423 // Cannot push to a privileged directory with one command.
426 // Push to a tmp directory and then move it to the final destination
435 // of the tmp directory - b/37425296
    [all...]

Completed in 717 milliseconds

<<11121314151617181920>>