HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 101 - 125 of 2394) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ppapi/c/private/
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,
ppb_pdf.h 94 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...]
  /external/chromium_org/ppapi/proxy/
resource_creation_proxy.h 40 virtual PP_Resource CreateFileIO(PP_Instance instance) OVERRIDE;
41 virtual PP_Resource CreateFileRef(PP_Instance instance,
46 virtual PP_Resource CreateFileSystem(PP_Instance instance,
49 PP_Instance instance,
51 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
61 PP_Instance instance,
68 PP_Instance instance,
77 PP_Instance instance,
81 virtual PP_Resource CreateResourceArray(PP_Instance instance,
85 PP_Instance instance,
    [all...]
flash_fullscreen_resource.cc 14 PP_Instance instance)
15 : PluginResource(connection, instance),
27 PP_Bool FlashFullscreenResource::IsFullscreen(PP_Instance instance) {
31 PP_Bool FlashFullscreenResource::SetFullscreen(PP_Instance instance,
40 void FlashFullscreenResource::SetLocalIsFullscreen(PP_Instance instance,
ppp_printing_proxy.h 34 void OnPluginMsgQuerySupportedFormats(PP_Instance instance, uint32_t* result);
35 void OnPluginMsgBegin(PP_Instance instance,
39 PP_Instance instance,
42 void OnPluginMsgEnd(PP_Instance instance);
43 void OnPluginMsgIsScalingDisabled(PP_Instance instance, bool* result);
flash_file_resource.h 22 FlashFileResource(Connection connection, PP_Instance instance);
29 virtual int32_t OpenFile(PP_Instance instance,
33 virtual int32_t RenameFile(PP_Instance instance,
36 virtual int32_t DeleteFileOrDir(PP_Instance instance,
39 virtual int32_t CreateDir(PP_Instance instance, const char* path) OVERRIDE;
40 virtual int32_t QueryFile(PP_Instance instance,
43 virtual int32_t GetDirContents(PP_Instance instance,
46 virtual void FreeDirContents(PP_Instance instance,
48 virtual int32_t CreateTemporaryFile(PP_Instance instance,
50 virtual int32_t OpenFileRef(PP_Instance instance,
    [all...]
flash_resource.h 25 PP_Instance instance,
33 virtual PP_Var GetProxyForURL(PP_Instance instance,
35 virtual void UpdateActivity(PP_Instance instance) OVERRIDE;
36 virtual PP_Bool SetCrashData(PP_Instance instance,
39 virtual double GetLocalTimeZoneOffset(PP_Instance instance,
41 virtual PP_Var GetSetting(PP_Instance instance,
43 virtual void SetInstanceAlwaysOnTop(PP_Instance instance,
46 PP_Instance instance,
57 virtual int32_t Navigate(PP_Instance instance,
61 virtual PP_Bool IsRectTopmost(PP_Instance instance,
    [all...]
ppb_instance_proxy.cc 68 void RequestSurroundingText(PP_Instance instance) {
69 PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
71 return; // Instance has gone away while message was pending.
73 InstanceData* data = dispatcher->GetInstanceData(instance);
85 API_ID_PPP_TEXT_INPUT, instance,
207 PP_Bool PPB_Instance_Proxy::BindGraphics(PP_Instance instance,
216 if (!resource || resource->pp_instance() != instance)
223 API_ID_PPB_INSTANCE, instance, 0));
233 API_ID_PPB_INSTANCE, instance, pp_resource));
237 API_ID_PPB_INSTANCE, instance, host_resource.host_resource()))
    [all...]
  /external/chromium_org/ppapi/thunk/
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 23 void Sample(PP_Instance instance, struct PP_GamepadsSampleData* data) {
25 EnterInstanceAPI<PPB_Gamepad_API> enter(instance);
30 enter.functions()->Sample(instance, data);
ppb_messaging_thunk.cc 20 void PostMessage(PP_Instance instance, struct PP_Var message) {
22 EnterInstance enter(instance);
25 enter.functions()->PostMessage(instance, message);
ppb_mouse_cursor_thunk.cc 20 PP_Bool SetCursor(PP_Instance instance,
25 EnterInstance enter(instance);
28 return enter.functions()->SetCursor(instance, type, image, hot_spot);
ppb_url_util_thunk.cc 16 PP_Var ResolveRelativeToDocument(PP_Instance instance,
19 EnterInstance enter(instance);
22 return enter.functions()->ResolveRelativeToDocument(instance, relative,
26 PP_Bool DocumentCanRequest(PP_Instance instance, PP_Var url) {
27 EnterInstance enter(instance);
30 return enter.functions()->DocumentCanRequest(instance, url);
40 PP_Var GetDocumentURL(PP_Instance instance,
42 EnterInstance enter(instance);
45 return enter.functions()->GetDocumentURL(instance, components);
48 PP_Var GetPluginInstanceURL(PP_Instance instance,
    [all...]
resource_creation_api.h 46 // creation) so need functional routing based on the instance ID.
51 virtual PP_Resource CreateFileIO(PP_Instance instance) = 0;
52 virtual PP_Resource CreateFileRef(PP_Instance instance,
61 virtual PP_Resource CreateFileSystem(PP_Instance instance,
63 virtual PP_Resource CreateIsolatedFileSystem(PP_Instance instance,
65 virtual PP_Resource CreateIMEInputEvent(PP_Instance instance,
75 PP_Instance instance,
82 PP_Instance instance,
91 PP_Instance instance,
95 virtual PP_Resource CreateResourceArray(PP_Instance instance,
    [all...]
ppb_pdf_thunk.cc 19 PP_Var GetLocalizedString(PP_Instance instance, PP_ResourceString string_id) {
20 EnterInstanceAPI<PPB_PDF_API> enter(instance);
26 PP_Resource GetResourceImage(PP_Instance instance,
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,
66 EnterInstanceAPI<PPB_PDF_API> enter(instance);
72 void DidStartLoading(PP_Instance instance) {
    [all...]
ppb_cursor_control_thunk.cc 18 PP_Bool SetCursor(PP_Instance instance,
22 EnterInstance enter(instance);
25 return enter.functions()->SetCursor(instance,
29 PP_Bool LockCursor(PP_Instance instance) {
33 PP_Bool UnlockCursor(PP_Instance instance) {
37 PP_Bool HasCursorLock(PP_Instance instance) {
41 PP_Bool CanLockCursor(PP_Instance instance) {
  /external/chromium_org/ui/native_theme/
native_theme_android.cc 13 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme
14 return NativeThemeAndroid::instance();
18 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);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
linuxdeviceinfo.cc 49 LibUDevSymbolTable* instance() { return &libudev_; } function in class:cricket::ScopedLibUdev
70 udev* instance() { return udev_; } function in class:cricket::ScopedUdev
87 udev_enumerate* instance() { return enumerate_; } function in class:cricket::ScopedUdevEnumerate
100 ScopedUdev udev_context(libudev_context->instance());
101 if (!udev_context.instance()) {
104 ScopedUdevEnumerate enumerate_context(libudev_context->instance(),
105 udev_context.instance());
106 if (!enumerate_context.instance()) {
109 libudev_context->instance()->udev_enumerate_add_match_subsystem()(
110 enumerate_context.instance(), "video4linux")
    [all...]
  /external/chromium_org/ppapi/cpp/private/
pdf.cc 29 Var PDF::GetLocalizedString(const InstanceHandle& instance,
34 instance.pp_instance(), string_id));
40 ImageData PDF::GetResourceImage(const InstanceHandle& instance,
45 instance.pp_instance(), image_id));
52 const InstanceHandle& instance,
68 instance.pp_instance(), &converted_desc, charset);
75 const InstanceHandle& instance,
80 instance.pp_instance(), description, charset);
98 void PDF::SearchString(const InstanceHandle& instance,
105 get_interface<PPB_PDF>()->SearchString(instance.pp_instance(), string
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
selection_dev.cc 7 #include "ppapi/cpp/instance.h"
18 PP_Var GetSelectedText(PP_Instance instance, PP_Bool html) {
20 pp::Instance::GetPerInstanceObject(instance, kPPPSelectionInterface);
33 Selection_Dev::Selection_Dev(Instance* instance)
34 : associated_instance_(instance) {
36 instance->AddPerInstanceObject(kPPPSelectionInterface, this);
40 Instance::RemovePerInstanceObject(associated_instance_,
video_decoder_client_dev.cc 9 #include "ppapi/cpp/instance.h"
21 void ProvidePictureBuffers(PP_Instance instance,
26 void* object = Instance::GetPerInstanceObject(instance,
34 void DismissPictureBuffer(PP_Instance instance,
37 void* object = Instance::GetPerInstanceObject(instance,
45 void PictureReady(PP_Instance instance,
48 void* object = Instance::GetPerInstanceObject(instance,
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_client.cc 76 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16 mode,
78 if (instance == NULL)
84 instance, NPAPIClient::PluginClient::HostFunctions());
101 instance, NPAPIClient::PluginClient::HostFunctions());
107 new_test = new NPAPIClient::PluginTest(instance,
115 instance, NPPVpluginDrawingModel, (void*)NPDrawingModelCoreGraphics);
117 instance, NPPVpluginEventModel, (void*)NPEventModelCocoa);
126 instance, NPPVpluginWindowBool, NULL);
132 NPError NPP_Destroy(NPP instance, NPSavedData** save) {
133 if (instance == NULL
    [all...]
  /external/chromium_org/third_party/icu/source/common/
mutex.cpp 26 void *instance; local
27 UMTX_CHECK(NULL, fInstance, instance);
28 if(instance!=NULL) {
29 return instance;
31 instance=instantiator(context, errorCode);
34 fInstance=instance;
36 duplicate=instance;
52 return fInstance; // instance was created
54 errorCode=fErrorCode; // instance creation failed
57 void *instance=instantiator(context, errorCode) local
    [all...]

Completed in 2364 milliseconds

1 2 3 45 6 7 8 91011>>