OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FileRef
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ppapi/cpp/
file_ref.h
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);
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
</code>
[
all
...]
file_ref.cc
27
FileRef
::
FileRef
(PP_Resource resource) : Resource(resource) {
30
FileRef
::
FileRef
(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) {
33
FileRef
::
FileRef
(const FileSystem& file_system,
44
FileRef
::
FileRef
(const
FileRef
& other)
48
PP_FileSystemType
FileRef
::GetFileSystemType() const
[
all
...]
/external/chromium_org/ppapi/tests/
test_file_ref.cc
27
REGISTER_TEST_CASE(
FileRef
);
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_ext
[
all
...]
Completed in 29 milliseconds