Home
last modified time | relevance | path

Searched refs:__update (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/libcxx/include/
Dlatch30 void count_down(ptrdiff_t __update = 1);
33 void arrive_and_wait(ptrdiff_t __update = 1);
79 void count_down(ptrdiff_t __update = 1)
81 auto const __old = __a.fetch_sub(__update, memory_order_release);
82 if(__old == __update)
99 void arrive_and_wait(ptrdiff_t __update = 1)
101 count_down(__update);
Dsemaphore89 void release(ptrdiff_t __update = 1)
91 if(0 < __a.fetch_add(__update, memory_order_release))
93 else if(__update > 1)
149 void release(ptrdiff_t __update)
151 for(; __update; --__update)
200 void release(ptrdiff_t __update = 1)
202 __semaphore.release(__update);
/external/fonttools/Lib/fontTools/pens/
DstatisticsPen.py27 self.__update()
40 def __update(self): member in StatisticsPen
/external/python/cpython2/Tools/audiopy/
Daudiopy248 signal.signal(signal.SIGPOLL, self.__update)
250 self.__update()
278 self.__update()
280 def __update(self, num=None, frame=None): member in MainWindow
/external/python/funcsigs/funcsigs/
Dodict.py44 self.__update(*args, **kwds)
175 __update = update # let subclasses override update without breaking __init__ variable in OrderedDict
/external/python/cpython3/Tools/pynche/
DTypeinViewer.py124 self.__update(event)
126 def __update(self, event=None): member in TypeinViewer
/external/python/cpython2/Tools/pynche/
DTypeinViewer.py124 self.__update(event)
126 def __update(self, event=None): member in TypeinViewer
/external/python/cpython2/Lib/
Dcollections.py69 self.__update(*args, **kwds)
145 __update = update # let subclasses override update without breaking __init__ variable in OrderedDict
/external/python/cpython3/Lib/collections/
D__init__.py121 self.__update(other, **kwds)
232 update = __update = _collections_abc.MutableMapping.update
/external/python/cpython3/Doc/tutorial/
Dclasses.rst701 self.__update(iterable)
707 __update = update # private copy of original update() method
718 ``__update`` identifier since it is replaced with ``_Mapping__update`` in the
/external/python/cpython2/Doc/tutorial/
Dclasses.rst638 self.__update(iterable)
644 __update = update # private copy of original update() method