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

<<11121314151617181920>>

  /external/chromium_org/ppapi/cpp/private/
flash.cc 88 void Flash::SetInstanceAlwaysOnTop(const InstanceHandle& instance,
93 instance.pp_instance(), PP_FromBool(on_top));
96 instance.pp_instance(), PP_FromBool(on_top));
101 bool Flash::DrawGlyphs(const InstanceHandle& instance,
115 instance.pp_instance(),
129 instance.pp_instance(),
145 Var Flash::GetProxyForURL(const InstanceHandle& instance,
150 instance.pp_instance(), url.c_str()));
154 instance.pp_instance(), url.c_str()));
180 double Flash::GetLocalTimeZoneOffset(const InstanceHandle& instance,
    [all...]
flash_file.h 28 static PP_FileHandle OpenFile(const InstanceHandle& instance,
31 static bool RenameFile(const InstanceHandle& instance,
34 static bool DeleteFileOrDir(const InstanceHandle& instance,
37 static bool CreateDir(const InstanceHandle& instance,
39 static bool QueryFile(const InstanceHandle& instance,
47 static bool GetDirContents(const InstanceHandle& instance,
52 static PP_FileHandle CreateTemporaryFile(const InstanceHandle& instance);
  /external/chromium_org/ppapi/proxy/
ppp_content_decryptor_private_proxy.cc 77 bool InitializePppDecryptorBuffer(PP_Instance instance,
94 host_resource.SetHostResource(instance, resource);
112 void GenerateKeyRequest(PP_Instance instance,
116 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
125 instance,
131 void AddKey(PP_Instance instance,
135 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
144 instance,
150 void CancelKeyRequest(PP_Instance instance, PP_Var session_id) {
151 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
    [all...]
ppp_messaging_proxy.cc 25 void HandleMessage(PP_Instance instance, PP_Var message_data) {
26 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
36 instance,
37 SerializedVarSendInputShmem(dispatcher, message_data, instance)));
92 PP_Instance instance, SerializedVarReceiveInput message_data) {
93 PP_Var received_var(message_data.GetForInstance(dispatcher(), instance));
98 instance,
  /dalvik/hit/src/com/android/hit/
RootObj.java 21 public class RootObj extends Instance {
54 Instance instance = state.findReference(mId); local
56 theClass = state.findClass(instance.mClassId);
68 Instance instance = null; local
71 instance = mHeap.mState.findClass(mId);
73 instance = mHeap.mState.findReference(mId);
76 if (instance == null) {
80 return instance.getSize()
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_flash.idl 55 * Specifies if the given instance is in private/incognito/off-the-record mode
57 * PP_Var on invalid instance.
74 * Returns an undefined PP_Var on invalid instance.
104 * Specifies the document URL which contains the flash instance.
120 * Sets or clears the rendering hint that the given plugin instance is always
125 [in] PP_Instance instance,
137 [in] PP_Instance instance,
154 [in] PP_Instance instance,
171 [in] PP_Instance instance);
178 [in] PP_Instance instance);
    [all...]
  /external/chromium_org/ppapi/cpp/
audio_config.cc 30 AudioConfig::AudioConfig(const InstanceHandle& instance,
38 instance.pp_instance(), sample_rate, sample_frame_count));
42 instance.pp_instance(), sample_rate, sample_frame_count));
48 const InstanceHandle& instance) {
51 RecommendSampleRate(instance.pp_instance());
58 const InstanceHandle& instance,
63 RecommendSampleFrameCount(instance.pp_instance(),
  /external/chromium_org/ppapi/thunk/
ppb_char_set_thunk.cc 15 char* UTF16ToCharSetDeprecated(PP_Instance instance,
20 // We validate the instance just to make sure we can make changes in the
22 EnterInstance enter(instance);
37 // (GetDefaultCharSet) that must be called on the instance object and
42 // functions, and then have the instance impl and proxy call through to the
51 uint16_t* CharSetToUTF16Deprecated(PP_Instance instance,
56 // We validate the instance just to make sure we can make changes in the
58 EnterInstance enter(instance);
77 PP_Var GetDefaultCharSet(PP_Instance instance) {
78 EnterInstance enter(instance);
    [all...]
ppb_flash_device_id_thunk.cc 22 PP_Resource Create(PP_Instance instance) {
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreateFlashDRM(instance);
ppb_printing_dev_thunk.cc 22 PP_Resource Create(PP_Instance instance) {
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreatePrinting(instance);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ImageFrameGeneratorTest.cpp 140 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
143 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
149 ImageDecodingStore::instance()->unlockCache(m_generator.get(), tempImage);
155 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
158 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
165 ImageDecodingStore::instance()->unlockCache(m_generator.get(), scaledImage);
172 ImageDecodingStore::instance()->unlockCache(m_generator.get(), tempImage);
185 ImageDecodingStore::instance()->unlockCache(m_generator.get(), scaledImage);
193 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
200 ImageDecodingStore::instance()->unlockCache(m_generator.get(), tempImage)
    [all...]
  /external/chromium/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
10 // and Pointer() will always return the same, completely initialized instance.
11 // When the instance is constructed it is registered with AtExitManager. The
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
23 // performance of creating the instance, and reducing heap fragmentation. This
53 static Type* New(void* instance) {
54 // Use placement new to initialize our instance in our preallocated space.
56 return new (instance) Type();
58 static void Delete(void* instance) {
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/cloud_print_private/
cloud_print_private_api.cc 20 CloudPrintTestsDelegate* CloudPrintTestsDelegate::instance() { function in class:extensions::CloudPrintTestsDelegate
45 if (CloudPrintTestsDelegate::instance()) {
46 CloudPrintTestsDelegate::instance()->SetupConnector(
75 CloudPrintTestsDelegate::instance() ?
76 CloudPrintTestsDelegate::instance()->GetHostName() :
91 if (CloudPrintTestsDelegate::instance()) {
92 result = CloudPrintTestsDelegate::instance()->GetPrinters();
119 CloudPrintTestsDelegate::instance() ?
120 CloudPrintTestsDelegate::instance()->GetClientId() :
  /external/chromium_org/chrome/renderer/pepper/
chrome_renderer_pepper_host_factory.cc 38 PP_Instance instance,
42 // Make sure the plugin is giving us a valid instance for this resource.
43 if (!host_->IsValidInstance(instance))
52 host_, instance, params.pp_resource()));
62 host_, instance, params.pp_resource()));
66 host_, instance, params.pp_resource()));
73 host_, instance, params.pp_resource(), serialized_menu));
94 host_, instance, params.pp_resource(), description, charset));
100 host_, instance, params.pp_resource()));
109 host_, instance, params.pp_resource()))
    [all...]
  /external/chromium_org/ppapi/shared_impl/
test_globals.h 29 virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE {
31 virtual int TrackSharedMemoryHandle(PP_Instance instance,
37 PP_Instance instance,
56 PP_Instance instance) OVERRIDE;
58 PP_Instance instance) OVERRIDE;
60 PP_Instance instance) OVERRIDE;
61 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
65 virtual void LogWithSource(PP_Instance instance,
74 virtual base::TaskRunner* GetFileTaskRunner(PP_Instance instance) OVERRIDE;
  /external/chromium_org/third_party/npapi/npspy/common/
epmanager.cpp 47 instance(_instance)
127 void NPPEntryPointManager::removeEntryPointsForPlugin(NPP instance, XP_HLIB * lib)
129 NPPluginFuncs * eptoremove = findEntryPointsForInstance(instance);
162 NPPluginFuncs * NPPEntryPointManager::findEntryPointsForInstance(NPP instance)
168 if(instances->instance == instance)
189 void NPPEntryPointManager::callNP_Shutdown(NPP instance)
195 if(instances->instance == instance)
208 NPError NPPEntryPointManager::callNPP_New(NPMIMEType pluginType, NPP instance, uint16 mode, int16 argc, char* argn[], char* argv[], NPSavedData* saved
    [all...]
  /external/chromium_org/base/
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
10 // and Pointer() will always return the same, completely initialized instance.
11 // When the instance is constructed it is registered with AtExitManager. The
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
23 // performance of creating the instance, and reducing heap fragmentation. This
62 static Type* New(void* instance) {
63 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
67 // Use placement new to initialize our instance in our preallocated space.
69 return new (instance) Type()
195 Type* instance() { function in class:base::LazyInstance
    [all...]
  /external/chromium_org/chrome/app/
chrome_main.cc 14 DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance,
25 DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance,
28 return content::ContentMain(instance, sandbox_info, &chrome_main_delegate);
  /external/chromium_org/chrome/browser/renderer_host/pepper/
chrome_browser_pepper_host_factory.cc 38 PP_Instance instance,
42 // Make sure the plugin is giving us a valid instance for this resource.
43 if (!host_->IsValidInstance(instance))
52 PepperExtensionsCommonMessageFilter::Create(host_, instance));
56 host_->GetPpapiHost(), instance, params.pp_resource(),
68 new PepperBrokerMessageFilter(instance, host_));
70 host_->GetPpapiHost(), instance, params.pp_resource(),
75 host_, instance, params.pp_resource()));
85 host_, instance, params.pp_resource()));
90 host_->GetPpapiHost(), instance, params.pp_resource()
    [all...]
  /external/chromium_org/chrome_frame/ready_mode/internal/
ready_prompt_window.cc 47 base::WeakPtr<ReadyPromptWindow> instance((new ReadyPromptWindow(
50 DCHECK(!instance->IsWindow());
52 if (instance->Create(frame->GetFrameWindow()) == NULL) {
59 CWindow rte = instance->GetDlgItem(IDC_PROMPT_LINK);
60 instance->link_.reset(new CHyperLink());
61 instance->link_->SubclassWindow(rte);
62 instance->link_->SetHyperLinkExtendedStyle(HLINK_NOTIFYBUTTON,
65 CStatic icon_control(instance->GetDlgItem(IDC_PROMPT_ICON));
67 instance->icon_ = static_cast<HICON>(
72 if (instance->icon_
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_view_host_factory.cc 17 SiteInstance* instance,
24 return factory_->CreateRenderViewHost(instance, delegate, widget_delegate,
28 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id,
  /external/chromium_org/content/renderer/pepper/
host_globals.cc 107 PP_Instance instance) {
108 InstanceMap::iterator found = instance_map_.find(instance);
115 PP_Instance instance) {
117 return GetInstance(instance);
122 PepperPluginInstanceImpl* instance = GetInstance(pp_instance); local
123 if (!instance)
125 return &instance->resource_creation();
128 PP_Module HostGlobals::GetModuleForInstance(PP_Instance instance) {
129 PepperPluginInstanceImpl* inst = GetInstance(instance);
149 void HostGlobals::LogWithSource(PP_Instance instance,
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/audio/
audio.cc 10 #include "ppapi/cpp/instance.h"
29 class AudioInstance : public pp::Instance {
31 explicit AudioInstance(PP_Instance instance)
32 : pp::Instance(instance),
63 AudioInstance* instance = reinterpret_cast<AudioInstance*>(data); local
64 const double frequency = instance->frequency();
72 (sizeof(*buff) * kChannels * instance->sample_frame_count_));
74 for (size_t sample_i = 0; sample_i < instance->sample_frame_count_;
75 ++sample_i, instance->theta_ += delta)
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_char_set_dev.h 54 char* (*UTF16ToCharSet)(PP_Instance instance,
68 uint16_t* (*CharSetToUTF16)(PP_Instance instance,
80 struct PP_Var (*GetDefaultCharSet)(PP_Instance instance);
  /external/clang/test/CodeGenCXX/
static-init-3.cpp 9 static T & instance; member in struct:X1
14 use(instance);
21 template<class T> T & X1<T>::instance = X1<T>::get(); member in class:X1

Completed in 2307 milliseconds

<<11121314151617181920>>