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

<<21222324252627282930>>

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer.h 30 INSTANCE MEMORY TYPE DEFINITION
33 /* LVMixer3_st structure stores Instance parameters for one audio stream */
36 LVM_INT32 PrivateParams[4]; /* Private Instance params for Audio Stream */
39 void *pCallbackHandle; /* Pointer to the instance of the callback function */
46 LVMixer3_st MixerStream[1]; /* Instance Params for one Audio Stream */
51 LVMixer3_st MixerStream[2]; /* Instance Params for two Audio Streams */
56 LVMixer3_st MixerStream[3]; /* Instance Params for three Audio Streams */
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 36 // Singleton instance.
37 private static DOMImplementationImpl instance; field in class:DOMImplementationImpl
74 * Requests the singleton instance of the class. Creates it first, if
77 * @return The singleton Android DOMImplementationImpl instance.
80 if (instance == null) {
81 instance = new DOMImplementationImpl();
84 return instance;
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
pnacl_shim.c 227 static PP_Resource Pnacl_M37_PPB_Compositor_Create(PP_Instance instance) {
229 return iface->Create(instance);
359 static void Pnacl_M25_PPB_Console_Log(PP_Instance instance, PP_LogLevel level, struct PP_Var* value) {
361 iface->Log(instance, level, *value);
364 static void Pnacl_M25_PPB_Console_LogWithSource(PP_Instance instance, PP_LogLevel level, struct PP_Var* source, struct PP_Var* value) {
366 iface->LogWithSource(instance, level, *source, *value);
407 static PP_Resource Pnacl_M14_PPB_FileIO_Create(PP_Instance instance) {
409 return iface->Create(instance);
461 static PP_Resource Pnacl_M25_PPB_FileIO_Create(PP_Instance instance) {
463 return iface->Create(instance);
    [all...]
  /dalvik/hit/src/com/android/hit/
State.java 103 public final void addInstance(long id, Instance instance) {
104 mCurrentHeap.addInstance(id, instance);
111 public final Instance findReference(long id) {
113 Instance instance = heap.getInstance(id); local
115 if (instance != null) {
116 return instance;
120 // Couldn't find an instance of a class, look for a class object
151 "+------------------ instance counts for heap: " + heap.mName)
    [all...]
  /external/chromium-trace/trace-viewer/src/tcmalloc/
tcmalloc_instance_view.js 17 * Displays tcmalloc heap memory information over time. A tcmalloc instance
22 'tcmalloc-instance-view', tracing.analysis.ObjectInstanceView);
29 this.classList.add('tcmalloc-instance-view');
33 var instance = this.objectInstance_;
34 if (!instance || !instance.snapshots || instance.snapshots.length == 0) {
42 var snapshot = instance.snapshots[0];
60 for (var i = 0; i < instance.snapshots.length; i++) {
61 var snapshot = instance.snapshots[i]
    [all...]
  /external/chromium_org/athena/activity/
activity_manager_impl.cc 21 ActivityManager* instance = NULL; member in namespace:athena::__anon6734
45 CHECK(!instance);
46 instance = this;
53 CHECK_EQ(this, instance);
54 instance = NULL;
120 CHECK(instance);
121 return instance;
125 return instance;
129 CHECK(instance);
130 delete instance;
    [all...]
  /external/chromium_org/content/browser/geolocation/
wifi_data_provider_manager.h 7 // instance of the wifi data provider manager, which is used by multiple
11 // access the singleton instance. The singleton instance uses a private
36 // We use a singleton instance of this class which is shared by multiple network
37 // location providers. These location providers access the instance through the
44 // implementation used by the singleton instance. This factory approach is
59 // instance. Return value indicates success.
82 // The singleton-like instance of this class. (Not 'true' singleton, as it
83 // may go through multiple create/destroy/create cycles per process instance,
87 // The factory function used to create the singleton instance
    [all...]
  /external/chromium_org/ppapi/c/
ppp_message_handler.h 44 * @param[in] instance A <code>PP_Instance</code> identifying one instance
51 void (*HandleMessage)(PP_Instance instance,
63 * @param[in] instance A <code>PP_Instance</code> identifying one instance
73 void (*HandleBlockingMessage)(PP_Instance instance,
79 * calls will be made which pass this same value for <code>instance</code>
82 * @param[in] instance A <code>PP_Instance</code> identifying one instance
87 void (*Destroy)(PP_Instance instance, void* user_data)
    [all...]
  /external/chromium_org/ppapi/examples/crxfs/
crxfs.cc 10 #include "ppapi/cpp/instance.h"
24 class MyInstance : public pp::Instance {
26 explicit MyInstance(PP_Instance instance)
27 : pp::Instance(instance),
28 handle_(instance) {
134 // Override CreateInstance to create your customized Instance object.
135 virtual pp::Instance* CreateInstance(PP_Instance instance) {
136 return new MyInstance(instance);
    [all...]
  /external/chromium_org/ppapi/examples/gles2_spinning_cube/
gles2_spinning_cube.cc 10 #include "ppapi/cpp/instance.h"
25 class DemoInstance : public pp::Instance, public pp::Graphics3DClient {
27 DemoInstance(PP_Instance instance);
30 // pp::Instance implementation (see PPP_Instance).
56 DemoInstance::DemoInstance(PP_Instance instance)
57 : pp::Instance(instance),
138 virtual pp::Instance* CreateInstance(PP_Instance instance) {
139 return new DemoInstance(instance);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
malloc_extension_test.cc 48 ASSERT_TRUE(MallocExtension::instance()->GetNumericProperty(
55 ASSERT_TRUE(MallocExtension::instance()->VerifyAllMemory());
59 MallocExtension::instance()->GetOwnership(a));
63 MallocExtension::instance()->GetOwnership(&cxx_bytes_used));
65 MallocExtension::instance()->GetOwnership(NULL));
66 ASSERT_GE(MallocExtension::instance()->GetAllocatedSize(a), 1000);
68 ASSERT_LE(MallocExtension::instance()->GetAllocatedSize(a), 5000);
69 ASSERT_GE(MallocExtension::instance()->GetEstimatedAllocatedSize(1000), 1000);
73 ASSERT_GE(MallocExtension::instance()->GetAllocatedSize(p),
74 MallocExtension::instance()->GetEstimatedAllocatedSize(i))
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
malloc_extension_test.cc 48 ASSERT_TRUE(MallocExtension::instance()->GetNumericProperty(
55 ASSERT_TRUE(MallocExtension::instance()->VerifyAllMemory());
59 MallocExtension::instance()->GetOwnership(a));
63 MallocExtension::instance()->GetOwnership(&cxx_bytes_used));
65 MallocExtension::instance()->GetOwnership(NULL));
66 ASSERT_GE(MallocExtension::instance()->GetAllocatedSize(a), 1000);
68 ASSERT_LE(MallocExtension::instance()->GetAllocatedSize(a), 5000);
69 ASSERT_GE(MallocExtension::instance()->GetEstimatedAllocatedSize(1000), 1000);
73 ASSERT_GE(MallocExtension::instance()->GetAllocatedSize(p),
74 MallocExtension::instance()->GetEstimatedAllocatedSize(i))
    [all...]
  /external/chromium_org/third_party/webrtc/base/
profiler_unittest.cc 32 ASSERT_TRUE(Profiler::Instance()->Clear());
36 const ProfilerEvent* event = Profiler::Instance()->GetEvent(function_name);
58 ASSERT_TRUE(Profiler::Instance()->Clear());
61 event1 = Profiler::Instance()->GetEvent(kEvent1Name);
74 event2 = Profiler::Instance()->GetEvent(kEvent2Name);
104 ASSERT_TRUE(Profiler::Instance()->Clear());
106 EXPECT_FALSE(Profiler::Instance()->Clear());
107 EXPECT_TRUE(Profiler::Instance()->GetEvent("event") != NULL);
109 EXPECT_TRUE(Profiler::Instance()->Clear());
110 EXPECT_EQ(NULL, Profiler::Instance()->GetEvent("event"))
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/include/
g722_interface.h 41 * - G722enc_inst : G722 instance for encoder
52 * This function initializes a G722 instance
55 * - G722enc_inst : G722 instance, i.e. the user that should receive
71 * - G722enc_inst : G722 instance for encoder
86 * - G722enc_inst : G722 instance, i.e. the user that should encode
110 * - G722dec_inst : G722 instance for decoder
121 * This function initializes a G729 instance
124 * - G729_decinst_t : G729 instance, i.e. the user that should receive
140 * - G722dec_inst : G722 instance for decoder
156 * - G722dec_inst : G722 instance, i.e. the user that should decod
    [all...]
  /external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
touch_drawing_plugin.cc 9 // When the plugin instance is initialized, we call
23 #include "ppapi/cpp/instance.h"
52 class MyInstance : public pp::Instance, public pp::PaintManager::Client {
54 explicit MyInstance(PP_Instance instance)
55 : pp::Instance(instance),
59 pp::InputEventPrivate::StartTrackingLatency(pp::InstanceHandle(instance));
129 virtual pp::Instance* CreateInstance(PP_Instance instance) {
130 return new MyInstance(instance);
    [all...]
  /frameworks/av/include/drm/
DrmInfo.h 28 * by passing an instance of this class to DrmManagerClient::processDrmInfo(const DrmInfo*).
30 * The Caller can retrieve the DrmInfo instance by using
31 * DrmManagerClient::acquireDrmInfo(const DrmInfoRequest*) by passing DrmInfoRequest instance.
101 * Returns information type associated with this instance
108 * Returns MIME type associated with this instance
115 * Returns the trigger data associated with this instance
122 * Returns the number of attributes contained in this instance
129 * Adds optional information as <key, value> pair to this instance
146 * Returns KeyIterator object to walk through the keys associated with this instance
153 * Returns Iterator object to walk through the values associated with this instance
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
MacSpi.java 35 * Creates a new {@code MacSpi} instance.
48 * Initializes this {@code MacSpi} instance with the specified key and
66 * Updates this {@code MacSpi} instance with the specified byte.
74 * Updates this {@code MacSpi} instance with the data from the specified
88 * Updates this {@code MacSpi} instance with the data from the specified
118 * This {@code MacSpi} instance is reverted to its initial state and
127 * Resets this {@code MacSpi} instance to its initial state.
129 * This {@code MacSpi} instance is reverted to its initial state and can be
136 * Clones this {@code MacSpi} instance.
138 * @return the cloned instance
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
NameFileComparator.java 35 * {@link #NAME_COMPARATOR} singleton instance:
42 * {@link #NAME_INSENSITIVE_REVERSE} singleton instance:
54 /** Case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */
57 /** Reverse case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */
60 /** Case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */
63 /** Reverse case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */
66 /** System sensitive name comparator instance (see {@link IOCase#SYSTEM}) */
69 /** Reverse system sensitive name comparator instance (see {@link IOCase#SYSTEM}) */
76 * Construct a case sensitive file name comparator instance.
83 * Construct a file name comparator instance with the specified case-sensitivity
    [all...]
PathFileComparator.java 35 * {@link #PATH_COMPARATOR} singleton instance:
42 * {@link #PATH_INSENSITIVE_REVERSE} singleton instance:
54 /** Case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
57 /** Reverse case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
60 /** Case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
63 /** Reverse case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
66 /** System sensitive path comparator instance (see {@link IOCase#SYSTEM}) */
69 /** Reverse system sensitive path comparator instance (see {@link IOCase#SYSTEM}) */
76 * Construct a case sensitive file path comparator instance.
83 * Construct a file path comparator instance with the specified case-sensitivity
    [all...]
  /external/chromium_org/components/nacl/renderer/
ppb_nacl_private_impl.cc 111 int GetRoutingID(PP_Instance instance) {
115 content::RendererPpapiHost::GetForPPInstance(instance);
118 return host->GetRoutingIDForWidget(instance);
143 bool ManifestResolveKey(PP_Instance instance,
152 void DownloadFile(PP_Instance instance,
156 PP_Bool StartPpapiProxy(PP_Instance instance);
279 void LaunchSelLdr(PP_Instance instance,
298 new ManifestServiceProxy(instance));
309 routing_id = GetRoutingID(instance);
373 NexeLoadManager* load_manager = NexeLoadManager::Get(instance);
629 instance, local
1162 PP_Instance instance; member in struct:nacl::__anon11260::DownloadNexeRequest
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstLong.java 27 /** {@code non-null;} instance representing {@code 0} */
30 /** {@code non-null;} instance representing {@code 1} */
34 * Makes an instance for the given value. This may (but does not
35 * necessarily) return an already-allocated instance.
48 * Constructs an instance. This constructor is private; use {@link #make}.
  /dalvik/dx/src/com/android/dx/rop/cst/
CstLong.java 27 /** {@code non-null;} instance representing {@code 0} */
30 /** {@code non-null;} instance representing {@code 1} */
34 * Makes an instance for the given value. This may (but does not
35 * necessarily) return an already-allocated instance.
48 * Constructs an instance. This constructor is private; use {@link #make}.
  /external/chromium_org/athena/main/
athena_renderer_pdf_helper.cc 29 PP_Instance instance,
32 // Make sure the plugin is giving us a valid instance for this resource.
33 if (!host_->IsValidInstance(instance))
41 new pdf::PepperPDFHost(host_, instance, params.pp_resource()));
46 instance,
  /external/chromium_org/native_client_sdk/src/examples/tutorial/testing/
testing.cc 6 #include "ppapi/cpp/instance.h"
29 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
39 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
47 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
61 // Register the function to call once the Instance Object is initialized.
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_socket_test/
main.cc 8 #include "ppapi/cpp/instance.h"
23 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
33 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
41 pp::Instance(PSGetInstanceId()).PostMessage(msg.str());
54 // Register the function to call once the Instance Object is initialized.

Completed in 1590 milliseconds

<<21222324252627282930>>