HomeSort by relevance Sort by last modified time
    Searched refs:_instance (Results 1 - 25 of 38) sorted by null

1 2

  /ndk/tests/device/multi-static-instances/jni/
main.cpp 9 static A _instance; local
10 return &_instance;
  /external/jmdns/src/javax/jmdns/
NetworkTopologyDiscovery.java 57 private static volatile NetworkTopologyDiscovery _instance; field in class:NetworkTopologyDiscovery.Factory
123 if (_instance == null) {
125 if (_instance == null) {
126 _instance = NetworkTopologyDiscovery.Factory.newNetworkTopologyDiscovery();
130 return _instance;
JmmDNS.java 33 private static volatile JmmDNS _instance; field in class:JmmDNS.Factory
100 if (_instance == null) {
102 if (_instance == null) {
103 _instance = JmmDNS.Factory.newJmmDNS();
107 return _instance;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
Dialog.js 68 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();
  /ndk/sources/cxx-stl/gabi++/tests/
test_guard.cpp 23 // This construct forces the static creation of _instance
26 static Foo _instance; local
27 return &_instance;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
ConsolePanel.js 68 if (WebInspector.ConsolePanel.WrapperView._instance)
69 WebInspector.ConsolePanel.WrapperView._instance._showViewInWrapper();
84 WebInspector.ConsolePanel.WrapperView._instance = this;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_dump.py 54 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/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 54 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/WebKit/Source/devtools/front_end/components/
Drawer.js 231 if (!this._instance)
232 this._instance = /** @type {!WebInspector.View} */(new this._constructor());
233 return this._instance;
  /external/chromium_org/build/android/pylib/
forwarder.py 58 _instance = None variable in class: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/jmdns/src/javax/jmdns/impl/
DNSTaskStarter.java 38 private static volatile Factory _instance; field in class:DNSTaskStarter.Factory
110 if (_instance == null) {
112 if (_instance == null) {
113 _instance = new Factory();
117 return _instance;
  /external/apache-harmony/support/src/test/java/tests/util/
CallVerificationStack.java 36 private static final CallVerificationStack _instance = new CallVerificationStack(); field in class:CallVerificationStack
72 return _instance;
  /libcore/support/src/test/java/tests/util/
CallVerificationStack.java 37 private static final CallVerificationStack _instance = new CallVerificationStack(); field in class:CallVerificationStack
73 return _instance;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
DocumentationCatalog.js 20 if (!WebInspector.DocumentationCatalog._instance)
21 WebInspector.DocumentationCatalog._instance = new WebInspector.DocumentationCatalog();
22 return WebInspector.DocumentationCatalog._instance;
  /external/chromium_org/third_party/npapi/npspy/include/
epmanager.h 53 InstanceList(NPP _instance);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-private.hh 235 # define _ASSERT_INSTANCE_POD1(_line, _instance) \
237 typedef __typeof__(_instance) _type_##_line; \
241 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested
243 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance)
244 # define ASSERT_INSTANCE_POD(_instance) _ASSERT_INSTANCE_POD0 (__LINE__, _instance)
  /external/harfbuzz_ng/src/
hb-private.hh 196 # define _ASSERT_INSTANCE_POD1(_line, _instance) \
198 typedef __typeof__(_instance) _type_##_line; \
202 # define _ASSERT_INSTANCE_POD1(_line, _instance) typedef int _assertion_on_line_##_line##_not_tested
204 # define _ASSERT_INSTANCE_POD0(_line, _instance) _ASSERT_INSTANCE_POD1 (_line, _instance)
205 # define ASSERT_INSTANCE_POD(_instance) _ASSERT_INSTANCE_POD0 (__LINE__, _instance)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
AdvancedSearchView.js 52 WebInspector.AdvancedSearchView._instance = this;
356 var searchView = WebInspector.AdvancedSearchView._instance;
365 WebInspector.AdvancedSearchView._instance._toggle(queryCandidate);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Runtime.js 748 if (!this._instance) {
755 this._instance = new constructorFunction();
757 return this._instance;
  /external/chromium_org/third_party/npapi/npspy/common/
epmanager.cpp 45 InstanceList::InstanceList(NPP _instance) :
47 instance(_instance)
  /external/chromium_org/third_party/icu/source/common/
serv.h 285 UObject* _instance;
    [all...]
serv.cpp 126 : _instance(instanceToAdopt), _id(id), _visible(visible)
132 delete _instance;
141 return service->cloneInstance(_instance);
  /external/icu/icu4c/source/common/
serv.h 285 UObject* _instance;
    [all...]
serv.cpp 126 : _instance(instanceToAdopt), _id(id), _visible(visible)
132 delete _instance;
141 return service->cloneInstance(_instance);
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 

Completed in 490 milliseconds

1 2