OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:parentdirectory
(Results
1 - 3
of
3
) sorted by null
/external/proguard/src/proguard/io/
DirectoryWriter.java
101
File
parentDirectory
= file.getParentFile();
102
if (
parentDirectory
!= null &&
103
!
parentDirectory
.exists() &&
104
!
parentDirectory
.mkdirs())
106
throw new IOException("Can't create directory [" +
parentDirectory
.getPath() + "]");
/external/chromium_org/ui/file_manager/gallery/js/
gallery_item.js
342
return parentDirectoryPromise.then(function(
parentDirectory
) {
344
util.validateFileName(
parentDirectory
, newFileName, true);
346
var existingFilePromise = new Promise(
parentDirectory
.getFile.bind(
347
parentDirectory
, newFileName, {create: false, exclusive: false}));
352
this.entry_.moveTo.bind(this.entry_,
parentDirectory
, newFileName));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemModel.js
204
* @param {!WebInspector.FileSystemModel.Directory}
parentDirectory
209
_directoryContentReceived: function(
parentDirectory
, callback, errorCode, backendEntries)
219
entries.push(new WebInspector.FileSystemModel.Directory(this,
parentDirectory
.fileSystem, backendEntries[i]));
221
entries.push(new WebInspector.FileSystemModel.File(this,
parentDirectory
.fileSystem, backendEntries[i]));
Completed in 717 milliseconds