Home | History | Annotate | Download | only in cpp

Lines Matching refs:FileRef

25 /// The <code>FileRef</code> class represents a "weak pointer" to a file in
27 class FileRef : public Resource {
29 /// Default constructor for creating an is_null() <code>FileRef</code>
31 FileRef() {}
33 /// A constructor used when you have an existing PP_Resource for a FileRef
38 explicit FileRef(PP_Resource resource);
44 FileRef(PassRef, PP_Resource resource);
52 FileRef(const FileSystem& file_system, const char* path);
54 /// The copy constructor for <code>FileRef</code>.
56 /// @param[in] other A pointer to a <code>FileRef</code>.
57 FileRef(const FileRef& other);
85 /// @return A <code>FileRef</code> containing the parent directory of the
88 FileRef GetParent() const;
144 /// @param[in] new_file_ref A <code>FileRef</code> corresponding to a new
150 int32_t Rename(const FileRef& new_file_ref, const CompletionCallback& cc);