/external/chromium_org/base/memory/ |
singleton.cc | 11 subtle::AtomicWord WaitForInstance(subtle::AtomicWord* instance) { 22 // instance pointer must acquire visibility over the associated data. 24 value = subtle::Acquire_Load(instance);
|
/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/ |
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/api/private/ |
ppb_find_private.idl | 21 * Sets the instance of this plugin as the mechanism that will be used to 37 [in] PP_Instance instance); 46 [in] PP_Instance instance, 54 [in] PP_Instance instance, 62 [in] PP_Instance instance,
|
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/dev/ |
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/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);
|
/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...] |
/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/ime/linux/ |
linux_input_method_context_factory.h | 22 static const LinuxInputMethodContextFactory* instance(); 26 // the first instance is not deleted. 27 static void SetInstance(const LinuxInputMethodContextFactory* instance);
|
/external/chromium_org/ui/base/touch/ |
touch_editing_controller.cc | 22 TouchSelectionControllerFactory* instance) { 23 g_shared_instance = instance;
|
/external/chromium_org/ui/gfx/ |
linux_font_delegate.h | 25 // the first instance is not deleted. 26 static void SetInstance(LinuxFontDelegate* instance); 28 // Returns a LinuxFontDelegate instance for the toolkit used in 33 static const LinuxFontDelegate* 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/mojo/public/cpp/bindings/ |
interface_impl.h | 29 // until this instance is deleted. 40 // Called when the client has connected to this instance. 43 // Called when the client is no longer connected to this instance. NOTE: The 59 // Takes an instance of an InterfaceImpl<..> subclass and binds it to the given 60 // MessagePipe. The instance is returned for convenience in member initializer 63 // If the pipe is closed, the instance's OnConnectionError method will be called 64 // and then the instance will be deleted. 66 // The instance is also bound to the current thread. Its methods will only be 71 // Before returning, the instance's OnConnectionEstablished method is called. 74 Impl* instance, [all...] |
/external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/ |
multi_platform.cc | 5 #include "ppapi/cpp/instance.h" 9 class Instance : public pp::Instance { 11 explicit Instance(PP_Instance instance) : pp::Instance(instance) {} 12 virtual ~Instance() {} 25 virtual pp::Instance* CreateInstance(PP_Instance instance) { [all...] |
/external/chromium_org/native_client_sdk/src/getting_started/part1/ |
hello_tutorial.cc | 18 /// this becomes a call to the HandleMessage() method of your pp::Instance 20 /// PostMessage() method on your pp::Instance. Note that these two methods 27 #include "ppapi/cpp/instance.h" 31 /// The Instance class. One of these exists for each instance of your NaCl 33 /// a new Instance for each occurrence of the <embed> tag that has these 40 class HelloTutorialInstance : public pp::Instance { 42 /// The constructor creates the plugin-side instance. 43 /// @param[in] instance the handle to the browser-side plugin instance [all...] |