Searched refs:instance (Results 276 - 300 of 2104) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/extensions/api/cloud_print_private/
H A Dcloud_print_private_api.cc20 CloudPrintTestsDelegate* CloudPrintTestsDelegate::instance() { function in class:extensions::CloudPrintTestsDelegate
44 if (CloudPrintTestsDelegate::instance()) {
45 CloudPrintTestsDelegate::instance()->SetupConnector(
77 CloudPrintTestsDelegate::instance() ?
78 CloudPrintTestsDelegate::instance()->GetHostName() :
99 if (CloudPrintTestsDelegate::instance()) {
100 SendResults(CloudPrintTestsDelegate::instance()->GetPrinters());
124 CloudPrintTestsDelegate::instance() ?
125 CloudPrintTestsDelegate::instance()->GetClientId() :
/external/chromium_org/chrome/renderer/pepper/
H A Dchrome_renderer_pepper_host_factory.cc33 PP_Instance instance,
37 // Make sure the plugin is giving us a valid instance for this resource.
38 if (!host_->IsValidInstance(instance))
46 new PepperFlashRendererHost(host_, instance, params.pp_resource()));
50 host_, instance, params.pp_resource()));
57 host_, instance, params.pp_resource(), serialized_menu));
78 host_, instance, params.pp_resource(), description, charset));
84 host_, instance, params.pp_resource()));
93 new pdf::PepperPDFHost(host_, instance, params.pp_resource()));
99 // time of the corresponding instance'
30 CreateResourceHost( ppapi::host::PpapiHost* host, const ppapi::proxy::ResourceMessageCallParams& params, PP_Instance instance, const IPC::Message& message) argument
[all...]
/external/chromium_org/content/renderer/pepper/
H A Dhost_globals.h37 PP_Instance instance) OVERRIDE;
38 virtual ppapi::thunk::PPB_Instance_API* GetInstanceAPI(PP_Instance instance)
41 PP_Instance instance) OVERRIDE;
42 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
45 virtual void LogWithSource(PP_Instance instance,
74 // Adds a new plugin instance to the list of tracked instances, and returns a
75 // new instance handle to identify it.
76 PP_Instance AddInstance(PepperPluginInstanceImpl* instance);
78 // Called when a plugin instance was deleted and should no longer be tracked.
80 void InstanceDeleted(PP_Instance instance);
[all...]
/external/chromium_org/ppapi/c/dev/
H A Dppb_url_util_dev.h115 * URL of the document containing the given plugin instance.
123 PP_Instance instance,
132 * Checks whether the document hosting the given plugin instance can access
134 * PP_FALSE if the instance or the URL is invalid.
136 PP_Bool (*DocumentCanRequest)(PP_Instance instance, struct PP_Var url);
138 * Checks whether the document containing the |active| plugin instance can
139 * access the document containing the |target| plugin instance according to
152 struct PP_Var (*GetDocumentURL)(PP_Instance instance,
165 PP_Instance instance,
176 PP_Instance instance,
[all...]
H A Dppb_char_set_dev.h54 char* (*UTF16ToCharSet)(PP_Instance instance,
68 uint16_t* (*CharSetToUTF16)(PP_Instance instance,
80 struct PP_Var (*GetDefaultCharSet)(PP_Instance instance);
/external/chromium_org/ppapi/cpp/private/
H A Dfind_private.cc8 #include "ppapi/cpp/instance.h"
23 PP_Bool StartFind(PP_Instance instance, argument
26 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface);
34 void SelectFindResult(PP_Instance instance, PP_Bool forward) { argument
35 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface);
40 void StopFind(PP_Instance instance) { argument
41 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface);
54 Find_Private::Find_Private(Instance* instance) argument
55 : associated_instance_(instance) {
57 instance
[all...]
/external/chromium_org/base/
H A Dlazy_instance.h5 // 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
63 static Type* New(void* instance) { argument
64 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
68 // Use placement new to initialize our instance in our preallocated space.
70 return new (instance) Typ
72 Delete(Type* instance) argument
97 New(void* instance) argument
101 Delete(Type* instance) argument
191 Type* instance() { function in class:base::LazyInstance
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Drender_view_host_factory.cc17 SiteInstance* instance,
25 return factory_->CreateRenderViewHost(instance, delegate, widget_delegate,
29 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id,
16 Create( SiteInstance* instance, RenderViewHostDelegate* delegate, RenderWidgetHostDelegate* widget_delegate, int routing_id, int main_frame_routing_id, bool swapped_out, bool hidden) argument
/external/chromium_org/native_client_sdk/src/examples/api/audio/
H A Daudio.cc10 #include "ppapi/cpp/instance.h"
31 explicit AudioInstance(PP_Instance instance) argument
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) {
77 if (instance->theta_ > kTwoPi) {
78 instance
148 CreateInstance(PP_Instance instance) argument
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_file_mapping.h82 * @param[in] instance A <code>PP_Instance</code> identifying one instance of
109 int32_t (*Map)(PP_Instance instance,
120 * @param[in] instance A <code>PP_Instance</code> identifying the instance.
129 int32_t (*Unmap)(PP_Instance instance,
136 * @param[in] instance A <code>PP_Instance</code> identifying the instance.
140 int64_t (*GetMapPageSize)(PP_Instance instance);
/external/chromium_org/ppapi/cpp/
H A Daudio_config.h53 /// Audio audio(instance, config, callback, user_data);
67 /// @param[in] instance The instance associated with this resource.
75 AudioConfig(const InstanceHandle& instance,
83 /// @param[in] instance The instance associated with this resource.
85 const InstanceHandle& instance);
99 /// @param[in] instance The instance associated with this resource.
109 const InstanceHandle& instance,
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppp_find_proxy.h29 void OnPluginMsgStartFind(PP_Instance instance,
31 void OnPluginMsgSelectFindResult(PP_Instance instance,
33 void OnPluginMsgStopFind(PP_Instance instance);
/external/chromium_org/ppapi/shared_impl/
H A Dhost_resource.h45 // resource in the host. Yet these resources still need an instance to be
48 static HostResource MakeInstanceOnly(PP_Instance instance);
55 void SetHostResource(PP_Instance instance, PP_Resource resource);
58 PP_Instance instance() const { return instance_; } function in class:ppapi::HostResource
/external/chromium_org/ppapi/thunk/
H A Dppb_file_mapping_api.h25 virtual int32_t Map(PP_Instance instance,
33 virtual int32_t Unmap(PP_Instance instance,
37 virtual int64_t GetMapPageSize(PP_Instance instance) = 0;
H A Dppb_flash_device_id_thunk.cc22 PP_Resource Create(PP_Instance instance) { argument
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreateFlashDRM(instance);
H A Dppb_printing_dev_thunk.cc20 PP_Resource Create(PP_Instance instance) { argument
22 EnterResourceCreation enter(instance);
25 return enter.functions()->CreatePrinting(instance);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DScopedEventQueue.h51 static ScopedEventQueue* instance();
71 EventQueueScope() { ScopedEventQueue::instance()->incrementScopingLevel(); }
72 ~EventQueueScope() { ScopedEventQueue::instance()->decrementScopingLevel(); }
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDatabase.cpp43 QuotaTracker::instance().updateDatabaseSize(originIdentifier, name, size);
48 QuotaTracker::instance().updateSpaceAvailableToOrigin(originIdentifier, spaceAvailable);
53 QuotaTracker::instance().resetSpaceAvailableToOrigin(originIdentifier);
/external/chromium_org/ui/views_content_client/
H A Dviews_content_client.cc14 HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox_info)
15 : instance_(instance), sandbox_info_(sandbox_info) {
31 params.instance = instance_;
13 ViewsContentClient( HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox_info) argument
/external/clang/test/CodeGenCXX/
H A Dstatic-init-3.cpp9 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
/external/guava/guava-gwt/src/com/google/common/collect/
H A DExplicitOrdering_CustomFieldSerializer.java31 ExplicitOrdering<?> instance) {
42 ExplicitOrdering<?> instance) throws SerializationException {
43 writer.writeObject(instance.rankMap);
30 deserialize(SerializationStreamReader reader, ExplicitOrdering<?> instance) argument
41 serialize(SerializationStreamWriter writer, ExplicitOrdering<?> instance) argument
H A DHashMultiset_CustomFieldSerializer.java31 HashMultiset<?> instance) {
41 HashMultiset<?> instance) throws SerializationException {
42 Multiset_CustomFieldSerializerBase.serialize(writer, instance);
30 deserialize(SerializationStreamReader reader, HashMultiset<?> instance) argument
40 serialize(SerializationStreamWriter writer, HashMultiset<?> instance) argument
H A DImmutableListMultimap_CustomFieldSerializer.java31 ImmutableListMultimap<?, ?> instance) {
42 ImmutableListMultimap<?, ?> instance) throws SerializationException {
43 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
30 deserialize(SerializationStreamReader reader, ImmutableListMultimap<?, ?> instance) argument
41 serialize(SerializationStreamWriter writer, ImmutableListMultimap<?, ?> instance) argument
H A DImmutableSetMultimap_CustomFieldSerializer.java31 ImmutableSetMultimap<?, ?> instance) {
42 ImmutableSetMultimap<?, ?> instance) throws SerializationException {
43 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
30 deserialize(SerializationStreamReader reader, ImmutableSetMultimap<?, ?> instance) argument
41 serialize(SerializationStreamWriter writer, ImmutableSetMultimap<?, ?> instance) argument
H A DLexicographicalOrdering_CustomFieldSerializer.java31 LexicographicalOrdering<?> instance) {
42 LexicographicalOrdering<?> instance) throws SerializationException {
43 writer.writeObject(instance.elementOrder);
30 deserialize(SerializationStreamReader reader, LexicographicalOrdering<?> instance) argument
41 serialize(SerializationStreamWriter writer, LexicographicalOrdering<?> instance) argument

Completed in 5196 milliseconds

<<11121314151617181920>>