Searched defs:FileRef (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/ppapi/cpp/
H A Dfile_ref.h25 /// The <code>FileRef</code> class represents a "weak pointer" to a file in
27 class FileRef : public Resource { class in namespace:pp
29 /// Default constructor for creating an is_null() <code>FileRef</code>
31 FileRef() {} function in class:pp::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);
49 /// If the <code>path</code> is malformed, the resulting <code>FileRef</code>
55 FileRef(const FileSystem& file_system, const char* path);
57 /// The copy constructor for <code>FileRef</cod
[all...]
H A Dfile_ref.cc32 FileRef::FileRef(PP_Resource resource) : Resource(resource) { function in class:pp::FileRef
35 FileRef::FileRef(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) { function in class:pp::FileRef
38 FileRef::FileRef(const FileSystem& file_system, function in class:pp::FileRef
52 FileRef::FileRef(const FileRef& other) function in class:pp::FileRef
56 PP_FileSystemType FileRef
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_file_ref.cc27 REGISTER_TEST_CASE(FileRef); variable
53 std::string TestFileRef::MakeExternalFileRef(pp::FileRef* file_ref_ext) {
69 *file_ref_ext = pp::FileRef(response_info.GetBodyAsFileRef());
74 int32_t TestFileRef::DeleteDirectoryRecursively(pp::FileRef* dir) {
92 pp::FileRef file_ref = it->file_ref();
139 pp::FileRef file_ref_pers(file_system_pers, invalid_paths[j].c_str());
144 pp::FileRef file_ref_temp(file_system_temp, invalid_paths[j].c_str());
159 pp::FileRef file_ref_pers(file_system_pers, kPersFilePath);
163 pp::FileRef file_ref_temp(file_system_temp, kTempFilePath);
167 pp::FileRef file_ref_ex
[all...]

Completed in 103 milliseconds