/external/chromium_org/sync/internal_api/ |
base_transaction.cc | 7 #include "sync/syncable/directory.h" 17 DCHECK(share && share->directory.get());
|
/external/chromium_org/sync/syncable/ |
syncable_read_transaction.h | 19 Directory* directory);
|
syncable_base_transaction.h | 15 class Directory; 36 Directory* directory() const; 45 // bool and calls the Directory to handle the unrecoverable error. 55 Directory* directory); 69 Directory* const directory_;
|
/external/valgrind/main/none/tests/ |
shell.stderr.exp | 1 ./shell: ./x86/: is a directory 7 ./shell: ./shell_nosuchfile: No such file or directory
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 19 "base build directory (default: 'build.build-base')"), 21 "build directory for all modules (default: 'build.build-lib')"), 23 "temporary build directory (default: 'build.build-temp')"), 25 "build directory for scripts (default: 'build.build-scripts')"), 27 "temporary directory for built distributions"), 52 # remove the build/temp.<plat> directory (unless it's already 62 for directory in (self.build_lib, 65 if os.path.exists(directory): 66 remove_tree(directory, dry_run=self.dry_run) 69 directory) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
clean.py | 19 "base build directory (default: 'build.build-base')"), 21 "build directory for all modules (default: 'build.build-lib')"), 23 "temporary build directory (default: 'build.build-temp')"), 25 "build directory for scripts (default: 'build.build-scripts')"), 27 "temporary directory for built distributions"), 52 # remove the build/temp.<plat> directory (unless it's already 62 for directory in (self.build_lib, 65 if os.path.exists(directory): 66 remove_tree(directory, dry_run=self.dry_run) 69 directory) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
report.py | 23 # The directory into which to place the report, used by some derived 25 self.directory = None 61 def report_files(self, report_fn, morfs, config, directory=None): 80 self.directory = directory 81 if self.directory and not os.path.exists(self.directory): 82 os.makedirs(self.directory)
|
/external/chromium_org/third_party/lcov/example/ |
Makefile | 7 # - clean: clean up directory 51 --output-directory output --title "Basic example" \ 71 $(LCOV) --zerocounters --directory . 73 $(LCOV) --capture --directory . --output-file trace_noargs.info --test-name test_noargs 81 $(LCOV) --zerocounters --directory . 83 $(LCOV) --capture --directory . --output-file trace_args.info --test-name test_2_to_2000 91 $(LCOV) --zerocounters --directory . 93 $(LCOV) --capture --directory . --output-file trace_overflow.info --test-name "test_overflow"
|
/external/chromium_org/third_party/lcov-1.9/example/ |
Makefile | 7 # - clean: clean up directory 51 --output-directory output --title "Basic example" \ 71 $(LCOV) --zerocounters --directory . 73 $(LCOV) --capture --directory . --output-file trace_noargs.info --test-name test_noargs 81 $(LCOV) --zerocounters --directory . 83 $(LCOV) --capture --directory . --output-file trace_args.info --test-name test_2_to_2000 91 $(LCOV) --zerocounters --directory . 93 $(LCOV) --capture --directory . --output-file trace_overflow.info --test-name "test_overflow"
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
DeferredFileOutputStream.java | 82 * The directory to use for temporary files.
84 private File directory;
field in class:DeferredFileOutputStream 119 * @param directory Temporary file directory.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory)
131 this.directory = directory;
163 outputFile = File.createTempFile(prefix, suffix, directory);
|
/external/chromium_org/third_party/lcov/bin/ |
mcov | 9 # mcov --directory <base directory> --output <output file> --verbose <level> 28 my $directory = Cwd::abs_path(Cwd::getcwd); 36 my $result = GetOptions("directory|d=s" => \$directory, 40 print "Usage: $0 --directory <base directory> --output <output file>"; 45 # convert the directory path to absolute path. 46 $directory = Cwd::abs_path($directory); [all...] |
updateversion.pl | 11 our $directory = $ARGV[0]; 22 if (!defined($directory) || !defined($version) || !defined($release)) { 23 die("Usage: $0 <directory> <version string> <release string>\n"); 28 update_man_page($directory."/".$_); 32 update_bin_tool($directory."/".$_); 36 update_txt_file($directory."/".$_); 40 update_spec_file($directory."/".$_);
|
/external/chromium_org/build/util/ |
lastchange.py | 24 def FetchSVNRevision(directory, svn_url_regex): 26 Fetch the Subversion branch and revision for a given directory. 37 cwd=directory, 66 def RunGitCommand(directory, command): 86 cwd=directory, 93 def FetchGitRevision(directory): 95 Fetch the Git hash for a given directory. 102 proc = RunGitCommand(directory, ['rev-parse', 'HEAD']) 110 def FetchGitSVNURLAndRevision(directory, svn_url_regex): 119 proc = RunGitCommand(directory, ['log', '-1' [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
wallpaper_directories.js | 44 * Returns all custom wallpaper related directory entries. 51 * If dirName is not requested, gets the directory entry of dirName and cache 53 * @param {string} dirName The directory name of requested directory entry. 57 * requested directory. 62 console.error('Error: Unknow directory name.'); 81 * @param {string} dirName The directory name of requested directory entry. 85 * requested directory.
|
/external/chromium_org/third_party/openssl/openssl/crypto/ |
LPdir_win.c | 55 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) 57 if (ctx == NULL || directory == NULL) 78 size_t index = 0,len_0 = strlen(directory) + 1; 90 if (!MultiByteToWideChar(CP_ACP, 0, directory, len_0, (WCHAR *)wdir, len_0)) 93 wdir[index] = (TCHAR)directory[index]; 100 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
|
/external/openssl/crypto/ |
LPdir_win.c | 55 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory) 57 if (ctx == NULL || directory == NULL) 78 size_t index = 0,len_0 = strlen(directory) + 1; 90 if (!MultiByteToWideChar(CP_ACP, 0, directory, len_0, (WCHAR *)wdir, len_0)) 93 wdir[index] = (TCHAR)directory[index]; 100 (*ctx)->handle = FindFirstFile((TCHAR *)directory, &(*ctx)->ctx);
|
/external/chromium_org/chrome/browser/resources/file_manager/js/ |
file_watcher.js | 8 * Watches for changes in the tracked directory, including local metadata 45 * Called when a file in the watched directory is changed. 51 var e = new cr.Event('watcher-directory-changed'); 57 * Called when general metadata in the watched directory has been changed. 70 * Called when thumbnail metadata in the watched directory has been changed. 83 * Called when drive metadata in the watched directory has been changed. 97 * directory. 115 * Changes the watched directory. In case of a fake entry, the watch is 116 * just released, since there is no reason to track a fake directory. 118 * @param {!DirectoryEntry|!Object} entry Directory entry to be tracked, or th [all...] |
/build/tools/atree/ |
Android.mk | 3 # Copies files into the directory structure described by a manifest
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 50 // Used for helper functions for naming files in a directory for xml output. 54 // a directory, otherwise it is assumed to represent a file. In either case, 55 // it may or may not represent an actual file or directory in the file system. 73 // Given directory = "dir", base_name = "test", number = 0, 77 static FilePath MakeFileName(const FilePath& directory, 83 // will be directory/base_name.extension or 84 // directory/base_name_<number>.extension if directory/base_name.extension 90 static FilePath GenerateUniqueFileName(const FilePath& directory, [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
run_all.py | 33 """Run all tests in the same directory. 35 This suite is expected to be run under pywebsocket's src directory, i.e. the 36 directory containing mod_pywebsocket, test, etc. 58 def _list_test_modules(directory): 60 for filename in os.listdir(directory):
|
/external/chromium_org/sync/sessions/ |
sync_session_context.cc | 18 syncable::Directory* directory, 28 directory_(directory),
|
/cts/tools/signature-tools/src/signature/io/impl/ |
BinaryApi.java | 35 File directory = new File(fileName);
local 36 if (!directory.exists()) {
37 directory.mkdirs();
40 File file = new File(directory, getFileName(api));
|
/external/chromium/chrome/browser/sync/syncable/ |
syncable_mock.h | 15 using syncable::Directory; 18 class MockDirectory : public Directory { 33 explicit MockSyncableWriteTransaction(Directory *directory);
|
/external/chromium_org/chrome/installer/util/ |
create_reg_key_work_item.cc | 21 base::FilePath directory = path.DirName(); local 24 if (directory == path || directory.value() == 28 *dir = directory.value();
|
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/ |
sdk_update_common.py | 21 def MakeDirs(directory): 22 if not os.path.exists(directory): 23 logging.info('Making directory %s' % (directory,)) 24 os.makedirs(directory) 28 """Removes the given directory 31 work when the directory contains junctions (as does our SDK installer). 33 does the right thing on Windows. If the directory already didn't exist, 37 outdir: The directory to delete 51 # The directory can't be removed because it doesn't exist [all...] |