Lines Matching refs:instance

25    * DidCreate() is a creation handler that is called when a new instance is
30 * your module associates with an instance and creating a mapping from the
33 * identify which instance the call pertains to.
35 * It's possible for more than one instance to be created in a single module.
38 * multiple states associated with each instance.
41 * the instance will be deleted.
43 * @param[in] instance A new <code>PP_Instance</code> identifying one
44 * instance of a module. This is an opaque handle.
64 /* A PP_Instance identifying one instance of a module. */
65 [in] PP_Instance instance,
83 * DidDestroy() is an instance destruction handler. This function is called
84 * in many cases (see below) when a module instance is destroyed. It will be
90 * instance but this isn't required; all resources associated with the deleted
91 * instance will be automatically freed when this function returns.
93 * The instance identifier will still be valid during this call, so the module
106 * @param[in] instance A <code>PP_Instance</code> identifying one instance
110 /* A PP_Instance identifying one instance of a module. */
111 [in] PP_Instance instance);
118 * instance has changed.
126 * @param[in] instance A <code>PP_Instance</code> identifying the instance
129 * @param[in] position The location on the page of the instance. This is
133 * to the instance so the absolute position isn't useful in most cases).
135 * @param[in] clip The visible region of the instance. This is relative to
142 * the clip when the instance is partially visible. Instead, update the entire
149 /* A PP_Instance identifying the instance whose view changed. */
150 [in] PP_Instance instance,
151 /* The new location on the page of this instance. This is relative to
164 * attributes of the instance has changed.
168 /* A PP_Instance identifying the instance whose view changed. */
169 [in] PP_Instance instance,
176 * DidChangeFocus() is called when an instance has gained or lost focus.
177 * Having focus means that keyboard events will be sent to the instance.
178 * An instance's default condition is that it will not have focus.
183 * selected in the window, and the instance must be the focused element on
197 * @param[in] instance A <code>PP_Instance</code> identifying the instance
200 * @param[in] has_focus Indicates the new focused state of the instance.
203 /* A PP_Instance identifying one instance of a module. */
204 [in] PP_Instance instance,
210 * instance that was instantiated based on the MIME type of a DOMWindow
217 * <code>PPB_URLLoader</code> instance that is already opened. Its response
227 * @param[in] instance A <code>PP_Instance</code> identifying the instance
230 * @param[in] url_loader An open <code>PPB_URLLoader</code> instance.
237 /* A PP_Instance identifying one instance of a module. */
238 [in] PP_Instance instance,
239 /* A PP_Resource an open PPB_URLLoader instance. */