HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 326 - 350 of 2823) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/renderer/pepper/
host_globals.h 37 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...]
content_renderer_pepper_host_factory.cc 45 bool CanUseMediaStreamAPI(const RendererPpapiHost* host, PP_Instance instance) {
47 host->GetContainerForInstance(instance);
58 bool CanUseCompositorAPI(const RendererPpapiHost* host, PP_Instance instance) {
60 host->GetContainerForInstance(instance);
71 bool CanUseVideoDecodeAPI(const RendererPpapiHost* host, PP_Instance instance) {
73 host->GetContainerForInstance(instance);
95 PP_Instance instance,
99 // Make sure the plugin is giving us a valid instance for this resource.
100 if (!host_->IsValidInstance(instance))
104 host_->GetPluginInstanceImpl(instance);
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_url_util_dev.h 115 * 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...]
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/chromium_org/ppapi/cpp/private/
find_private.cc 8 #include "ppapi/cpp/instance.h"
23 PP_Bool StartFind(PP_Instance instance,
26 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface);
34 void SelectFindResult(PP_Instance instance, PP_Bool forward) {
35 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface);
40 void StopFind(PP_Instance instance) {
41 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface)
    [all...]
  /external/chromium_org/ppapi/shared_impl/
test_globals.h 22 PP_Instance instance,
39 virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE {}
40 virtual int TrackSharedMemoryHandle(PP_Instance instance,
46 PP_Instance instance,
64 virtual CallbackTracker* GetCallbackTrackerForInstance(PP_Instance instance)
66 virtual thunk::PPB_Instance_API* GetInstanceAPI(PP_Instance instance)
69 PP_Instance instance) OVERRIDE;
70 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
73 virtual void LogWithSource(PP_Instance instance,
  /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
63 static Type* New(void* instance) {
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) Type()
191 Type* instance() { function in class:base::LazyInstance
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_renderer_connection.h 53 PP_Instance instance,
57 PP_Instance instance,
59 void OnMsgDidDeleteInProcessInstance(PP_Instance instance);
  /external/chromium_org/content/browser/renderer_host/
render_view_host_factory.cc 17 SiteInstance* instance,
25 return factory_->CreateRenderViewHost(instance, delegate, widget_delegate,
29 return new RenderViewHostImpl(instance, delegate, widget_delegate, routing_id,
  /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/
ppb_file_mapping.h 82 * @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/thunk/
ppb_file_mapping_api.h 25 virtual int32_t Map(PP_Instance instance,
33 virtual int32_t Unmap(PP_Instance instance,
37 virtual int64_t GetMapPageSize(PP_Instance instance) = 0;
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 20 PP_Resource Create(PP_Instance instance) {
22 EnterResourceCreation enter(instance);
25 return enter.functions()->CreatePrinting(instance);
  /external/chromium_org/third_party/WebKit/Source/web/
WebDatabase.cpp 43 QuotaTracker::instance().updateDatabaseSize(originIdentifier, name, size);
48 QuotaTracker::instance().updateSpaceAvailableToOrigin(originIdentifier, spaceAvailable);
53 QuotaTracker::instance().resetSpaceAvailableToOrigin(originIdentifier);
  /external/chromium_org/ui/views_content_client/
views_content_client.cc 14 HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox_info)
15 : instance_(instance), sandbox_info_(sandbox_info) {
31 params.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
  /external/guava/guava-gwt/src/com/google/common/collect/
ExplicitOrdering_CustomFieldSerializer.java 31 ExplicitOrdering<?> instance) {
42 ExplicitOrdering<?> instance) throws SerializationException {
43 writer.writeObject(instance.rankMap);
HashMultiset_CustomFieldSerializer.java 31 HashMultiset<?> instance) {
41 HashMultiset<?> instance) throws SerializationException {
42 Multiset_CustomFieldSerializerBase.serialize(writer, instance);
ImmutableListMultimap_CustomFieldSerializer.java 31 ImmutableListMultimap<?, ?> instance) {
42 ImmutableListMultimap<?, ?> instance) throws SerializationException {
43 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
ImmutableSetMultimap_CustomFieldSerializer.java 31 ImmutableSetMultimap<?, ?> instance) {
42 ImmutableSetMultimap<?, ?> instance) throws SerializationException {
43 Multimap_CustomFieldSerializerBase.serialize(writer, instance);
LexicographicalOrdering_CustomFieldSerializer.java 31 LexicographicalOrdering<?> instance) {
42 LexicographicalOrdering<?> instance) throws SerializationException {
43 writer.writeObject(instance.elementOrder);
LinkedHashMultiset_CustomFieldSerializer.java 31 LinkedHashMultiset<?> instance) {
42 LinkedHashMultiset<?> instance) throws SerializationException {
43 Multiset_CustomFieldSerializerBase.serialize(writer, instance);
NullsFirstOrdering_CustomFieldSerializer.java 31 NullsFirstOrdering<?> instance) {
42 NullsFirstOrdering<?> instance) throws SerializationException {
43 writer.writeObject(instance.ordering);

Completed in 659 milliseconds

<<11121314151617181920>>