Home | History | Annotate | Download | only in fileapi

Lines Matching defs:File

38 class File : public Blob {
40 static PassRefPtr<File> create(const String& path)
42 return adoptRef(new File(path));
46 static PassRefPtr<File> create(const String& path, const KURL& srcURL, const String& type)
48 return adoptRef(new File(path, srcURL, type));
52 static PassRefPtr<File> create(const String& relativePath, const String& path)
54 return adoptRef(new File(relativePath, path));
65 // Returns the relative path of this file in the context of a directory selection.
69 // Note that this involves synchronous file operation. Think twice before calling this function.
77 File(const String& path);
80 File(const String& path, const KURL& srcURL, const String& type);
83 File(const String& relativePath, const String& path);