/external/chromium_org/ppapi/cpp/ |
audio_config.h | 53 /// Audio audio(instance, config, callback, user_data); 67 /// @param[in] instance The instance associated with this resource. 75 AudioConfig(const InstanceHandle& instance, 83 /// @param[in] instance The instance associated with this resource. 85 const InstanceHandle& instance); 99 /// @param[in] instance The instance associated with this resource. 109 const InstanceHandle& instance, [all...] |
/external/chromium_org/ppapi/proxy/ |
browser_font_singleton_resource.cc | 15 PP_Instance instance) 16 : PluginResource(connection, instance) { 28 PP_Var BrowserFontSingletonResource::GetFontFamilies(PP_Instance instance) {
|
/external/chromium_org/ppapi/shared_impl/ |
host_resource.h | 47 // resource in the host. Yet these resources still need an instance to be 50 static HostResource MakeInstanceOnly(PP_Instance instance); 57 void SetHostResource(PP_Instance instance, PP_Resource resource); 62 PP_Instance instance() const { return instance_; } function in class:ppapi::HostResource
|
/external/chromium_org/ppapi/thunk/ |
ppb_ext_crx_file_system_private_thunk.cc | 23 int32_t Open(PP_Instance instance, 27 EnterInstanceAPI<PPB_Ext_CrxFileSystem_Private_API> enter(instance, callback); 30 return enter.SetResult(enter.functions()->Open(instance,
|
ppb_network_monitor_private_thunk.cc | 18 PP_Resource Create(PP_Instance instance, 21 EnterResourceCreation enter(instance); 24 return enter.functions()->CreateNetworkMonitor(instance, callback, user_data);
|
ppb_network_proxy_thunk.cc | 22 int32_t GetProxyForURL(PP_Instance instance, 27 EnterInstanceAPI<PPB_NetworkProxy_API> enter(instance, callback); 30 return enter.SetResult(enter.functions()->GetProxyForURL(instance,
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ScopedEventQueue.h | 50 static ScopedEventQueue* instance(); 70 EventQueueScope() { ScopedEventQueue::instance()->incrementScopingLevel(); } 71 ~EventQueueScope() { ScopedEventQueue::instance()->decrementScopingLevel(); }
|
/dalvik/vm/oo/ |
TypeCheck.h | 28 extern "C" int dvmInstanceofNonTrivial(const ClassObject* instance, 32 * Determine whether "instance" is an instance of "clazz". 36 INLINE int dvmInstanceof(const ClassObject* instance, const ClassObject* clazz) 38 if (instance == clazz) { 43 return dvmInstanceofNonTrivial(instance, clazz);
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
HttpAuthDatabaseTest.java | 35 HttpAuthDatabase instance = new HttpAuthDatabase(getContext(), TEST_DATABASE); local 42 String[] result = instance.getHttpAuthUsernamePassword(host, realm); 45 instance.setHttpAuthUsernamePassword(host, realm, userName, password); 46 result = instance.getHttpAuthUsernamePassword(host, realm); 52 instance.setHttpAuthUsernamePassword(host, realm, userName, newPassword); 53 result = instance.getHttpAuthUsernamePassword(host, realm); 59 instance.setHttpAuthUsernamePassword(host, realm, newUserName, newPassword); 60 result = instance.getHttpAuthUsernamePassword(host, realm); 65 instance.setHttpAuthUsernamePassword(host, realm, null, password); 66 result = instance.getHttpAuthUsernamePassword(host, realm) [all...] |
/external/chromium_org/content/renderer/pepper/ |
mock_renderer_ppapi_host.h | 21 // This function takes the RenderView and instance that the mock resource 24 PP_Instance instance); 35 virtual bool IsValidInstance(PP_Instance instance) const OVERRIDE; 37 PP_Instance instance) const OVERRIDE; 39 PP_Instance instance) const OVERRIDE; 41 PP_Instance instance) const OVERRIDE; 43 virtual bool HasUserGesture(PP_Instance instance) const OVERRIDE; 44 virtual int GetRoutingIDForWidget(PP_Instance instance) const OVERRIDE; 46 PP_Instance instance, 53 PP_Instance instance, [all...] |
/external/chromium_org/content/test/plugin/ |
plugin_test_factory.h | 17 NPP instance,
|
/external/chromium_org/ppapi/api/dev/ |
ppb_find_dev.idl | 24 [in] PP_Instance instance, 32 [in] PP_Instance instance,
|
ppb_zoom_dev.idl | 27 void ZoomChanged([in] PP_Instance instance, 32 void ZoomLimitsChanged([in] PP_Instance instance,
|
ppp_scrollbar_dev.idl | 17 * Informs the instance that the scrollbar's value has changed. 19 void ValueChanged([in] PP_Instance instance, 24 * Informs the instance that the user has changed the system 28 void OverlayChanged([in] PP_Instance instance,
|
/external/chromium_org/ppapi/c/dev/ |
ppp_selection_dev.h | 36 struct PP_Var (*GetSelectedText)(PP_Instance instance, PP_Bool html);
|
ppp_text_input_dev.h | 39 void (*RequestSurroundingText)(PP_Instance instance,
|
ppp_zoom_dev.h | 38 void (*Zoom)(PP_Instance instance, double factor, PP_Bool text_only);
|
/external/chromium_org/ppapi/c/ |
ppb_messaging.h | 24 * specific module instance. 35 * the DOM element associated with specific module instance. 40 * the DOM element for the given module instance. A call to PostMessage() 43 * @param[in] instance A <code>PP_Instance</code> identifying one instance 83 * The module instance then invokes PostMessage() as follows: 88 * PP_Var hello_var = ppb_var_interface->VarFromUtf8(instance, 91 * ppb_messaging_interface->PostMessage(instance, hello_var); // Copies var. 98 void (*PostMessage)(PP_Instance instance, struct PP_Var message);
|
ppp_graphics_3d.h | 37 void (*Graphics3DContextLost)(PP_Instance instance);
|
ppp_input_event.h | 40 * rules. So it is important that an instance respond accurately with whether 44 * event, typically the instance will be given focus. Returning false from 46 * the click will be given to a lower part of the page and your instance will 47 * not receive focus. This allows an instance to be partially transparent, 63 * handler) for mouse events. Otherwise, the instance will not receive focus 75 PP_Bool (*HandleInputEvent)(PP_Instance instance, PP_Resource input_event);
|
ppp_messaging.h | 41 * is invoked on the DOM element for the module instance in JavaScript. Note 46 * @param[in] instance A <code>PP_Instance</code> identifying one instance 60 * the module instance on which it was invoked, with <code>message</code> 78 void (*HandleMessage)(PP_Instance instance, struct PP_Var message);
|
ppp_mouse_lock.h | 36 * MouseLockLost() is called when the instance loses the mouse lock, such as 39 * @param[in] instance A <code>PP_Instance</code> identifying one instance 42 void (*MouseLockLost)(PP_Instance instance);
|
/external/chromium_org/ppapi/c/private/ |
ppb_flash_print.h | 34 * Invokes printing on the given plugin instance. 36 void (*InvokePrinting)(PP_Instance instance);
|
ppp_instance_private.h | 40 * the given instance. Normally this will be a PPP_Class_Deprecated object 48 * @param[in] instance A PP_Instance identifying the instance from which the 49 * instance object is being requested. 52 struct PP_Var (*GetInstanceObject)(PP_Instance instance);
|
/external/chromium_org/ppapi/cpp/dev/ |
find_dev.cc | 8 #include "ppapi/cpp/instance.h" 22 PP_Bool StartFind(PP_Instance instance, 25 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); 33 void SelectFindResult(PP_Instance instance, PP_Bool forward) { 34 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); 39 void StopFind(PP_Instance instance) { 40 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface) [all...] |