/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_video_decoder_dev.h | 48 * |instance| the plugin instance to which the callback is responding. 55 void (*ProvidePictureBuffers)(PP_Instance instance, 65 * |instance| the plugin instance to which the callback is responding. 69 void (*DismissPictureBuffer)(PP_Instance instance, 78 * |instance| the plugin instance to which the callback is responding. 82 void (*PictureReady)(PP_Instance instance, 90 * |instance| the plugin instance to which the callback is responding [all...] |
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/c/ |
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...] |
ppp_message_handler.h | 44 * @param[in] instance A <code>PP_Instance</code> identifying one instance 51 void (*HandleMessage)(PP_Instance instance, 63 * @param[in] instance A <code>PP_Instance</code> identifying one instance 73 void (*HandleBlockingMessage)(PP_Instance instance, 79 * calls will be made which pass this same value for <code>instance</code> 82 * @param[in] instance A <code>PP_Instance</code> identifying one instance 87 void (*Destroy)(PP_Instance instance, void* user_data) [all...] |
/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/chromium_org/ppapi/proxy/ |
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/third_party/webrtc/test/channel_transport/ |
traffic_control_win.cc | 20 TrafficControlWindows* TrafficControlWindows::instance = NULL; member in class:webrtc::test::TrafficControlWindows 30 if(instance != NULL) 38 return instance; 43 instance = new TrafficControlWindows(id); 44 if(instance == NULL) 51 instance->tcRegister = NULL; 52 instance->tcDeregister = NULL; 54 instance->tcEnumerate = NULL; 55 instance->tcOpenInterface = NULL; 56 instance->tcCloseInterface = NULL [all...] |
/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...] |
ppb_instance_private.h | 43 /** Error creating and initializing the instance */ 63 * the DOM window containing this module instance. 65 * @param[in] instance A PP_Instance whose WindowObject should be retrieved. 68 struct PP_Var (*GetWindowObject)(PP_Instance instance); 71 * the DOM element containing this module instance. 73 * @param[in] instance A PP_Instance whose WindowObject should be retrieved. 76 struct PP_Var (*GetOwnerElementObject)(PP_Instance instance); 95 struct PP_Var (*ExecuteScript)(PP_Instance instance,
|
ppp_find_private.h | 38 PP_Bool (*StartFind)(PP_Instance instance, 44 void (*SelectFindResult)(PP_Instance instance, PP_Bool forward); 49 void (*StopFind)(PP_Instance instance);
|
/external/chromium_org/ppapi/cpp/ |
message_handler.h | 13 /// postMessageAndAwaitResponse(). See pp::Instance::RegisterMessageHandler() 22 /// @param[in] instance An <code>InstanceHandle</code> identifying one 23 /// instance of a module. 26 virtual void HandleMessage(pp::InstanceHandle instance, 37 /// @param[in] instance An <code>InstanceHandle</code> identifying one 38 /// instance of a module. 44 virtual pp::Var HandleBlockingMessage(pp::InstanceHandle instance, 50 /// @param[in] instance An <code>InstanceHandle</code> identifying one 51 /// instance of a module. 52 virtual void WasUnregistered(pp::InstanceHandle instance) = 0 [all...] |
/external/chromium_org/ppapi/thunk/ |
ppb_content_decryptor_private_thunk.cc | 19 void PromiseResolved(PP_Instance instance, uint32_t promise_id) { 21 EnterInstance enter(instance); 24 enter.functions()->PromiseResolved(instance, promise_id); 27 void PromiseResolvedWithSession(PP_Instance instance, 31 EnterInstance enter(instance); 34 enter.functions()->PromiseResolvedWithSession(instance, 39 void PromiseResolvedWithKeyIds(PP_Instance instance, 43 EnterInstance enter(instance); 46 enter.functions()->PromiseResolvedWithKeyIds(instance, 51 void PromiseRejected(PP_Instance instance, [all...] |
ppb_flash_fullscreen_api.h | 18 virtual PP_Bool IsFullscreen(PP_Instance instance) = 0; 19 virtual PP_Bool SetFullscreen(PP_Instance instance, 25 virtual void SetLocalIsFullscreen(PP_Instance instance,
|
ppb_flash_print_thunk.cc | 16 void InvokePrinting(PP_Instance instance) { 17 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance); 20 enter.functions()->InvokePrinting(instance);
|
ppb_gamepad_thunk.cc | 21 void Sample(PP_Instance instance, struct PP_GamepadsSampleData* data) { 23 EnterInstanceAPI<PPB_Gamepad_API> enter(instance); 28 enter.functions()->Sample(instance, data);
|
ppb_messaging_thunk.cc | 19 void PostMessage(PP_Instance instance, struct PP_Var message) { 21 EnterInstance enter(instance); 24 enter.functions()->PostMessage(instance, message); 28 PP_Instance instance, 33 EnterInstance enter(instance); 36 return enter.functions()->RegisterMessageHandler_1_1_Deprecated(instance, 42 int32_t RegisterMessageHandler_1_2(PP_Instance instance, 47 EnterInstance enter(instance); 50 return enter.functions()->RegisterMessageHandler(instance, 56 void UnregisterMessageHandler(PP_Instance instance) { [all...] |
ppb_uma_private_thunk.cc | 20 void HistogramCustomTimes(PP_Instance instance, 27 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 30 enter.functions()->HistogramCustomTimes(instance, 38 void HistogramCustomCounts(PP_Instance instance, 45 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 48 enter.functions()->HistogramCustomCounts(instance, 56 void HistogramEnumeration(PP_Instance instance, 61 EnterInstanceAPI<PPB_UMA_Singleton_API> enter(instance); 64 enter.functions()->HistogramEnumeration(instance, 70 int32_t IsCrashReportingEnabled(PP_Instance instance, [all...] |
/external/chromium_org/ui/native_theme/ |
native_theme_android.cc | 14 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme 15 return NativeThemeAndroid::instance(); 20 NativeThemeAndroid* NativeThemeAndroid::instance() { function in class:ui::NativeThemeAndroid
|
/ndk/tests/device/multi-static-instances/jni/ |
main.cpp | 8 static A* instance() { function in class:A 15 A* first = A::instance(); 16 A* second = A::instance(); 19 fprintf(stderr, "ERROR: instance() returned two distinct addresses: %p %p\n", first, second); 22 printf("OK: instance() returned the same address twice: %p\n", first);
|