Home | History | Annotate | Download | only in cpp

Lines Matching full:filesystem

22 /// The <code>FileSystem</code> class identifies the file system type
24 class FileSystem : public Resource {
26 /// Constructs an is_null() filesystem resource. If you use this constructor,
27 /// you will have to assign it to a "real" FileSystem object before you can
29 FileSystem();
31 /// The copy constructor for <code>FileSystem</code>.
33 /// @param[in] other A reference to a <code>FileSystem</code>.
34 FileSystem(const FileSystem& other);
36 /// Constructs a <code>FileSystem</code> from a <code>Resource</code>.
39 explicit FileSystem(const Resource& resource);
45 FileSystem(PassRef, PP_Resource resource);
54 FileSystem(const InstanceHandle& instance, PP_FileSystemType type);
62 /// http://www.html5rocks.com/en/tutorials/file/filesystem/#toc-requesting-quota
73 /// it is appropriate for use with the <code>FileSystem</code> constructor.