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

1 2 3

  /external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/
multi_platform.cc 5 #include "ppapi/cpp/instance.h"
9 class Instance : public pp::Instance {
11 explicit Instance(PP_Instance instance) : pp::Instance(instance) {}
12 virtual ~Instance() {}
25 virtual pp::Instance* CreateInstance(PP_Instance instance) {
    [all...]
  /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());
  /hardware/intel/common/wrs_omxil_core/core/src/
pv_omx_interface.cpp 43 static PVOMXInterface* Instance()
79 return PVOMXInterface::Instance();
  /external/chromium_org/ppapi/cpp/
instance.h 9 /// This file defines the C++ wrapper for an instance.
42 class Instance {
44 /// Default constructor. Construction of an instance should only be done in
46 /// Otherwise, the instance will lack the proper bookkeeping in the browser
52 explicit Instance(PP_Instance instance);
54 /// Destructor. When the instance is removed from the web page,
55 /// the <code>pp::Instance</code> object will be deleted. You should never
56 /// delete the <code>Instance</code> object yourself since the lifetime is
61 /// call so the instance can perform cleanup-related tasks. Once this functio
    [all...]
instance.cc 5 #include "ppapi/cpp/instance.h"
82 Instance::Instance(PP_Instance instance) : pp_instance_(instance) {
85 Instance::~Instance() {
88 bool Instance::Init(uint32_t /*argc*/, const char* /*argn*/[],
93 void Instance::DidChangeView(const View& view) {
98 void Instance::DidChangeView(const pp::Rect& /*position*/
    [all...]
  /external/clang/test/Sema/
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) {
nonnull.c 10 } Instance __attribute__((transparent_union));
12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) {
  /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...]
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 51 ret = pthread_create(&id, NULL, Instance, this);
74 void *Thread::Instance(void *p)
  /external/chromium_org/ppapi/tests/extensions/background_keepalive/
background.cc 8 #include "ppapi/cpp/instance.h"
14 class Instance : public pp::Instance {
16 explicit Instance(PP_Instance instance) :
17 pp::Instance(instance),
23 virtual ~Instance() {}
38 &Instance::DoSomething);
43 pp::CompletionCallbackFactory<Instance> callback_factory_
    [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/server/
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/content/child/
worker_task_runner.cc 71 WorkerTaskRunner* WorkerTaskRunner::Instance() {
  /external/chromium_org/third_party/webrtc/base/
profiler.cc 88 Profiler* Profiler::Instance() {
89 LIBJINGLE_DEFINE_STATIC_LOCAL(Profiler, instance, ());
90 return &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; }
188 /// \param CI - The compiler instance this action is being run from. The
237 /// \param CI - The compiler instance, for use in reporting diagnostics
    [all...]
  /external/chromium_org/storage/browser/fileapi/
external_mount_points.cc 61 class ExternalMountPoints::Instance {
63 Instance(FileSystemType type,
69 ~Instance() {}
80 DISALLOW_COPY_AND_ASSIGN(Instance);
110 instance_map_[mount_name] = new Instance(type, path, mount_option);
127 Instance* instance = found->second;
128 if (IsOverlappingMountPathForbidden(instance->type()))
129 path_to_name_map_.erase(NormalizeFilePath(instance->path()));
182 const Instance* instance = found_instance->second local
    [all...]
  /external/chromium_org/ppapi/tests/
test_instance_deprecated.cc 64 REGISTER_TEST_CASE(Instance);
66 TestInstance::TestInstance(TestingInstance* instance)
67 : TestCase(instance),
77 // This should cause the instance object's descructor to be called.
80 // Test a post-condition which ensures the instance objects destructor is
83 // instance is destroyed. If the renderer is being shut down, too much
98 // the InstanceSOs reference to the instance so there is no UAF.
104 // we can ExecuteScript at instance destruction without crashing. It also
106 // cases. In particular, when the instance is destroyed by normal DOM
109 // ExecuteScript will *not* have an effect when the instance is destroye
    [all...]
  /external/clang/lib/Serialization/
ASTReaderInternals.h 159 SmallVector<ObjCMethodDecl *, 2> Instance;

Completed in 540 milliseconds

1 2 3