HomeSort by relevance Sort by last modified time
    Searched refs:Instance (Results 226 - 250 of 337) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/netd/server/
NetlinkManager.cpp 40 NetlinkManager *NetlinkManager::Instance() {
  /system/vold/
VolumeManager.h 135 static VolumeManager *Instance();
CommandListener.cpp 130 VolumeManager *vm = VolumeManager::Instance();
343 VolumeManager *vm = VolumeManager::Instance();
485 VolumeManager *vm = VolumeManager::Instance();
  /external/chromium_org/pdf/
out_of_process_instance.h 26 #include "ppapi/cpp/instance.h"
39 class OutOfProcessInstance : public pp::Instance,
47 explicit OutOfProcessInstance(PP_Instance instance);
50 // pp::Instance implementation.
132 virtual pp::Instance* GetPluginInstance();
269 // interface which has very limited access to the pp::Instance.
287 // JavaScript interface to control this instance.
paint_manager.cc 11 #include "ppapi/cpp/instance.h"
14 PaintManager::PaintManager(pp::Instance* instance,
17 : instance_(instance),
76 void PaintManager::Initialize(pp::Instance* instance,
80 instance_ = instance;
  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 284 ASSERT(mClient->init(Settings::Instance()->getSetting(Settings::EADB)));
349 Report::Instance()->addCasePassed(this);
355 Report::Instance()->addCaseFailed(this);
  /external/chromium_org/ppapi/examples/compositor/
compositor.cc 22 #include "ppapi/cpp/instance.h"
56 class DemoInstance : public pp::Instance, public pp::Graphics3DClient {
58 DemoInstance(PP_Instance instance);
61 // pp::Instance implementation (see PPP_Instance).
103 DemoInstance::DemoInstance(PP_Instance instance)
104 : pp::Instance(instance),
433 virtual pp::Instance* CreateInstance(PP_Instance instance) {
434 return new DemoInstance(instance);
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp 354 // then we're the top level compiler instance and need to create one.
776 // Create the target instance.
855 /// provided by the importing compiler instance.
    [all...]
FrontendAction.cpp 125 FrontendAction::FrontendAction() : Instance(nullptr) {}
170 assert(!Instance && "Already processing a source file!");
  /external/chromium_org/ppapi/examples/video_capture/
video_capture.cc 21 #include "ppapi/cpp/instance.h"
50 virtual pp::Instance* CreateInstance(PP_Instance instance);
53 class VCDemoInstance : public pp::Instance,
57 VCDemoInstance(PP_Instance instance, pp::Module* module);
60 // pp::Instance implementation (see PPP_Instance).
160 VCDemoInstance::VCDemoInstance(PP_Instance instance, pp::Module* module)
161 : pp::Instance(instance),
493 pp::Instance* VCDemoModule::CreateInstance(PP_Instance instance)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
profiler.cc 105 Profiler* Profiler::Instance() {
106 LIBJINGLE_DEFINE_STATIC_LOCAL(Profiler, instance, ());
107 return &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/chromium_org/ui/aura/
remote_window_tree_host_win.h 48 static RemoteWindowTreeHostWin* Instance();
remote_window_tree_host_win.cc 89 RemoteWindowTreeHostWin* RemoteWindowTreeHostWin::Instance() {
114 return Instance()->remote_window_ != NULL;
  /external/clang/include/clang/AST/
NSAPI.h 161 /// \param Instance if true it will return the selector for the init* method
164 bool Instance) const;
  /external/clang/lib/Serialization/
ASTReaderInternals.h 159 SmallVector<ObjCMethodDecl *, 2> Instance;
  /external/chromium_org/ppapi/tests/
testing_instance.cc 27 TestingInstance::TestingInstance(PP_Instance instance)
29 : pp::Instance(instance),
31 : pp::InstancePrivate(instance),
316 virtual pp::Instance* CreateInstance(PP_Instance instance) {
317 return new TestingInstance(instance);
  /external/chromium_org/ppapi/examples/ime/
ime.cc 17 #include "ppapi/cpp/instance.h"
100 explicit TextFieldStatusNotifyingHandler(pp::Instance* instance)
101 : textinput_control_(instance) {
125 MyTextField(pp::Instance* instance, TextFieldStatusHandler* handler,
127 : instance_(instance),
360 // Notify the plugin instance that the caret position has changed.
384 pp::Instance* instance_;
399 class MyInstance : public pp::Instance {
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
ServiceInfoImpl.java 191 this._name = map.get(Fields.Instance);
239 qualifiedNameMap.put(Fields.Instance, name);
306 qualifiedNameMap.put(Fields.Instance, name);
336 // Instance
337 String instance = (qualifiedNameMap.containsKey(Fields.Instance) ? qualifiedNameMap.get(Fields.Instance) : ""); local
338 if ((instance == null) || (instance.length() == 0)) {
339 instance = ""
430 String instance = this.getName(); local
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 18 #include "ppapi/cpp/instance.h"
65 class MyInstance : public pp::Instance, public pp::Graphics3DClient {
67 MyInstance(PP_Instance instance, pp::Module* module);
70 // pp::Instance implementation.
92 LogError(MyInstance* instance) : instance_(instance) {}
152 Decoder(MyInstance* instance, int id, const pp::Graphics3D& graphics_3d);
230 Decoder::Decoder(MyInstance* instance,
233 : instance_(instance),
235 decoder_(new pp::VideoDecoder(instance)),
    [all...]
video_decode_dev.cc 21 #include "ppapi/cpp/instance.h"
56 class VideoDecodeDemoInstance : public pp::Instance,
60 VideoDecodeDemoInstance(PP_Instance instance, pp::Module* module);
63 // pp::Instance implementation (see PPP_Instance).
220 VideoDecodeDemoInstance::VideoDecodeDemoInstance(PP_Instance instance,
222 : pp::Instance(instance), pp::Graphics3DClient(this),
475 virtual pp::Instance* CreateInstance(PP_Instance instance) {
476 return new VideoDecodeDemoInstance(instance, this)
    [all...]
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 56 Expr *instance = E->getInstanceReceiver()->IgnoreParenCasts();
57 if (DeclRefExpr *DE = dyn_cast<DeclRefExpr>(instance)) {
359 if (ME->getReceiverKind() == ObjCMessageExpr::Instance &&
378 if (ME->getReceiverKind() == ObjCMessageExpr::Instance) {
TransRetainReleaseDealloc.cpp 83 if (E->getReceiverKind() == ObjCMessageExpr::Instance)
127 case ObjCMessageExpr::Instance:
  /external/clang/lib/AST/
NSAPI.cpp 226 bool Instance) const {
264 if (Instance) {
  /external/chromium_org/ash/test/
ash_test_base.cc 151 aura::RemoteWindowTreeHostWin::Instance();

Completed in 1471 milliseconds

1 2 3 4 5 6 7 8 91011>>