HomeSort by relevance Sort by last modified time
    Searched defs:Instance (Results 1 - 25 of 51) sorted by null

1 2 3

  /cts/suite/audio_quality/lib/src/
Settings.cpp 22 Settings* Settings::Instance()
Log.cpp 28 Log* Log::Instance(const char* dirName)
Report.cpp 26 Report* Report::Instance(const char* dirName)
62 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report);
110 Settings::Instance()->getSetting(Settings::EREPORT_TIME).string());
113 printf(" %s", Settings::Instance()->getSetting(Settings::EDEVICE_INFO).string());
116 Settings::Instance()->getSetting(Settings::ETEST_XML).string());
  /external/clang/test/Sema/
nonnull.c 10 } Instance __attribute__((transparent_union));
12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) {
overloaded-func-transparent-union.c 13 } Instance __attribute__((transparent_union));
15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
  /external/chromium_org/ppapi/cpp/
instance.h 9 /// This file defines the C++ wrapper for an instance.
39 class Instance {
41 /// Default constructor. Construction of an instance should only be done in
43 /// Otherwise, the instance will lack the proper bookkeeping in the browser
49 explicit Instance(PP_Instance instance);
51 /// Destructor. When the instance is removed from the web page,
52 /// the <code>pp::Instance</code> object will be deleted. You should never
53 /// delete the <code>Instance</code> object yourself since the lifetime is
58 /// call so the instance can perform cleanup-related tasks. Once this functio
    [all...]
instance.cc 5 #include "ppapi/cpp/instance.h"
46 Instance::Instance(PP_Instance instance) : pp_instance_(instance) {
49 Instance::~Instance() {
52 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[],
57 void Instance::DidChangeView(const View& view) {
62 void Instance::DidChangeView(const pp::Rect& /*position*/
    [all...]
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Init.c 31 /* phInstance Pointer to pointer to the instance */
54 INST_ALLOC Instance;
88 InstAlloc_Init( &Instance , pMemoryTable->Region[LVPSA_MEMREGION_INSTANCE].pBaseAddress);
94 /* Set the instance handle if not already initialised */
97 *phInstance = InstAlloc_AddMember( &Instance, sizeof(LVPSA_InstancePr_t) );
145 pLVPSA_Inst->pPostGains = InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT16) );
146 pLVPSA_Inst->pFiltersParams = InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVPSA_FilterParam_t) );
147 pLVPSA_Inst->pSpectralDataBufferStart = InstAlloc_AddMember( &Instance, pInitParams->nBands * pLVPSA_Inst->SpectralDataBufferLength * sizeof(LVM_UINT8) );
148 pLVPSA_Inst->pPreviousPeaks = InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT8) );
149 pLVPSA_Inst->pBPFiltersPrecision = InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVPSA_BPFilterPrecision_en) )
    [all...]
LVPSA_Memory.c 31 /* hInstance = Instance handle Returns the memory requirements and */
32 /* allocated base addresses for the instance */
37 /* When the function is called for free (hInstance = Instance Handle) the memory */
41 /* hInstance Instance Handle */
43 /* InitParams Pointer to the instance init parameters */
56 INST_ALLOC Instance;
63 InstAlloc_Init( &Instance , LVM_NULL);
105 * Instance memory
108 InstAlloc_AddMember( &Instance, sizeof(LVPSA_InstancePr_t) );
109 InstAlloc_AddMember( &Instance, pInitParams->nBands * sizeof(LVM_UINT16) )
    [all...]
  /hardware/ti/omap3/omx/core_plugin/omx_core_plugin/src/
ti_omx_interface.cpp 52 static TIOMXInterface* Instance()
126 return TIOMXInterface::Instance();
131 TIOMXInterface* instance = (TIOMXInterface*)aInstance; local
132 if (instance)
133 OSCL_DELETE(instance);
  /system/netd/
NetlinkManager.cpp 40 NetlinkManager *NetlinkManager::Instance() {
  /system/vold/
NetlinkManager.cpp 37 NetlinkManager *NetlinkManager::Instance() {
  /external/clang/test/SemaCXX/
vtable-instantiation.cc 36 static Target<T> Instance;
40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}}
44 Target<int*>* traits = &Provider<int*>::Instance;
  /dalvik/hit/src/com/android/hit/
Instance.java 23 public abstract class Instance {
26 // Id of the ClassObj of which this object is an instance
39 public boolean accept(Instance instance);
43 private ArrayList<Instance> mParents;
52 * for in a heap other than the one this Instance is in.
62 public abstract void visit(Set<Instance> resultSet, Filter filter);
69 HashSet<Instance> set = new HashSet<Instance>();
75 for (Instance instance: set)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.cc 102 Profiler* Profiler::Instance() {
103 LIBJINGLE_DEFINE_STATIC_LOCAL(Profiler, instance, ());
104 return &instance;
messagequeue.cc 47 MessageQueueManager* MessageQueueManager::Instance() {
125 MessageQueueManager::Instance()->Remove(this);
384 MessageQueueManager::Instance()->Add(this);
  /external/chromium_org/webkit/child/
worker_task_runner.cc 70 WorkerTaskRunner* WorkerTaskRunner::Instance() {
  /external/clang/include/clang/Frontend/
FrontendAction.h 39 CompilerInstance *Instance;
57 /// \param CI - The current compiler instance, provided as a convenience, see
85 /// compiler instance.
111 /// @name Compiler Instance Access
115 assert(Instance && "Compiler instance not registered!");
116 return *Instance;
119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
189 /// \param CI - The compiler instance this action is being run from. The
238 /// \param CI - The compiler instance, for use in reporting diagnostics
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
external_mount_points.cc 58 class ExternalMountPoints::Instance {
60 Instance(FileSystemType type, const base::FilePath& path)
62 ~Instance() {}
71 DISALLOW_COPY_AND_ASSIGN(Instance);
96 instance_map_[mount_name] = new Instance(type, path);
113 Instance* instance = found->second;
114 path_to_name_map_.erase(NormalizeFilePath(instance->path()));
164 const Instance* instance = found_instance->second local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
messagequeue.cc 51 MessageQueueManager* MessageQueueManager::Instance() {
129 MessageQueueManager::Instance()->Remove(this);
379 MessageQueueManager::Instance()->Add(this);
  /external/clang/lib/Serialization/
ASTReaderInternals.h 157 SmallVector<ObjCMethodDecl *, 2> Instance;
  /external/eigen/bench/btl/generic_bench/
btl.hh 153 For instance: "dir1/dir2/file.ext" leads to path="dir1/dir2/" and filename="file.ext"
188 Instance.m_selectedActionNames = config[i+1].split(":");
199 Instance.tries = atoi(config[i+1].c_str());
205 Instance.overwriteResults = true;
209 Instance.checkResults = false;
213 Instance.realclock = true;
223 if (Instance.m_selectedActionNames.empty())
227 for (int i=0; i<Instance.m_selectedActionNames.size(); ++i)
228 if (name.contains(Instance.m_selectedActionNames[i]))
234 static BtlConfig Instance;
    [all...]
  /frameworks/base/core/java/android/gesture/
Instance.java 21 * An instance represents a sample if the label is available or a query if the
24 class Instance {
41 // the id of the instance
44 private Instance(long id, float[] sample, String sampleName) {
66 * create a learning instance for a single stroke gesture
70 * @return the instance
72 static Instance createInstance(int sequenceType, int orientationType, Gesture gesture, String label) {
74 Instance instance; local
77 instance = new Instance(gesture.getID(), pts, label)
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_util.h 40 // While an instance of this class does not own the underlying java object, it
71 // Retain the instance, i.e. increase reference count.
74 // Release the instance, i.e. decrease reference count.
87 // object, which is then mapped to the correct instance here. It should not be
101 // Return the shared instance to this type's pool.
102 static ObjectPool* Instance() {
207 // This function "links" the C++ instance and the Java instance, so that they
208 // can be mapped to one another. This must be called for every C++ instance
213 ObjectPool<T>* pool = ObjectPool<T>::Instance();
    [all...]

Completed in 640 milliseconds

1 2 3