Lines Matching refs:in

3  * found in the LICENSE file.
8 * pointers to methods that you must implement in your module.
18 * functions that you must implement in your module. These functions can be
32 * <code>PP_Instance</code> handle will be used in subsequent calls to
35 * It's possible for more than one instance to be created in a single module.
37 * <code>OnDestroy</code> in between, and should be prepared to maintain
43 * @param[in] instance A new <code>PP_Instance</code> identifying one
46 * @param[in] argc The number of arguments contained in <code>argn</code>
49 * @param[in] argn An array of argument names. These argument names are
50 * supplied in the \<embed\> tag, for example:
54 * @param[in] argv An array of argument values. These are the values of the
55 * arguments listed in the \<embed\> tag, for example
58 * the indices of the corresponding names in <code>argn</code>.
65 [in] PP_Instance instance,
66 /* The number of arguments contained in argn and argv. */
67 [in] uint32_t argc,
69 * supplied in the <embed> tag, for example:
73 [in, size_as=argc] str_t[] argn,
75 * arguments listed in the <embed> tag, for example
78 * indices of the corresponding names in argn.
80 [in, size_as=argc] str_t[] argv);
84 * in many cases (see below) when a module instance is destroyed. It will be
88 * information and the <code>PP_Instance</code> mapping you created in the
101 * implementations in certain circumstances when Chrome does "fast shutdown"
102 * of a web page. Fast shutdown will happen in some cases when all module
106 * @param[in] instance A <code>PP_Instance</code> identifying one instance
111 [in] PP_Instance instance);
114 * Deprecated in 1.1 in favor of the version that takes a Resource.
117 * rectangle of the element in the browser that corresponds to this
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
140 * generating graphics updates in this case to save system resources. It's
145 * asynchronously from scrolling so there can be flashes of old content in the
150 [in] PP_Instance instance,
155 [in] PP_Rect position,
160 [in] PP_Rect clip);
169 [in] PP_Instance instance,
173 [in] PP_Resource view);
183 * selected in the window, and the instance must be the focused element on
188 * <code>HandleInputEvent</code> in <code>PPP_InputEvent</code> (or use
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.
204 [in] PP_Instance instance,
206 [in] PP_Bool has_focus);
227 * @param[in] instance A <code>PP_Instance</code> identifying the instance
230 * @param[in] url_loader An open <code>PPB_URLLoader</code> instance.
238 [in] PP_Instance instance,
240 [in] PP_Resource url_loader);