/external/chromium_org/sync/internal_api/public/ |
user_share.h | 16 class Directory; 27 // The Directory itself, which is the parent of Transactions. 28 scoped_ptr<syncable::Directory> directory; member in struct:syncer::UserShare
|
/external/chromium_org/sync/internal_api/test/ |
sync_manager_for_profile_sync_test.cc | 9 #include "sync/syncable/directory.h" 23 syncable::Directory* directory = user_share->directory.get(); local 33 if (!directory->InitialSyncEndedForType(it.Get())) {
|
test_user_share.cc | 8 #include "sync/syncable/directory.h" 32 user_share_->directory.reset(dir_maker_->directory()); 37 ignore_result(user_share_->directory.release()); 44 if (!user_share_->directory->SaveChanges()) 48 user_share_->directory->store_.release(); 51 ignore_result(user_share_->directory.release()); 54 user_share_->directory.reset(dir_maker_->directory()); 72 syncer::syncable::Directory* directory = user_share->directory.get() local [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())
|
DirectoryWriter.java | 30 * directory. 46 * @param baseFile the base directory to which all files will be written. 67 File directory = getFile(dataEntry); local 68 if (!directory.exists() && 69 !directory.mkdirs()) 71 throw new IOException("Can't create directory [" + directory.getPath() + "]"); 106 throw new IOException("Can't create directory [" + parentDirectory.getPath() + "]");
|
/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_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/content/shell/browser/ |
shell_layout_tests_android.cc | 28 ScopedJavaLocalRef<jstring> directory = local 31 return base::FilePath(ConvertJavaStringToUTF8(directory));
|
shell_download_manager_delegate.cc | 163 std::wstring directory; local 165 directory = suggested_path.DirName().value(); 167 save_as.lpstrInitialDir = directory.c_str();
|
/external/chromium_org/sync/syncable/ |
syncable_base_transaction.cc | 8 #include "sync/syncable/directory.h" 18 Directory* BaseTransaction::directory() const { function in class:syncer::syncable::BaseTransaction 41 // Note: We dont call the Directory's OnUnrecoverableError method right 45 directory()->ReportUnrecoverableError(); 54 directory()->OnUnrecoverableError(this, 63 Directory* directory) 65 directory_(directory), unrecoverable_error_set_(false) { 66 // TODO(lipalani): Don't issue a good transaction if the directory ha [all...] |
/external/chromium_org/sync/test/engine/ |
test_directory_setter_upper.h | 6 // syncable::Directory instance for unit tests that require one. 22 // Then, in your tests, get at the directory like so: 25 // ... now use metadb_.directory() to get at syncable::Entry objects ... 45 class Directory; 55 // Create a Directory instance open it. 58 // Create a Directory instance using |directory_store| as backend storage. 63 // Undo everything done by SetUp(): close the directory and delete the 64 // backing files. Before closing the directory, this will run the directory 65 // invariant checks and perform the SaveChanges action on the directory 68 syncable::Directory* directory() { return directory_.get(); } function in class:syncer::TestDirectorySetterUpper [all...] |
/external/chromium_org/third_party/WebKit/public/web/ |
WebFileChooserParams.h | 43 // If |directory| is true, the dialog allows the user to select a directory. 44 bool directory; member in struct:blink::WebFileChooserParams 77 , directory(false)
|
/libcore/ |
CaCerts.mk | 29 # $(3): destination directory 30 define include-prebuilt-with-destination-directory 45 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory)))) 55 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
|
/libcore/luni/src/main/java/java/lang/ |
ProcessBuilder.java | 34 private File directory; field in class:ProcessBuilder 112 * Returns the working directory of this process builder. If {@code null} is 113 * returned, then the working directory of the Java process is used when a 116 * @return the current working directory, may be {@code null}. 118 public File directory() { method in class:ProcessBuilder 119 return directory; 123 * Changes the working directory of this process builder. If the specified 124 * directory is {@code null}, then the working directory of the Java 127 * @param directory 131 public ProcessBuilder directory(File directory) { method in class:ProcessBuilder [all...] |
/cts/tools/signature-tools/src/signature/io/html/ |
HtmlDeltaExternalizer.java | 52 File directory = new File(location); local 53 if (!directory.exists()) { 54 directory.mkdirs(); 118 private void copyStyleSheet(String directory) throws IOException { 121 writeToFile(directory + STYLE_SHEET_NAME, template.toString());
|
/external/chromium_org/chrome/browser/ui/ash/ |
screenshot_taker_unittest.cc | 65 // allowed to set the directory, basename and profile. 114 base::ScopedTempDir directory; local 115 ASSERT_TRUE(directory.CreateUniqueTempDir()); 116 SetScreenshotDirectoryForTest(&screenshot_taker, directory.path());
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
VersionNumberStripper.java | 18 * A class that strips version numbers off built plugin directory names. This 25 //the directory containing the directories and files from which to remove version information 26 private String directory; field in class:VersionNumberStripper 32 public void setDirectory(String dir){directory=dir;} 34 public String getDirectory(){return directory;} 37 setDirectory(directory); 51 File file=new File(directory);
|
/system/extras/ext4_utils/ |
make_ext4fs_main.c | 57 fprintf(stderr, " <filename> [<directory>]\n"); 64 const char *directory = NULL; local 185 directory = argv[optind++]; 203 exitcode = make_ext4fs_internal(fd, directory, mountpoint, fs_config_func, gzip,
|
/external/chromium/net/tools/dump_cache/ |
cache_dumper.cc | 57 // we keep going even if directory creation failed. 92 FilePath directory = entry_path_.DirName(); local 93 SafeCreateDirectory(directory.value());
|
/external/chromium_org/chrome/browser/media_galleries/mac/ |
mtp_device_delegate_impl_mac.h | 21 // all appear as children of that directory. (ItemAdded calls with directories 62 // Scheduled when early directory reads are requested. The 139 base::FilePath directory; member in struct:MTPDeviceDelegateImplMac::ReadDirectoryRequest
|
/external/javassist/src/main/javassist/ |
URLClassPath.java | 31 protected String directory; field in class:URLClassPath 47 * <code>port</code> is 80, and <code>directory</code> is "/java/classes/". 54 * @param directory directory name ending with "/". 55 * It can be "/" (root directory). 60 String directory, String packageName) { 63 this.directory = directory; 68 return hostname + ":" + port + directory; 89 = directory + classname.replace('.', '/') + ".class" [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/ |
TestChooser.java | 112 File directory; local 114 directory = new File(URLDecoder.decode(url.getFile(), "UTF-8")); 119 if (directory.exists()) { 121 + directory.getName() + "\"."); 122 addAllFilesInDirectory(directory, classes, pckgname, recursive); 199 * @param directory 204 * current package name for the diven directory 208 private void addAllFilesInDirectory(File directory, 211 File[] files = directory.listFiles(getFileFilter());
|
/external/webrtc/test/testsupport/ |
fileutils_unittest.cc | 34 // Test fixture to restore the working directory between each test, since some 100 // directory that is automatically set when the test executable is launched. 103 // The test will fail if the top level directory is not named "trunk". 119 // Tests setting the current working directory to a directory three levels 138 // Tests with current working directory set to a directory higher up in the 139 // directory tree than the project root dir. This case shall return a specified 140 // error string as a directory (which will be an invalid path). 157 std::string directory = "fileutils-unittest-empty-dir" local [all...] |
/libcore/luni/src/test/java/libcore/dalvik/system/ |
PathClassLoaderTest.java | 46 private File makeTempFile(File directory, String name) throws IOException { 47 directory.mkdirs(); 48 File result = new File(directory, name);
|