Home
last modified time | relevance | path

Searched refs:_singleton (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Mac/PythonLauncher/
DPreferencesWindowController.m7 static PreferencesWindowController *_singleton;
9 if (!_singleton)
10 _singleton = [[PreferencesWindowController alloc] init];
11 [_singleton showWindow: _singleton];
12 return _singleton;
/external/python/cpython2/Mac/PythonLauncher/
DPreferencesWindowController.m7 static PreferencesWindowController *_singleton;
9 if (!_singleton)
10 _singleton = [[PreferencesWindowController alloc] init];
11 [_singleton showWindow: _singleton];
12 return _singleton;
/external/clang/utils/ABITest/
DEnumeration.py8 _singleton = None variable in Aleph0
10 if type._singleton is None:
11 type._singleton = int.__new__(type)
12 return type._singleton