Searched defs:fullPath (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryEntry.h50 static DirectoryEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
52 return new DirectoryEntry(fileSystem, fullPath);
64 DirectoryEntry(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryEntrySync.h47 static DirectoryEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
49 return new DirectoryEntrySync(fileSystem, fullPath);
61 DirectoryEntrySync(DOMFileSystemBase*, const String& fullPath);
H A DFileEntry.h46 static FileEntry* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
48 return new FileEntry(fileSystem, fullPath);
59 FileEntry(DOMFileSystemBase*, const String& fullPath);
H A DFileEntrySync.h47 static FileEntrySync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
49 return new FileEntrySync(fileSystem, fullPath);
60 FileEntrySync(DOMFileSystemBase*, const String& fullPath);
H A DEntryBase.cpp40 EntryBase::EntryBase(DOMFileSystemBase* fileSystem, const String& fullPath) argument
42 , m_fullPath(fullPath)
43 , m_name(DOMFilePath::getName(fullPath))
H A DFileEntry.cpp42 FileEntry::FileEntry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
43 : Entry(fileSystem, fullPath)
H A DFileEntrySync.cpp40 FileEntrySync::FileEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) argument
41 : EntrySync(fileSystem, fullPath)
H A DDirectoryEntry.cpp42 DirectoryEntry::DirectoryEntry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
43 : Entry(fileSystem, fullPath)
H A DDirectoryEntrySync.cpp43 DirectoryEntrySync::DirectoryEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) argument
44 : EntrySync(fileSystem, fullPath)
H A DDirectoryReader.h48 static DirectoryReader* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
50 return new DirectoryReader(fileSystem, fullPath);
65 DirectoryReader(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryReaderBase.h53 DirectoryReaderBase(DOMFileSystemBase* fileSystem, const String& fullPath) argument
55 , m_fullPath(fullPath)
H A DDirectoryReaderSync.h50 static DirectoryReaderSync* create(DOMFileSystemBase* fileSystem, const String& fullPath) argument
52 return new DirectoryReaderSync(fileSystem, fullPath);
75 DirectoryReaderSync(DOMFileSystemBase*, const String& fullPath);
H A DEntry.cpp46 Entry::Entry(DOMFileSystemBase* fileSystem, const String& fullPath) argument
47 : EntryBase(fileSystem, fullPath)
H A DEntryBase.h52 const String& fullPath() const { return m_fullPath; } function in class:blink::EntryBase
60 EntryBase(DOMFileSystemBase*, const String& fullPath);
H A DDirectoryReader.cpp86 DirectoryReader::DirectoryReader(DOMFileSystemBase* fileSystem, const String& fullPath) argument
87 : DirectoryReaderBase(fileSystem, fullPath)
H A DDirectoryReaderSync.cpp93 DirectoryReaderSync::DirectoryReaderSync(DOMFileSystemBase* fileSystem, const String& fullPath) argument
94 : DirectoryReaderBase(fileSystem, fullPath)
H A DEntrySync.cpp84 String parentPath = DOMFilePath::getDirectory(fullPath());
88 EntrySync::EntrySync(DOMFileSystemBase* fileSystem, const String& fullPath) argument
89 : EntryBase(fileSystem, fullPath)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInterp.java109 public static String getTestsuiteDir(String fullPath, String fileName) { argument
110 return fullPath.substring(0, fullPath.length()-fileName.length());
/external/chromium_org/ppapi/tests/extensions/media_galleries/
H A Dtest.js23 'fullPath': '/test.jpg',
31 'fullPath': '/test.jpg',
/external/chromium_org/third_party/angle/
H A Denumerate_files.py47 fullPath = os.path.join(root, file).replace("\\", "/") variable
49 if fnmatch.fnmatchcase(fullPath, type):
52 if fnmatch.fnmatchcase(fullPath, exclude):
57 files.append(fullPath)
/external/chromium_org/third_party/skia/bench/
H A DSkipZeroesBench.cpp55 SkString fullPath = SkOSPath::Join(resourcePath.c_str(), fFilename.c_str()); variable
56 SkFILEStream fileStream(fullPath.c_str());
/external/skia/bench/
H A DSkipZeroesBench.cpp55 SkString fullPath = SkOSPath::SkPathJoin(resourcePath.c_str(), variable
57 SkFILEStream fileStream(fullPath.c_str());
/external/chromium_org/third_party/skia/tools/
H A Dpicture_utils.cpp63 SkString fullPath = SkOSPath::Join(partialPath.c_str(), baseName.c_str()); local
64 if (SkImageEncoder::EncodeFile(fullPath.c_str(), bm, SkImageEncoder::kPNG_Type, 100)) {
67 SkDebugf("Failed to write the bitmap to %s.\n", fullPath.c_str());
/external/lzma/CPP/Windows/
H A DDLL.cpp77 TCHAR fullPath[MAX_PATH + 2]; local
78 DWORD size = ::GetModuleFileName(hModule, fullPath, MAX_PATH + 1);
81 result = fullPath;
93 wchar_t fullPath[MAX_PATH + 2]; local
94 DWORD size = ::GetModuleFileNameW(hModule, fullPath, MAX_PATH + 1);
97 result = fullPath;
/external/skia/tools/
H A Dpicture_utils.cpp63 SkString fullPath = SkOSPath::SkPathJoin(partialPath.c_str(), baseName.c_str()); local
64 if (SkImageEncoder::EncodeFile(fullPath.c_str(), bm, SkImageEncoder::kPNG_Type, 100)) {
67 SkDebugf("Failed to write the bitmap to %s.\n", fullPath.c_str());

Completed in 1854 milliseconds

123