/sdk/files/proguard/bin/ |
proguardgui.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
retrace.bat | 6 rem Change current directory and drive to where the script is, to avoid
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
subversion_file_system.py | 46 # directory and file versions are in different tables). 49 # things beforehand; a header, "parent directory" list, etc. We will deal 56 # The version of the directory will eventually appear in the soup of 60 # <td>Directory revision:</td> 65 if len(cells) == 2 and _InnerText(cells[0]) == 'Directory revision:': 68 raise FileSystemError('ViewVC assumption invalid: directory ' + 102 def list_dir(directory): 103 dom = xml.parseString(directory) 176 directory, filename = posixpath.split(path) 179 directory += '?pathrev=%s' % self._revisio [all...] |
/external/chromium_org/net/url_request/ |
url_request_file_job_unittest.cc | 98 // Helper function to create a file in |directory| filled with 102 const base::ScopedTempDir& directory, 104 if (!directory.IsValid()) 107 if (!base::CreateTemporaryFileInDir(directory.path(), path)) 167 base::ScopedTempDir directory; local 168 ASSERT_TRUE(directory.CreateUniqueTempDir()); 170 ASSERT_TRUE(CreateTempFileWithContent(content, directory, &path));
|
/external/chromium_org/sync/syncable/ |
entry.cc | 12 #include "sync/syncable/directory.h" 23 kernel_ = trans->directory()->GetEntryById(id); 28 kernel_ = trans->directory()->GetEntryByClientTag(tag); 34 kernel_ = trans->directory()->GetEntryByServerTag(tag); 39 kernel_ = trans->directory()->GetEntryByHandle(metahandle); 44 kernel_ = trans->directory()->GetEntryByServerTag(tag); 47 Directory* Entry::dir() const { 48 return basetrans_->directory();
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
tools_common.sh | 52 # Trap function used for failure reports and tool output directory removal. 106 # the variables are set and that they all evaluate to directory paths. 186 # LIBVPX_BIN_PATH points to the directory containing vpxdec. Positional 338 --bin-path <path to libvpx binaries directory> 339 --config-path <path to libvpx config directory> 343 --test-data-path <path to libvpx test data directory> 348 \$LIBVPX_BIN_PATH and then the current directory. 351 \$LIBVPX_CONFIG_PATH and then the current directory. 354 \$LIBVPX_TEST_DATA_PATH and then the current directory. 408 # Handle running the tests from a build directory without arguments when runnin [all...] |
/external/libvpx/libvpx/test/ |
tools_common.sh | 40 # Trap function used for failure reports and tool output directory removal. 94 # the variables are set and that they all evaluate to directory paths. 176 # LIBVPX_BIN_PATH points to the directory containing vpxdec. Positional 333 --bin-path <path to libvpx binaries directory> 334 --config-path <path to libvpx config directory> 338 --test-data-path <path to libvpx test data directory> 342 \$LIBVPX_BIN_PATH and then the current directory. 345 \$LIBVPX_CONFIG_PATH and then the current directory. 348 \$LIBVPX_TEST_DATA_PATH and then the current directory. 399 # Handle running the tests from a build directory without arguments when runnin [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
tools_common.sh | 40 # Trap function used for failure reports and tool output directory removal. 94 # the variables are set and that they all evaluate to directory paths. 176 # LIBVPX_BIN_PATH points to the directory containing vpxdec. Positional 333 --bin-path <path to libvpx binaries directory> 334 --config-path <path to libvpx config directory> 338 --test-data-path <path to libvpx test data directory> 342 \$LIBVPX_BIN_PATH and then the current directory. 345 \$LIBVPX_CONFIG_PATH and then the current directory. 348 \$LIBVPX_TEST_DATA_PATH and then the current directory. 399 # Handle running the tests from a build directory without arguments when runnin [all...] |
/libcore/luni/src/main/java/java/lang/ |
Runtime.java | 78 // Add a '/' to the end of each directory so we don't have to do it every time. 155 * and the working directory specified by {@code directory}. 163 * @param directory 164 * the directory in which to execute the program. If {@code null}, 165 * execute if in the same directory as the parent process. 171 public Process exec(String[] progArray, String[] envp, File directory) throws IOException { 173 return ProcessManager.getInstance().exec(progArray, envp, directory, false); 214 * directory specified by {@code directory} [all...] |
/sdk/files/ |
post_tools_install.bat | 23 rem and set up progdir to be the fully-qualified pathname of its directory.
26 rem Grab current directory before we change it
29 rem Change current directory and drive to where the script is, to avoid
|
/external/chromium_org/base/win/ |
pe_image.cc | 101 DWORD PEImage::GetImageDirectoryEntrySize(UINT directory) const { 104 return nt_headers->OptionalHeader.DataDirectory[directory].Size; 107 PVOID PEImage::GetImageDirectoryEntryAddr(UINT directory) const { 111 nt_headers->OptionalHeader.DataDirectory[directory].VirtualAddress); 257 PVOID directory = GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_EXPORT); local 261 if (NULL == directory || 0 == size) 265 directory); 295 if (reinterpret_cast<char*>(func) >= reinterpret_cast<char*>(directory) && 296 reinterpret_cast<char*>(func) <= reinterpret_cast<char*>(directory) + 311 PVOID directory = GetImageDirectoryEntryAddr(IMAGE_DIRECTORY_ENTRY_BASERELOC) local 397 PVOID directory = GetImageDirectoryEntryAddr( local [all...] |
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
DiskLruCache.java | 63 * <p>The cache stores its data in a directory on the filesystem. This 64 * directory must be exclusive to the cache; the cache may delete or overwrite 65 * files from its directory. It is an error for multiple processes to use the 66 * same cache directory at the same time. 154 private final File directory; field in class:DiskLruCache 257 throw new IllegalArgumentException("not a directory: " + dir); 288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) { 289 this.directory = directory; 291 this.journalFile = new File(directory, JOURNAL_FILE) [all...] |
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
DiskLruCache.java | 63 * <p>The cache stores its data in a directory on the filesystem. This 64 * directory must be exclusive to the cache; the cache may delete or overwrite 65 * files from its directory. It is an error for multiple processes to use the 66 * same cache directory at the same time. 154 private final File directory; field in class:DiskLruCache 257 throw new IllegalArgumentException("not a directory: " + dir); 288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) { 289 this.directory = directory; 291 this.journalFile = new File(directory, JOURNAL_FILE) [all...] |
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
DiskLruCache.java | 63 * <p>The cache stores its data in a directory on the filesystem. This 64 * directory must be exclusive to the cache; the cache may delete or overwrite 65 * files from its directory. It is an error for multiple processes to use the 66 * same cache directory at the same time. 154 private final File directory; field in class:DiskLruCache 257 throw new IllegalArgumentException("not a directory: " + dir); 288 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) { 289 this.directory = directory; 291 this.journalFile = new File(directory, JOURNAL_FILE) [all...] |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
policy.py | 357 """Loads a set of policies via the "default policy directory". 359 The "default policy directory" contains pairs of policies and their labels. 361 policy directory "policies.json". 363 All policies in the directory are loaded by default. Policies can be 400 def _load_policies(directory): 403 for label in directory: 404 LOGGER.info(' %s: %s' % (label, directory[label]['file'])) 405 loaded = Policy.load(directory[label]['file'], directory[label]['format'])
|
/ndk/sources/host-tools/make-3.81/ |
dir.c | 0 /* Directory hashing for GNU Make. 173 /* fake stat entry for a directory */ 223 * come up with is the fully qualified name of the directory. Beware 229 int mtime; /* controls check for stale directory cache */ 241 struct hash_table dirfiles; /* Files in this directory. */ 242 DIR *dirstream; /* Stream reading this directory. */ 338 /* Table of directory contents hashed by device and inode number. */ 341 struct directory 343 char *name; /* Name of the directory. */ 345 /* The directory's contents. This data may be shared by severa 339 struct directory struct [all...] |
/external/fonttools/Lib/fontTools/ttLib/ |
sfnt.py | 123 # clear out directory area 139 raise ttLib.TTLibError("cannot rewrite '%s' table: length does not match directory entry" % tag) 169 directory. 222 directory = sstruct.pack(self.directoryFormat, self) 229 directory = directory + entry.toString() 231 self.writeMasterChecksum(directory) 233 self.file.write(directory) 235 def _calcMasterChecksum(self, directory): 245 # Create a SFNT directory for checksum calculation purpose [all...] |
/external/chromium_org/sync/internal_api/ |
sync_manager_impl.cc | 46 #include "sync/syncable/directory.h" 242 return directory()->InitialSyncEndedTypes(); 250 directory()->GetDownloadProgress(i.Get(), &marker); 339 syncable::Directory::kSyncDatabaseFilename); 363 share_.directory.reset( 364 new syncable::Directory( 381 connection_manager_->set_client_id(directory()->cache_guid()); 384 std::string sync_id = directory()->cache_guid(); 391 model_type_registry_.reset(new ModelTypeRegistry(workers, directory())); 410 directory(), 503 syncable::Directory* SyncManagerImpl::directory() { function in class:syncer::SyncManagerImpl [all...] |
sync_backup_manager.cc | 9 #include "sync/syncable/directory.h" 46 GetUserShare()->directory->CollectMetaHandleCounts( 57 GetUserShare()->directory->SaveChanges(); 137 GetUserShare()->directory->UnmarkDirtyEntry(
|
/external/chromium_org/third_party/skia/bench/ |
gen_bench_expectations.py | 118 def get_file_suffixes(commit_hash, directory): 119 """Gets all the suffixes available in the directory""" 120 possible_files = os.listdir(directory) 126 def download_bench_data(builder, commit_hash, suffixes, directory): 128 cur_files = os.listdir(directory) 136 with open(os.path.join(directory, file_name), 'w') as dest: 156 help='a directory containing bench data files.')
|
/external/chromium_org/third_party/sqlite/src/tool/ |
omittest.tcl | 19 defined together. Each run is performed in a seperate directory created 20 as a sub-directory of the current directory by the script. The output 21 of the build is saved in <sub-directory>/build.log. The output of the 22 test-suite is saved in <sub-directory>/test.log. 43 # parameter is the name of the directory to create and use to run the 66 # Create the directory and do the build. If an error occurs return
|
/external/llvm/utils/TableGen/ |
tdtags | 30 -I <dir> Add the directory to the search path for tblgen include files. 40 all - Generate an index in each directory that contains .td files 42 here - Generate an index for all .td files in the current directory. 43 recurse - Generate an index in each directory that contains .td files 44 in and under the current directory. 78 -I <dir> Add the directory <dir> to the search path for 'include' 92 Produce a tags file in every directory in the LLVM source tree 95 Produce a tags file from .td files in the current directory. 97 Produce a tags file in every directory that contains any .td 98 files, in and under the current directory [all...] |
/external/skia/bench/ |
gen_bench_expectations.py | 118 def get_file_suffixes(commit_hash, directory): 119 """Gets all the suffixes available in the directory""" 120 possible_files = os.listdir(directory) 126 def download_bench_data(builder, commit_hash, suffixes, directory): 128 cur_files = os.listdir(directory) 136 with open(os.path.join(directory, file_name), 'w') as dest: 156 help='a directory containing bench data files.')
|
/ndk/build/tools/ |
builder-funcs.sh | 45 # $1: Build directory 53 fail_panic "Can't create build directory: $_BUILD_DIR" 57 fail_panic "Can't cleanup build directory: $_BUILD_DIR" 240 panic "Build directory not set!" 293 # directory by translating them to __/ 317 panic "Destination directory not set" 339 panic "Destination directory not set" 495 log2 "Cleaning up build directory: $_BUILD_DIR" 503 # $2: Build directory 517 panic "Missing directory: $NDK_DIR/platforms [all...] |
/cts/tests/tests/security/src/android/security/cts/ |
PackageSignatureTest.java | 152 File directory = mContext.getExternalFilesDir(null); local 154 Log.i(TAG, "Will dump " + numSignatures + " signatures to " + directory); 158 File signatureFile = new File(directory, fileName + "." + i);
|