Home | History | Annotate | Download | only in cpp

Lines Matching full:code

2 // Use of this source code is governed by a BSD-style license that can be
25 /// The <code>FileRef</code> class represents a "weak pointer" to a file in
29 /// Default constructor for creating an is_null() <code>FileRef</code>
49 /// If the <code>path</code> is malformed, the resulting <code>FileRef</code>
50 /// will have a null <code>PP_Resource</code>.
52 /// @param[in] file_system A <code>FileSystem</code> corresponding to a file
57 /// The copy constructor for <code>FileRef</code>.
59 /// @param[in] other A pointer to a <code>FileRef</code>.
64 /// @return A <code>PP_FileSystemType</code> with the file system type if
65 /// valid or <code>PP_FILESYSTEMTYPE_INVALID</code> if the provided resource
71 /// @return A <code>Var</code> containing the name of the file. The value
79 /// @return A <code>Var</code> containing the absolute path of the file.
81 /// <code>PP_FileSystemType_External</code>.
85 /// <code>file_ref</code> points to the root of the filesystem, then the root
88 /// @return A <code>FileRef</code> containing the parent directory of the
90 /// <code>PP_FileSystemType_External</code>.
98 /// @param[in] cc A <code>CompletionCallback</code> to be called upon
101 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
111 /// @param[in] cc A <code>CompletionCallback</code> to be called upon
114 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
123 /// @param[in] cc A <code>CompletionCallback</code> to be called upon
126 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
131 /// Delete() deletes a file or directory. If <code>file_ref</code> refers to
136 /// @param[in] cc A <code>CompletionCallback</code> to be called upon
139 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
142 /// Rename() renames a file or directory. Argument <code>new_file_ref</code>
147 /// @param[in] new_file_ref A <code>FileRef</code> corresponding to a new
149 /// @param[in] cc A <code>CompletionCallback</code> to be called upon
152 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
158 /// @param[in] callback A <code>CompletionCallbackWithOutput</code>
161 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.
166 /// @param[in] cc A <code>CompletionCallbackWithOutput</code> to be called
174 /// @code
183 /// @return An int32_t containing an error code from <code>pp_errors.h</code>.