/external/chromium_org/ppapi/c/ |
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);
|
ppb_text_input_controller.h | 79 void (*SetTextInputType)(PP_Instance instance, PP_TextInput_Type type); 85 void (*UpdateCaretPosition)(PP_Instance instance, 90 void (*CancelCompositionText)(PP_Instance instance); 113 void (*UpdateSurroundingText)(PP_Instance instance,
|
ppb_fullscreen.h | 23 * handling transitions of a module instance to and from fullscreen mode. 38 * IsFullscreen() checks whether the module instance is currently in 41 * @param[in] instance A <code>PP_Instance</code> identifying one instance 44 * @return <code>PP_TRUE</code> if the module instance is in fullscreen mode, 45 * <code>PP_FALSE</code> if the module instance is not in fullscreen mode. 47 PP_Bool (*IsFullscreen)(PP_Instance instance); 49 * SetFullscreen() switches the module instance to and from fullscreen 61 * @param[in] instance A <code>PP_Instance</code> identifying one instance [all...] |
/external/chromium_org/ppapi/cpp/extensions/dev/ |
events_dev.h | 24 static uint32_t AddListener(PP_Instance instance, 27 static void RemoveListener(PP_Instance instance, uint32_t listener_id);
|
events_dev.cc | 24 uint32_t Events_Dev::AddListener(PP_Instance instance, 28 return get_interface<PPB_Ext_Events_Dev_0_1>()->AddListener(instance, 33 void Events_Dev::RemoveListener(PP_Instance instance, 36 get_interface<PPB_Ext_Events_Dev_0_1>()->RemoveListener(instance,
|
/external/chromium_org/ppapi/proxy/ |
ppp_printing_proxy.cc | 23 bool HasPrintingPermission(PP_Instance instance) { 24 Dispatcher* dispatcher = HostDispatcher::GetForInstance(instance); 30 uint32_t QuerySupportedFormats(PP_Instance instance) { 31 if (!HasPrintingPermission(instance)) 34 HostDispatcher::GetForInstance(instance)->Send( 36 instance, &result)); 40 int32_t Begin(PP_Instance instance, 42 if (!HasPrintingPermission(instance)) 50 HostDispatcher::GetForInstance(instance)->Send( 51 new PpapiMsg_PPPPrinting_Begin(API_ID_PPP_PRINTING, instance, [all...] |
flash_fullscreen_resource.h | 20 PP_Instance instance); 28 virtual PP_Bool IsFullscreen(PP_Instance instance) OVERRIDE; 29 virtual PP_Bool SetFullscreen(PP_Instance instance, 31 virtual void SetLocalIsFullscreen(PP_Instance instance,
|
/external/chromium_org/ppapi/shared_impl/ |
ppb_message_loop_shared.cc | 9 MessageLoopShared::MessageLoopShared(PP_Instance instance) 10 : Resource(OBJECT_IS_PROXY, instance) {
|
/external/chromium_org/ui/base/touch/ |
touch_editing_controller.cc | 22 TouchSelectionControllerFactory* instance) { 23 g_shared_instance = instance;
|
/external/chromium_org/ui/shell_dialogs/ |
linux_shell_dialog.h | 21 // the first instance is not deleted. 22 static void SetInstance(LinuxShellDialog* instance); 24 // Returns a LinuxUI instance for the toolkit used in the user's desktop 29 static const LinuxShellDialog* instance();
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
RobolectricForMaps.java | 13 public static ShadowGeoPoint shadowOf(GeoPoint instance) { 14 return (ShadowGeoPoint) Robolectric.shadowOf_(instance); 17 public static ShadowMapView shadowOf(MapView instance) { 18 return (ShadowMapView) Robolectric.shadowOf_(instance); 21 public static ShadowMapController shadowOf(MapController instance) { 22 return (ShadowMapController) Robolectric.shadowOf_(instance); 25 public static ShadowItemizedOverlay shadowOf(ItemizedOverlay instance) { 26 return (ShadowItemizedOverlay) Robolectric.shadowOf_(instance);
|
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/ |
UserRequest.java | 29 private static UserRequest instance = new UserRequest();
field in class:UserRequest 32 return instance;
|
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/ |
NewsSource.java | 25 // the instance 26 static NewsSource instance = null; field in class:NewsSource 34 /** Returns the singleton instance of this class. */ 36 if (instance == null) { 37 instance = new NewsSource(); 39 return instance;
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
heap_instance_track.css | 6 .heap-instance-track { 10 .heap-instance-track ul {
|
/external/chromium_org/chrome/renderer/pepper/ |
ppb_pdf_impl.h | 18 // Invokes the "Print" command for the given instance as if the user right 20 static void InvokePrintingForInstance(PP_Instance instance);
|
/external/chromium_org/content/renderer/pepper/ |
ppb_x509_certificate_private_impl.cc | 13 PP_Instance instance) : 14 PPB_X509Certificate_Private_Shared(ppapi::OBJECT_IS_IMPL, instance) { 19 PP_Instance instance) { 20 return (new PPB_X509Certificate_Private_Impl(instance))->GetReference();
|
mock_renderer_ppapi_host.cc | 12 PP_Instance instance) 16 pp_instance_(instance), 27 bool MockRendererPpapiHost::IsValidInstance(PP_Instance instance) const { 28 return instance == pp_instance_; 32 PP_Instance instance) const { 38 PP_Instance instance) const { 39 if (instance == pp_instance_) 45 PP_Instance instance) const { 55 bool MockRendererPpapiHost::HasUserGesture(PP_Instance instance) const { 59 int MockRendererPpapiHost::GetRoutingIDForWidget(PP_Instance instance) const [all...] |
/external/chromium_org/ppapi/api/ |
ppb_instance.idl | 9 * the module instance on a web page. 20 * related to the module instance on a web page. 25 * The contents of this device is what will be displayed in the instance's 29 * unbind all devices from the given instance. The instance will then appear 34 * a device when it is already bound to another instance. If you want 41 * @param[in] instance A PP_Instance identifying one instance of a module. 47 * instance, so the caller can release its reference if it chooses. 50 [in] PP_Instance instance, [all...] |
ppb_mouse_lock.idl | 8 * locking the target of mouse events to a specific module instance. 20 * single module instance and removing the cursor from view. This mode is 42 * @param[in] instance A <code>PP_Instance</code> identifying one instance 49 int32_t LockMouse([in] PP_Instance instance, 54 * movement again. This is an asynchronous operation. The module instance 58 * @param[in] instance A <code>PP_Instance</code> identifying one instance 61 void UnlockMouse([in] PP_Instance instance);
|
ppp_instance.idl | 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, [all...] |
/external/chromium_org/ppapi/c/dev/ |
ppp_video_capture_dev.h | 47 void (*OnDeviceInfo)(PP_Instance instance, 56 void (*OnStatus)(PP_Instance instance, 66 void (*OnError)(PP_Instance instance, 74 void (*OnBufferReady)(PP_Instance instance,
|
ppp_scrollbar_dev.h | 33 * Informs the instance that the scrollbar's value has changed. 35 void (*ValueChanged)(PP_Instance instance, 39 * Informs the instance that the user has changed the system 42 void (*OverlayChanged)(PP_Instance instance, 50 void (*ValueChanged)(PP_Instance instance,
|
/external/chromium_org/ppapi/examples/stub/ |
stub.cc | 5 #include "ppapi/cpp/instance.h" 11 class MyInstance : public pp::Instance { 13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} 28 // Override CreateInstance to create your customized Instance object. 29 virtual pp::Instance* CreateInstance(PP_Instance instance) { 30 return new MyInstance(instance);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_URLConnector.java | 32 private URLConnection instance; field in class:Support_URLConnector 40 instance = new URL(address).openConnection(); 45 ((HttpURLConnection) instance).disconnect(); 53 if (instance == null) { 57 return instance.getInputStream(); 61 if (instance == null) { 64 instance.setDoOutput(true); 65 ((HttpURLConnection) instance).setRequestMethod("POST"); 67 return instance.getOutputStream(); 75 instance.setRequestProperty(key, value) [all...] |
/external/chromium_org/ppapi/c/private/ |
ppb_flash.h | 75 * Specifies if the given instance is in private/incognito/off-the-record mode 77 * PP_Var on invalid instance. 92 * Returns an undefined PP_Var on invalid instance. 119 * Specifies the document URL which contains the flash instance. 142 * Sets or clears the rendering hint that the given plugin instance is always 146 void (*SetInstanceAlwaysOnTop)(PP_Instance instance, PP_Bool on_top); 156 PP_Instance instance, 171 struct PP_Var (*GetProxyForURL)(PP_Instance instance, const char* url); 182 double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t); 202 PP_Bool (*IsRectTopmost)(PP_Instance instance, const struct PP_Rect* rect) [all...] |