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

1 2

  /cts/suite/audio_quality/lib/src/
Settings.cpp 22 Settings* Settings::Instance()
Log.cpp 28 Log* Log::Instance(const char* dirName)
Report.cpp 25 Report* Report::Instance(const char* dirName)
59 Settings::Instance()->addSetting(Settings::EREPORT_FILE, report);
85 Settings::Instance()->getSetting(Settings::EREPORT_TIME).string());
88 printf(" %s", Settings::Instance()->getSetting(Settings::EDEVICE_INFO).string());
91 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 12 } Instance __attribute__((transparent_union));
14 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) {
19 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
  /external/llvm/include/llvm/MC/
MCLabel.h 25 // Instance - the instance number of this Directional Local Label
26 unsigned Instance;
30 MCLabel(unsigned instance)
31 : Instance(instance) {}
36 /// getInstance - Get the current instance of this Directional Local Label.
37 unsigned getInstance() const { return Instance; }
39 /// incInstance - Increment the current instance of this Directional Local
41 unsigned incInstance() { return ++Instance; }
    [all...]
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.cpp 55 Instance::Instance(PassRefPtr<RootObject> rootObject)
62 Instance::~Instance()
69 void Instance::setDidExecuteFunction(KJSDidExecuteFunctionPtr func)
74 KJSDidExecuteFunctionPtr Instance::didExecuteFunction()
79 void Instance::begin()
84 void Instance::end()
89 JSObject* Instance::createRuntimeObject(ExecState* exec)
103 RuntimeObject* Instance::newRuntimeObject(ExecState* exec
    [all...]
BridgeJSC.h 48 class Instance;
57 virtual JSValue valueFromInstance(ExecState*, const Instance*) const = 0;
58 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const = 0;
67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
68 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0;
69 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); }
76 class Instance : public RefCounted<Instance> {
78 Instance(PassRefPtr<RootObject>);
113 virtual ~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/clang/include/clang/Frontend/
FrontendAction.h 32 CompilerInstance *Instance;
51 /// \param CI - The current compiler instance, provided as a convenience, \see
80 /// compiler instance.
97 /// @name Compiler Instance Access
101 assert(Instance && "Compiler instance not registered!");
102 return *Instance;
105 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; }
174 /// \param CI - The compiler instance this action is being run from. The
224 /// \param CI - The compiler instance, for use in reporting diagnostics
    [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 145 llvm::SmallVector<ObjCMethodDecl *, 2> Instance;
  /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...]
GestureStore.java 137 Instance instance = Instance.createInstance(mSequenceType, local
139 return mClassifier.classify(mSequenceType, mOrientationStyle, instance.vector);
159 Instance.createInstance(mSequenceType, mOrientationStyle, gesture, entryName));
325 Instance.createInstance(mSequenceType, mOrientationStyle, gesture, name));
  /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...]
  /external/mesa3d/src/pixelflinger2/
shader.cpp 109 struct Instance {
113 ~Instance() {
123 std::map<ShaderKey, Instance *> instances;
191 for (std::map<ShaderKey, Instance *>::iterator it=shader->executable->instances.begin();
193 (*it).second->~Instance();
386 static void CodeGen(Instance * instance, const char * mainName, gl_shader * shader,
392 // instance->module->dump();
394 BCCScriptRef & script = instance->script;
396 result = bccReadModule(script, "glsl", (LLVMModuleRef)instance->module, 0)
438 Instance * instance = shader->executable->instances[shaderKey]; local
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 20 * &lt;Instance&gt;.&lt;app&gt;.&lt;protocol&gt;.&lt;servicedomain&gt;.&lt;parentdomain&gt;.<br/>
28 * <li>&lt;Instance&gt;: This is the service name</li>
57 * Instance Field.
59 Instance,
72 * unqualified service instance name, such as <code>foobar</code>
89 * unqualified service instance name, such as <code>foobar</code>
91 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration
108 * unqualified service instance name, such as <code>foobar</code>
129 * unqualified service instance name, such as <code>foobar</code>
131 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeratio
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 538 static TestGenerationEnvironment* Instance() {
539 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
540 return instance;
601 Environment::Instance()->FixtureConstructorExecuted();
605 Environment::Instance()->SetUpExecuted();
609 Environment::Instance()->TearDownExecuted();
655 Environment::Instance()->TestBodyExecuted();
785 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
  /external/chromium/testing/gtest/test/
gtest-param-test_test.cc 570 static TestGenerationEnvironment* Instance() {
571 static TestGenerationEnvironment* instance = new TestGenerationEnvironment; local
572 return instance;
633 Environment::Instance()->FixtureConstructorExecuted();
637 Environment::Instance()->SetUpExecuted();
641 Environment::Instance()->TearDownExecuted();
687 Environment::Instance()->TestBodyExecuted();
879 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
    [all...]

Completed in 733 milliseconds

1 2