Home
last modified time | relevance | path

Searched refs:parentPath (Results 1 – 5 of 5) sorted by relevance

/external/qemu/android/
Duser-config.c55 char* parentPath; in auserConfig_new() local
87 parentPath = path_parent(uc->iniPath, 1); in auserConfig_new()
88 if (parentPath == NULL) { in auserConfig_new()
94 if (!path_exists(parentPath)) { in auserConfig_new()
96 derror("Weird: No content path for this AVD: %s", parentPath); in auserConfig_new()
99 DD("creating missing directory: %s", parentPath); in auserConfig_new()
100 if (path_mkdir_if_needed(parentPath, 0755) < 0) { in auserConfig_new()
102 parentPath, strerror(errno)); in auserConfig_new()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPIteratorImpl.java245 public NodeIterator(XMPNode visitedNode, String parentPath, int index) in NodeIterator() argument
255 path = accumulatePath(visitedNode, parentPath, index); in NodeIterator()
399 protected String accumulatePath(XMPNode currNode, String parentPath, int currentIndex) in accumulatePath() argument
419 if (parentPath == null || parentPath.length() == 0) in accumulatePath()
431 return parentPath + separator + segmentName; in accumulatePath()
525 private String parentPath;
537 public NodeIteratorChildren(XMPNode parentNode, String parentPath)
543 this.parentPath = accumulatePath(parentNode, parentPath, 1);
578 path = accumulatePath(child, parentPath, index);
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
Daction_derivedsourcesallinone.py123 (parentPath, fileName) = os.path.split(f)
173 (parentPath, fileName) = os.path.split(outputFileName)
174 if not os.path.exists(parentPath):
175 print parentPath
176 os.mkdir(parentPath)
/external/webkit/Source/WebCore/fileapi/
DEntrySync.cpp101 String parentPath = DOMFilePath::getDirectory(fullPath()); in getParent() local
102 return DirectoryEntrySync::create(m_fileSystem, parentPath); in getParent()
/external/chromium/chrome/browser/ui/cocoa/download/
Ddownload_util_mac.mm33 NSString* parentPath = [filePath stringByDeletingLastPathComponent];
35 reinterpret_cast<const UInt8*>([parentPath fileSystemRepresentation]),