Searched refs:instance (Results 76 - 100 of 1914) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.css6 .heap-instance-track {
10 .heap-instance-track ul {
/external/chromium_org/ppapi/api/
H A Dppb_instance.idl9 * 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...]
H A Dppb_mouse_lock.idl8 * 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);
H A Dppp_instance.idl25 * 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/
H A Dppp_video_capture_dev.h47 void (*OnDeviceInfo)(PP_Instance instance,
56 void (*OnStatus)(PP_Instance instance,
66 void (*OnError)(PP_Instance instance,
74 void (*OnBufferReady)(PP_Instance instance,
H A Dppp_video_decoder_dev.h48 * |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| th
[all...]
H A Dppp_scrollbar_dev.h33 * 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/
H A Dppb_text_input_controller.h79 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,
H A Dppb_fullscreen.h23 * 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/c/private/
H A Dppb_pdf.h94 struct PP_Var (*GetLocalizedString)(PP_Instance instance,
98 PP_Resource (*GetResourceImage)(PP_Instance instance,
106 PP_Instance instance,
120 PP_Instance instance,
130 void (*DidStartLoading)(PP_Instance instance);
131 void (*DidStopLoading)(PP_Instance instance);
135 void (*SetContentRestriction)(PP_Instance instance, int restrictions);
138 void (*HistogramPDFPageCount)(PP_Instance instance, int count);
141 void (*UserMetricsRecordAction)(PP_Instance instance, struct PP_Var action);
144 void (*HasUnsupportedFeature)(PP_Instance instance);
[all...]
H A Dppb_flash.h75 * 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, cons
[all...]
H A Dppb_instance_private.h43 /** 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,
/external/chromium_org/ppapi/examples/stub/
H A Dstub.cc5 #include "ppapi/cpp/instance.h"
13 explicit MyInstance(PP_Instance instance) : pp::Instance(instance) {} argument
29 virtual pp::Instance* CreateInstance(PP_Instance instance) { argument
30 return new MyInstance(instance);
/external/chromium_org/ppapi/thunk/
H A Dppb_instance_api.h48 virtual PP_Bool BindGraphics(PP_Instance instance, PP_Resource device) = 0;
49 virtual PP_Bool IsFullFrame(PP_Instance instance) = 0;
53 virtual const ViewData* GetViewData(PP_Instance instance) = 0;
55 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) = 0;
58 virtual PP_Var GetWindowObject(PP_Instance instance) = 0;
59 virtual PP_Var GetOwnerElementObject(PP_Instance instance) = 0;
60 virtual PP_Var ExecuteScript(PP_Instance instance,
65 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance) = 0;
66 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance) = 0;
69 virtual PP_Var GetDefaultCharSet(PP_Instance instance)
[all...]
H A Dresource_creation_api.h46 // creation) so need functional routing based on the instance ID.
51 virtual PP_Resource CreateFileIO(PP_Instance instance) = 0;
53 PP_Instance instance,
55 virtual PP_Resource CreateFileSystem(PP_Instance instance,
57 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
67 PP_Instance instance,
74 PP_Instance instance,
83 PP_Instance instance,
87 virtual PP_Resource CreateResourceArray(PP_Instance instance,
91 PP_Instance instance,
[all...]
H A Dppb_pdf_thunk.cc19 PP_Var GetLocalizedString(PP_Instance instance, PP_ResourceString string_id) { argument
20 EnterInstanceAPI<PPB_PDF_API> enter(instance);
26 PP_Resource GetResourceImage(PP_Instance instance, argument
28 EnterInstanceAPI<PPB_PDF_API> enter(instance);
35 PP_Instance instance,
41 EnterResourceCreation enter(instance);
44 return enter.functions()->CreateFlashFontFile(instance, description, charset);
60 void SearchString(PP_Instance instance, argument
66 EnterInstanceAPI<PPB_PDF_API> enter(instance);
72 void DidStartLoading(PP_Instance instance) { argument
34 GetFontFileWithFallback( PP_Instance instance, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument
78 DidStopLoading(PP_Instance instance) argument
84 SetContentRestriction(PP_Instance instance, int restrictions) argument
90 HistogramPDFPageCount(PP_Instance instance, int count) argument
96 UserMetricsRecordAction(PP_Instance instance, PP_Var action) argument
102 HasUnsupportedFeature(PP_Instance instance) argument
108 SaveAs(PP_Instance instance) argument
114 Print(PP_Instance instance) argument
120 IsFeatureEnabled(PP_Instance instance, PP_PDFFeature feature) argument
127 GetResourceImageForScale(PP_Instance instance, PP_ResourceImage image_id, float scale) argument
143 IsOutOfProcess(PP_Instance instance) argument
[all...]
H A Dppb_flash_print_thunk.cc16 void InvokePrinting(PP_Instance instance) { argument
17 EnterInstanceAPI<PPB_Flash_Functions_API> enter(instance);
20 enter.functions()->InvokePrinting(instance);
H A Dppb_gamepad_thunk.cc23 void Sample(PP_Instance instance, struct PP_GamepadsSampleData* data) { argument
25 EnterInstanceAPI<PPB_Gamepad_API> enter(instance);
30 enter.functions()->Sample(instance, data);
H A Dppb_messaging_thunk.cc20 void PostMessage(PP_Instance instance, struct PP_Var message) { argument
22 EnterInstance enter(instance);
25 enter.functions()->PostMessage(instance, message);
H A Dppb_mouse_cursor_thunk.cc20 PP_Bool SetCursor(PP_Instance instance, argument
25 EnterInstance enter(instance);
28 return enter.functions()->SetCursor(instance, type, image, hot_spot);
/external/chromium_org/ppapi/proxy/
H A Dppb_instance_proxy.h48 virtual PP_Bool BindGraphics(PP_Instance instance,
50 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE;
51 virtual const ViewData* GetViewData(PP_Instance instance) OVERRIDE;
52 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
53 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE;
54 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE;
55 virtual PP_Var ExecuteScript(PP_Instance instance,
58 virtual uint32_t GetAudioHardwareOutputSampleRate(PP_Instance instance)
60 virtual uint32_t GetAudioHardwareOutputBufferSize(PP_Instance instance)
62 virtual PP_Var GetDefaultCharSet(PP_Instance instance) OVERRID
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_URLConnector.java32 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
[all...]
/external/chromium_org/ppapi/api/private/
H A Dppb_testing_private.idl60 void RunMessageLoop([in] PP_Instance instance);
66 void QuitMessageLoop([in] PP_Instance instance);
70 * associated with this plugin instance. Used for detecting leaks. Returns
73 uint32_t GetLiveObjectsForInstance([in] PP_Instance instance);
101 void SimulateInputEvent([in] PP_Instance instance,
111 PP_Var GetDocumentURL([in] PP_Instance instance,
132 void SetMinimumArrayBufferSizeForShmem([in] PP_Instance instance,
/external/chromium_org/ui/native_theme/
H A Dnative_theme_android.cc13 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme
14 return NativeThemeAndroid::instance();
18 NativeThemeAndroid* NativeThemeAndroid::instance() { function in class:ui::NativeThemeAndroid
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dlinuxdeviceinfo.cc49 LibUDevSymbolTable* instance() { return &libudev_; } function in class:cricket::ScopedLibUdev
71 udev* instance() { return udev_; } function in class:cricket::ScopedUdev
88 udev_enumerate* instance() { return enumerate_; } function in class:cricket::ScopedUdevEnumerate
101 ScopedUdev udev_context(libudev_context->instance());
102 if (!udev_context.instance()) {
105 ScopedUdevEnumerate enumerate_context(libudev_context->instance(),
106 udev_context.instance());
107 if (!enumerate_context.instance()) {
110 libudev_context->instance()->udev_enumerate_add_match_subsystem()(
111 enumerate_context.instance(), "video4linu
[all...]

Completed in 491 milliseconds

1234567891011>>