HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 51 - 75 of 2393) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/api/
ppb_fullscreen.idl 9 * handling transitions of a module instance to and from fullscreen mode.
25 * IsFullscreen() checks whether the module instance is currently in
28 * @param[in] instance A <code>PP_Instance</code> identifying one instance
31 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode,
32 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode.
35 [in] PP_Instance instance);
38 * SetFullscreen() switches the module instance to and from fullscreen
50 * @param[in] instance A <code>PP_Instance</code> identifying one instance
    [all...]
ppp_graphics_3d.idl 24 void Graphics3DContextLost(PP_Instance instance);
ppp_mouse_lock.idl 22 * MouseLockLost() is called when the instance loses the mouse lock, such as
25 * @param[in] instance A <code>PP_Instance</code> identifying one instance
28 void MouseLockLost([in] PP_Instance instance);
  /external/chromium_org/ppapi/c/private/
ppb_flash_fullscreen.h 33 * Checks whether the plugin instance is currently in fullscreen mode.
35 PP_Bool (*IsFullscreen)(PP_Instance instance);
37 * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on
47 PP_Bool (*SetFullscreen)(PP_Instance instance, PP_Bool fullscreen);
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
52 PP_Bool (*GetScreenSize)(PP_Instance instance, struct PP_Size* size);
58 PP_Bool (*IsFullscreen)(PP_Instance instance);
59 PP_Bool (*SetFullscreen)(PP_Instance instance, PP_Bool fullscreen);
60 PP_Bool (*GetScreenSize)(PP_Instance instance, struct PP_Size* size);
  /external/chromium_org/ppapi/thunk/
ppb_console_thunk.cc 20 void Log(PP_Instance instance, PP_LogLevel level, struct PP_Var value) {
22 EnterInstance enter(instance);
25 enter.functions()->Log(instance, level, value);
28 void LogWithSource(PP_Instance instance,
33 EnterInstance enter(instance);
36 enter.functions()->LogWithSource(instance, level, source, value);
ppb_find_dev_thunk.cc 20 void NumberOfFindResultsChanged(PP_Instance instance,
24 EnterInstance enter(instance);
27 enter.functions()->NumberOfFindResultsChanged(instance, total, final_result);
30 void SelectedFindResultChanged(PP_Instance instance, int32_t index) {
32 EnterInstance enter(instance);
35 enter.functions()->SelectedFindResultChanged(instance, index);
ppb_instance_thunk.cc 20 PP_Bool BindGraphics(PP_Instance instance, PP_Resource device) {
22 EnterInstance enter(instance);
25 return enter.functions()->BindGraphics(instance, device);
28 PP_Bool IsFullFrame(PP_Instance instance) {
30 EnterInstance enter(instance);
33 return enter.functions()->IsFullFrame(instance);
ppb_mouse_lock_thunk.cc 21 int32_t LockMouse(PP_Instance instance, struct PP_CompletionCallback callback) {
23 EnterInstance enter(instance, callback);
26 return enter.SetResult(enter.functions()->LockMouse(instance,
30 void UnlockMouse(PP_Instance instance) {
32 EnterInstance enter(instance);
35 enter.functions()->UnlockMouse(instance);
ppb_text_input_thunk.cc 39 void SetTextInputType(PP_Instance instance, PP_TextInput_Type type) {
40 EnterInstance enter(instance);
42 enter.functions()->SetTextInputType(instance, type);
45 void SetTextInputType_0_2(PP_Instance instance, PP_TextInput_Type_Dev type) {
46 EnterInstance enter(instance);
48 enter.functions()->SetTextInputType(instance,
52 void UpdateCaretPosition_0_2(PP_Instance instance,
55 EnterInstance enter(instance);
57 enter.functions()->UpdateCaretPosition(instance, *caret, *bounding_box);
60 void UpdateCaretPosition(PP_Instance instance,
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricShadowOfLevel9.java 13 public static ShadowNdefMessage shadowOf(NdefMessage instance) {
14 return (ShadowNdefMessage) Robolectric.shadowOf_(instance);
17 public static ShadowNdefRecord shadowOf(NdefRecord instance) {
18 return (ShadowNdefRecord) Robolectric.shadowOf_(instance);
21 public static ShadowNfcAdapter shadowOf(NfcAdapter instance) {
22 return (ShadowNfcAdapter) Robolectric.shadowOf_(instance);
  /hardware/qcom/msm8x74/original-kernel-headers/media/
msm_vidc.h 22 int msm_vidc_close(void *instance);
23 int msm_vidc_querycap(void *instance, struct v4l2_capability *cap);
24 int msm_vidc_enum_fmt(void *instance, struct v4l2_fmtdesc *f);
25 int msm_vidc_s_fmt(void *instance, struct v4l2_format *f);
26 int msm_vidc_g_fmt(void *instance, struct v4l2_format *f);
27 int msm_vidc_s_ctrl(void *instance, struct v4l2_control *a);
28 int msm_vidc_g_ctrl(void *instance, struct v4l2_control *a);
29 int msm_vidc_reqbufs(void *instance, struct v4l2_requestbuffers *b);
30 int msm_vidc_prepare_buf(void *instance, struct v4l2_buffer *b);
31 int msm_vidc_release_buf(void *instance, struct v4l2_buffer *b)
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppp_video_decoder_dev.h 50 * |instance| the plugin instance to which the callback is responding.
56 void (*ProvidePictureBuffers)(PP_Instance instance,
66 * |instance| the plugin instance to which the callback is responding.
70 void (*DismissPictureBuffer)(PP_Instance instance,
79 * |instance| the plugin instance to which the callback is responding.
83 void (*PictureReady)(PP_Instance instance,
91 * |instance| the plugin instance to which the callback is responding
    [all...]
ppb_testing_dev.h 82 void (*RunMessageLoop)(PP_Instance instance);
87 void (*QuitMessageLoop)(PP_Instance instance);
90 * associated with this plugin instance. Used for detecting leaks. Returns
93 uint32_t (*GetLiveObjectsForInstance)(PP_Instance instance);
119 void (*SimulateInputEvent)(PP_Instance instance, PP_Resource input_event);
127 struct PP_Var (*GetDocumentURL)(PP_Instance instance,
145 void (*SetMinimumArrayBufferSizeForShmem)(PP_Instance instance,
155 void (*RunMessageLoop)(PP_Instance instance);
156 void (*QuitMessageLoop)(PP_Instance instance);
157 uint32_t (*GetLiveObjectsForInstance)(PP_Instance instance);
    [all...]
ppb_find_dev.h 36 void (*NumberOfFindResultsChanged)(PP_Instance instance,
42 void (*SelectedFindResultChanged)(PP_Instance instance, int32_t index);
ppb_text_input_dev.h 78 void (*SetTextInputType)(PP_Instance instance, PP_TextInput_Type_Dev type);
84 void (*UpdateCaretPosition)(PP_Instance instance,
90 void (*CancelCompositionText)(PP_Instance instance);
114 void (*UpdateSurroundingText)(PP_Instance instance,
125 void (*SelectionChanged)(PP_Instance instance);
131 void (*SetTextInputType)(PP_Instance instance, PP_TextInput_Type_Dev type);
132 void (*UpdateCaretPosition)(PP_Instance instance,
135 void (*CancelCompositionText)(PP_Instance instance);
ppb_zoom_dev.h 39 void (*ZoomChanged)(PP_Instance instance, double factor);
43 void (*ZoomLimitsChanged)(PP_Instance instance,
  /external/chromium_org/ppapi/cpp/private/
flash.h 37 static void SetInstanceAlwaysOnTop(const InstanceHandle& instance,
39 static bool DrawGlyphs(const InstanceHandle& instance,
50 static Var GetProxyForURL(const InstanceHandle& instance,
55 static void RunMessageLoop(const InstanceHandle& instance);
56 static void QuitMessageLoop(const InstanceHandle& instance);
57 static double GetLocalTimeZoneOffset(const InstanceHandle& instance,
61 static bool IsRectTopmost(const InstanceHandle& instance, const Rect& rect);
62 static void UpdateActivity(const InstanceHandle& instance);
63 static Var GetDeviceID(const InstanceHandle& instance);
64 static Var GetSetting(const InstanceHandle& instance,
    [all...]
  /external/chromium_org/base/memory/
singleton.cc 11 subtle::AtomicWord WaitForInstance(subtle::AtomicWord* instance) {
21 value = subtle::NoBarrier_Load(instance);
  /external/chromium_org/chrome/app/
metro_driver_win.h 16 typedef int (*MainFn)(HINSTANCE instance);
27 int RunInMetro(HINSTANCE instance, MainFn main_fn);
  /external/chromium_org/content/public/test/
web_contents_tester.cc 26 SiteInstance* instance) {
27 return TestWebContents::Create(browser_context, instance);
  /external/chromium_org/ppapi/api/private/
ppb_flash_fullscreen.idl 18 * Checks whether the plugin instance is currently in fullscreen mode.
21 [in] PP_Instance instance);
29 [in] PP_Instance instance,
33 * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on
45 [in] PP_Instance instance,
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
53 [in] PP_Instance instance,
ppb_flash_print.idl 20 * Invokes printing on the given plugin instance.
22 void InvokePrinting([in] PP_Instance instance);
ppp_instance_private.idl 24 * the given instance. Normally this will be a PPP_Class_Deprecated object
32 * @param[in] instance A PP_Instance identifying the instance from which the
33 * instance object is being requested.
36 PP_Var GetInstanceObject([in] PP_Instance instance);
  /external/chromium_org/ppapi/c/
ppb_instance.h 24 * the module instance on a web page.
34 * related to the module instance on a web page.
39 * The contents of this device is what will be displayed in the instance's
43 * unbind all devices from the given instance. The instance will then appear
48 * a device when it is already bound to another instance. If you want
55 * @param[in] instance A PP_Instance identifying one instance of a module.
61 * instance, so the caller can release its reference if it chooses.
63 PP_Bool (*BindGraphics)(PP_Instance instance, PP_Resource device)
    [all...]
ppb_mouse_lock.h 22 * locking the target of mouse events to a specific module instance.
33 * single module instance and removing the cursor from view. This mode is
55 * @param[in] instance A <code>PP_Instance</code> identifying one instance
62 int32_t (*LockMouse)(PP_Instance instance,
66 * movement again. This is an asynchronous operation. The module instance
70 * @param[in] instance A <code>PP_Instance</code> identifying one instance
73 void (*UnlockMouse)(PP_Instance instance);

Completed in 266 milliseconds

1 23 4 5 6 7 8 91011>>