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

  /external/webkit/WebCore/bridge/jsc/
BridgeJSC.cpp 52 Instance::Instance(PassRefPtr<RootObject> rootObject)
59 Instance::~Instance()
66 void Instance::setDidExecuteFunction(KJSDidExecuteFunctionPtr func)
71 KJSDidExecuteFunctionPtr Instance::didExecuteFunction()
76 void Instance::begin()
81 void Instance::end()
86 RuntimeObjectImp* Instance::createRuntimeObject(ExecState* exec)
98 RuntimeObjectImp* Instance::newRuntimeObject(ExecState* exec
    [all...]
BridgeJSC.h 47 class Instance;
55 virtual JSValue valueFromInstance(ExecState*, const Instance*) const = 0;
56 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const = 0;
63 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0;
64 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0;
65 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); }
72 class Instance : public RefCounted<Instance> {
74 Instance(PassRefPtr<RootObject>);
109 virtual ~Instance();
    [all...]
  /frameworks/base/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 37 NetlinkManager *NetlinkManager::Instance() {
  /system/vold/
NetlinkManager.cpp 37 NetlinkManager *NetlinkManager::Instance() {
VolumeManager.cpp 47 VolumeManager *VolumeManager::Instance() {
619 SLOGE("Failed to destroy devmapper instance (%s)", strerror(errno));
764 SLOGD("New devmapper instance created at %s", dmDevice);
869 SLOGD("New devmapper instance created at %s", dmDevice);
    [all...]
  /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...]
  /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));
  /system/core/nexus/
NetworkManager.cpp 33 NetworkManager *NetworkManager::Instance() {
  /external/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/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());

Completed in 2223 milliseconds