Home
last modified time | relevance | path

Searched refs:_current (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
Doptpmap.py5 _current = None variable
10 global _current
12 _current = current
20 with _current.get_lock():
21 _current.value += 1
22 sys.stdout.write('\r\t{} of {}'.format(_current.value, _total.value))
38 global _current
40 _current = multiprocessing.Value('i', 0)
48 initargs=(_current, _total,),
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DStringTokenizer.cs41 int _current; field in Antlr.Runtime.JavaExtensions.StringTokenizer
79 return _current < _tokens.Length; in hasMoreTokens()
84 return _tokens[_current++]; in nextToken()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DStringTokenizer.cs40 int _current; field in Antlr.Runtime.JavaExtensions.StringTokenizer
79 return _current < _tokens.Length; in hasMoreTokens()
84 return _tokens[_current++]; in nextToken()
/external/python/cpython2/Lib/
Dhmac.py100 def _current(self): member in HMAC
116 h = self._current()
122 h = self._current()
/external/icu/icu4c/source/common/
Druleiter.cpp45 c = _current(); in next()
106 UChar32 a = _current(); in skipIgnored()
137 UChar32 RuleCharacterIterator::_current() const { in _current() function in RuleCharacterIterator
Druleiter.h217 UChar32 _current() const;
Ducurr.cpp114 _start = _current = &s; in EquivIterator()
124 const icu::UnicodeString* _current; member in EquivIterator
129 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next()
131 U_ASSERT(_current == _start); in next()
137 _current = _next; in next()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DRuleCharacterIterator.java136 c = _current(); in next()
253 int a = _current(); in skipIgnored()
323 private int _current() { in _current() method in RuleCharacterIterator
/external/python/cpython3/Lib/
Dhmac.py111 def _current(self): member in HMAC
127 h = self._current()
133 h = self._current()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRuleCharacterIterator.java135 c = _current(); in next()
252 int a = _current(); in skipIgnored()
322 private int _current() { in _current() method in RuleCharacterIterator
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
D_invocation_defects_test.py159 self._current = 0
167 if self._current >= self._high:
170 self._current += 1
/external/libchrome/third_party/jinja2/
Dasyncsupport.py224 ctx._before = ctx._current
225 ctx._current = ctx._after
230 return ctx._current, ctx
Druntime.py355 _current = _first_iteration variable in LoopContextBase
476 ctx._before = ctx._current
477 ctx._current = ctx._after
479 return ctx._current, ctx
/external/googletest/googletest/docs/
Dadvanced.md991 when they fail they only abort the _current function_, not the entire test. For