HomeSort by relevance Sort by last modified time
    Searched full:instance (Results 151 - 175 of 17684) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/ppapi/proxy/
ppp_content_decryptor_private_proxy.cc 79 bool InitializePppDecryptorBuffer(PP_Instance instance,
96 host_resource.SetHostResource(instance, resource);
114 void Initialize(PP_Instance instance,
116 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
125 instance,
129 void SetServerCertificate(PP_Instance instance,
132 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
158 instance,
163 void CreateSession(PP_Instance instance,
168 HostDispatcher* dispatcher = HostDispatcher::GetForInstance(instance);
    [all...]
ppp_video_decoder_proxy.cc 21 void ProvidePictureBuffers(PP_Instance instance, PP_Resource decoder,
26 decoder_resource.SetHostResource(instance, decoder);
28 HostDispatcher::GetForInstance(instance)->Send(
34 void DismissPictureBuffer(PP_Instance instance, PP_Resource decoder,
37 decoder_resource.SetHostResource(instance, decoder);
39 HostDispatcher::GetForInstance(instance)->Send(
45 void PictureReady(PP_Instance instance, PP_Resource decoder,
48 decoder_resource.SetHostResource(instance, decoder);
50 HostDispatcher::GetForInstance(instance)->Send(
55 void NotifyError(PP_Instance instance, PP_Resource decoder
    [all...]
  /frameworks/base/core/java/android/util/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
Pools.java 30 * MyPooledClass instance = sPool.acquire();
31 * return (instance != null) ? instance : new MyPooledClass();
54 * @return An instance from the pool if such, null otherwise.
59 * Release an instance to the pool.
61 * @param instance The instance to release.
62 * @return Whether the instance was put in the pool.
64 * @throws IllegalStateException If the instance is already in the pool.
66 public boolean release(T instance);
102 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /packages/apps/Camera2/src/android/util/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /packages/apps/Gallery2/src/android/util/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/android/util/
Pools.java 28 * MyPooledClass instance = sPool.acquire();
29 * return (instance != null) ? instance : new MyPooledClass();
53 * @return An instance from the pool if such, null otherwise.
58 * Release an instance to the pool.
60 * @param instance The instance to release.
61 * @return Whether the instance was put in the pool.
63 * @throws IllegalStateException If the instance is already in the pool.
65 public boolean release(T instance);
101 T instance = (T) mPool[lastPooledIndex]; local
    [all...]
  /hardware/qcom/media/mm-core/src/8660/
qc_registry_table_android.c 48 NULL, // Create instance function
49 // Unique instance handle
64 NULL, // Create instance function
65 // Unique instance handle
80 NULL, // Create instance function
81 // Unique instance handle
96 NULL, // Create instance function
97 // Unique instance handle
112 NULL, // Create instance function
113 // Unique instance handl
    [all...]
  /external/chromium_org/ppapi/c/
ppp_instance.h 44 * DidCreate() is a creation handler that is called when a new instance is
49 * your module associates with an instance and creating a mapping from the
52 * identify which instance the call pertains to.
54 * It's possible for more than one instance to be created in a single module.
57 * multiple states associated with each instance.
60 * the instance will be deleted.
62 * @param[in] instance A new <code>PP_Instance</code> identifying one
63 * instance of a module. This is an opaque handle.
82 PP_Bool (*DidCreate)(PP_Instance instance,
87 * DidDestroy() is an instance destruction handler. This function is calle
    [all...]
  /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...]
  /hardware/qcom/media/mm-core/src/7630/
qc_registry_table.c 42 NULL, // Create instance function
43 // Unique instance handle
58 NULL, // Create instance function
59 // Unique instance handle
74 NULL, // Create instance function
75 // Unique instance handle
90 NULL, // Create instance function
91 // Unique instance handle
106 NULL, // Create instance function
107 // Unique instance handl
    [all...]
  /external/chromium_org/components/json_schema/
json_schema_validator_unittest_base.cc 92 scoped_ptr<base::ListValue> instance(LoadList("complex_instance.json"));
95 ASSERT_TRUE(instance.get());
97 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
98 instance->Remove(instance->GetSize() - 1, NULL);
99 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
100 instance->Append(new base::DictionaryValue());
101 ExpectNotValid(TEST_SOURCE, instance.get(), schema.get(), NULL, "1",
106 instance->Remove(instance->GetSize() - 1, NULL)
    [all...]
  /external/chromium_org/content/renderer/pepper/
renderer_ppapi_host_impl.cc 35 PP_Instance instance) {
36 return RendererPpapiHostImpl::GetForPPInstance(instance);
108 PepperPluginInstanceImpl* instance = local
110 if (!instance)
115 return instance->module()->renderer_ppapi_host();
120 PepperPluginInstanceImpl* instance) {
122 new PepperInProcessResourceCreation(this, instance));
126 PP_Instance instance) const {
127 return GetAndValidateInstance(instance);
139 PP_Instance instance) const
271 PepperPluginInstanceImpl* instance = local
    [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/private/
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...]
  /hardware/qcom/media/mm-core/omxcore/src/7630/
qc_registry_table_android.c 43 NULL, // Create instance function
44 // Unique instance handle
59 NULL, // Create instance function
60 // Unique instance handle
75 NULL, // Create instance function
76 // Unique instance handle
91 NULL, // Create instance function
92 // Unique instance handle
107 NULL, // Create instance function
108 // Unique instance handl
    [all...]
  /external/chromium_org/ppapi/api/private/
ppb_flash_fullscreen.idl 18 * Checks whether the plugin instance is currently in fullscreen mode.
21 [in] PP_Instance instance);
29 [in] PP_Instance instance,
33 * Switches the plugin instance to/from fullscreen mode. Returns PP_TRUE on
45 [in] PP_Instance instance,
49 * Gets the size of the screen in pixels. When going fullscreen, the instance
53 [in] PP_Instance instance,
  /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/cpp/dev/
text_input_dev.h 16 class Instance;
20 // with the given instance, and registers as the global handler for handling the
23 // You would typically use this either via inheritance on your instance:
24 // class MyInstance : public pp::Instance, public pp::TextInput_Dev {
35 // class MyInstance : public pp::Instance {
43 explicit TextInput_Dev(Instance* instance);
zoom_dev.h 15 class Instance;
18 // interfaces with an object. It associates itself with the given instance, and
22 // You would typically use this either via inheritance on your instance:
23 // class MyInstance : public pp::Instance, public pp::Zoom_Dev {
34 // class MyInstance : public pp::Instance {
42 explicit Zoom_Dev(Instance* instance);
  /external/chromium_org/ppapi/thunk/
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) {
  /hardware/qcom/media/mm-core/src/8960/
qc_registry_table.c 44 NULL, // Create instance function
45 // Unique instance handle
60 NULL, // Create instance function
61 // Unique instance handle
76 NULL, // Create instance function
77 // Unique instance handle
92 NULL, // Create instance function
93 // Unique instance handle
108 NULL, // Create instance function
109 // Unique instance handl
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 23 // WebPluginIMEWin instance through our patch function.
134 bool WebPluginIMEWin::SendEvents(PluginInstance* instance) {
135 // We allow the patch functions to access this WebPluginIMEWin instance only
142 if (!instance->NPP_HandleEvent(&(*it)))
199 WebPluginIMEWin* instance = GetInstance(context); local
200 if (!instance)
204 instance->input_type_ = input_type;
205 instance->status_updated_ = true;
214 WebPluginIMEWin* instance = GetInstance(context); local
215 if (!instance)
279 WebPluginIMEWin* instance = instance_; local
295 WebPluginIMEWin* instance = GetInstance(context); local
310 WebPluginIMEWin* instance = GetInstance(context); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
ps.cc 8 #include "ppapi/cpp/instance.h"
13 static pp::Instance* s_Instance = NULL;
30 // an instance of your NaCl module on the web page. The browser creates a new
31 // instance for each <embed> tag with type="application/x-nacl".
37 virtual pp::Instance* CreateInstance(PP_Instance instance) {
38 s_Instance = static_cast<pp::Instance*>(PSUserCreateInstance(instance));
48 // is one instance per <embed> tag on the page. This is the main binding
  /external/chromium_org/ppapi/api/
ppp_instance.idl 25 * 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...]

Completed in 425 milliseconds

1 2 3 4 5 67 8 91011>>