Home
last modified time | relevance | path

Searched refs:_instance (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DDialog.js68 return WebInspector.Dialog._instance;
77 if (WebInspector.Dialog._instance)
79 WebInspector.Dialog._instance = new WebInspector.Dialog(relativeToElement, delegate);
84 if (!WebInspector.Dialog._instance)
86 WebInspector.Dialog._instance._hide();
103 delete WebInspector.Dialog._instance;
212 if (WebInspector.Dialog._instance)
213 WebInspector.Dialog._instance._position();
/external/jmdns/src/javax/jmdns/
DNetworkTopologyDiscovery.java57 private static volatile NetworkTopologyDiscovery _instance; field in NetworkTopologyDiscovery.Factory
123 if (_instance == null) { in getInstance()
125 if (_instance == null) { in getInstance()
126 _instance = NetworkTopologyDiscovery.Factory.newNetworkTopologyDiscovery(); in getInstance()
130 return _instance; in getInstance()
DJmmDNS.java33 private static volatile JmmDNS _instance; field in JmmDNS.Factory
100 if (_instance == null) { in getInstance()
102 if (_instance == null) { in getInstance()
103 _instance = JmmDNS.Factory.newJmmDNS(); in getInstance()
107 return _instance; in getInstance()
/external/mesa3d/src/gallium/drivers/svga/svgadump/
Dsvga_dump.py54 self._instance = instance
58 return decl_dumper_t(self._instance, self.decl)
67 dump_type(self._instance + '.' + variable.name, variable.type)
71 print ' switch(%s) {' % ("(*cmd)" + self._instance,)
74 print ' _debug_printf("\\t\\t%s = %s\\n");' % (self._instance, name)
77 …print ' _debug_printf("\\t\\t%s = %%i\\n", %s);' % (self._instance, "(*cmd)" + self._instance)
81 … print ' _debug_printf("\\t\\t%s = %%i\\n", %s);' % (self._instance, "(*cmd)" + self._instance)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
Dsvga_dump.py54 self._instance = instance
58 return decl_dumper_t(self._instance, self.decl)
67 dump_type(self._instance + '.' + variable.name, variable.type)
71 print ' switch(%s) {' % ("(*cmd)" + self._instance,)
74 print ' _debug_printf("\\t\\t%s = %s\\n");' % (self._instance, name)
77 …print ' _debug_printf("\\t\\t%s = %%i\\n", %s);' % (self._instance, "(*cmd)" + self._instance)
81 … print ' _debug_printf("\\t\\t%s = %%i\\n", %s);' % (self._instance, "(*cmd)" + self._instance)
/external/chromium_org/build/android/pylib/
Dforwarder.py58 _instance = None variable in Forwarder
148 if not Forwarder._instance:
151 if adb_serial not in Forwarder._instance._initialized_devices:
192 if not Forwarder._instance:
193 Forwarder._instance = Forwarder(tool)
194 return Forwarder._instance
206 assert not Forwarder._instance
329 Forwarder._instance._initialized_devices.discard(str(device))
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
DConsolePanel.js68 if (WebInspector.ConsolePanel.WrapperView._instance)
69 WebInspector.ConsolePanel.WrapperView._instance._showViewInWrapper();
84 WebInspector.ConsolePanel.WrapperView._instance = this;
/external/jmdns/src/javax/jmdns/impl/
DDNSTaskStarter.java38 private static volatile Factory _instance; field in DNSTaskStarter.Factory
110 if (_instance == null) { in getInstance()
112 if (_instance == null) { in getInstance()
113 _instance = new Factory(); in getInstance()
117 return _instance; in getInstance()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DDrawer.js231 if (!this._instance)
232 this._instance = /** @type {!WebInspector.View} */(new this._constructor());
233 return this._instance;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DDocumentationCatalog.js20 if (!WebInspector.DocumentationCatalog._instance)
21 WebInspector.DocumentationCatalog._instance = new WebInspector.DocumentationCatalog();
22 return WebInspector.DocumentationCatalog._instance;
/external/harfbuzz_ng/src/
Dhb-private.hh196 # define _ASSERT_INSTANCE_POD1(_line, _instance) \ argument
198 typedef __typeof__(_instance) _type_##_line; \
202 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested argument
204 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance) argument
205 # define ASSERT_INSTANCE_POD(_instance) _ASSERT_INSTANCE_POD0 (__LINE__, _instance) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DAdvancedSearchView.js52 WebInspector.AdvancedSearchView._instance = this;
356 var searchView = WebInspector.AdvancedSearchView._instance;
365 WebInspector.AdvancedSearchView._instance._toggle(queryCandidate);
/external/apache-harmony/support/src/test/java/tests/util/
DCallVerificationStack.java36 private static final CallVerificationStack _instance = new CallVerificationStack(); field in CallVerificationStack
72 return _instance; in getInstance()
/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-private.hh235 # define _ASSERT_INSTANCE_POD1(_line, _instance) \ argument
237 typedef __typeof__(_instance) _type_##_line; \
241 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested argument
243 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance) argument
244 # define ASSERT_INSTANCE_POD(_instance) _ASSERT_INSTANCE_POD0 (__LINE__, _instance) argument
/external/chromium_org/third_party/npapi/npspy/include/
Depmanager.h53 InstanceList(NPP _instance);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DRuntime.js748 if (!this._instance) {
755 this._instance = new constructorFunction();
757 return this._instance;
/external/chromium_org/third_party/npapi/npspy/common/
Depmanager.cpp45 InstanceList::InstanceList(NPP _instance) : in InstanceList() argument
47 instance(_instance) in InstanceList()
/external/icu/icu4c/source/common/
Dserv.cpp126 : _instance(instanceToAdopt), _id(id), _visible(visible) in SimpleFactory()
132 delete _instance; in ~SimpleFactory()
141 return service->cloneInstance(_instance); in create()
Dserv.h285 UObject* _instance;
/external/chromium_org/third_party/icu/source/common/
Dserv.cpp126 : _instance(instanceToAdopt), _id(id), _visible(visible) in SimpleFactory()
132 delete _instance; in ~SimpleFactory()
141 return service->cloneInstance(_instance); in create()
Dserv.h285 UObject* _instance;