Home
last modified time | relevance | path

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

12

/third_party/python/Tools/c-analyzer/c_parser/parser/
D_info.py49 def __init__(self, filename, _current=None): argument
53 if isinstance(_current, str):
54 _current = TextInfo(_current)
55 self._current = _current
57 self._start = _current.start if _current else -1
68 if self._current is None:
70 return self._current.start
74 if self._current is None:
76 return self._current.end
80 if self._current is None:
[all …]
/third_party/nghttp2/third-party/llhttp/src/
Dllhttp.c1124 state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_start; in llhttp__internal_init()
1133 switch ((llparse_state_t) (intptr_t) state->_current) { in llhttp__internal__run()
1172 …state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_invoke_llhttp__after_message_complete; in llhttp__internal__run()
1360 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1422 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1488 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1953 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
2081 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
2278 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
2288 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
[all …]
/third_party/zlib/contrib/dotzlib/DotZLib/
DChecksumImpl.cs25 protected uint _current; field in DotZLib.ChecksumGeneratorBase
33 _current = 0; in ChecksumGeneratorBase()
42 _current = initialValue; in ChecksumGeneratorBase()
48 public void Reset() { _current = 0; } in Reset()
53 public uint Value { get { return _current; } }
140_current = crc32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update()
191_current = adler32(_current, hData.AddrOfPinnedObject().ToInt32()+offset, (uint)count); in Update()
/third_party/flutter/engine/flutter/testing/scenario_app/lib/src/
Danimated_color_square.dart79 _NumberSwinger(this._begin, this._end, [this._current])
83 _current ??= _begin;
90 T get current => _current;
91 T _current;
96 if (_current >= _end) {
98 } else if (_current <= _begin) {
101 _current = _up ? _current + 1 : _current - 1;
102 return _current;
/third_party/node/deps/llhttp/src/
Dllhttp.c934 state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_start; in llhttp__internal_init()
943 switch ((llparse_state_t) (intptr_t) state->_current) { in llhttp__internal__run()
982 …state->_current = (void*) (intptr_t) s_n_llhttp__internal__n_invoke_llhttp__after_message_complete; in llhttp__internal__run()
1519 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1634 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1831 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1841 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1937 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
1947 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
5205 state->_current = (void*) (intptr_t) s_error; in llhttp__internal__run()
[all …]
/third_party/flutter/flutter/packages/flutter_test/lib/src/
Dall_elements.dart32 Element _current;
37 Element get current => _current;
44 _current = _stack.removeLast();
46 _stack.addAll(_reverseChildrenOf(_current, skipOffstage));
/third_party/node/deps/icu-small/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;
/third_party/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;
/third_party/skia/third_party/externals/icu/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;
/third_party/flutter/skia/third_party/externals/icu/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;
/third_party/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
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DRuleCharacterIterator.java136 c = _current(); in next()
253 int a = _current(); in skipIgnored()
323 private int _current() { in _current() method in RuleCharacterIterator
/third_party/python/Lib/
Dhmac.py139 def _current(self): member in HMAC
158 h = self._current()
164 h = self._current()
/third_party/node/tools/inspector_protocol/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
/third_party/jinja2/
Druntime.py397 _current: t.Any = missing variable in LoopContext
562 self._before = self._current
563 self._current = rv
650 self._before = self._current
651 self._current = rv
Dasyncsupport.py247 self._before = self._current
248 self._current = rv
/third_party/skia/third_party/externals/jinja2/
Dasyncsupport.py247 self._before = self._current
248 self._current = rv
Druntime.py389 _current = missing variable in LoopContext
548 self._before = self._current
549 self._current = rv
/third_party/node/deps/llhttp/include/
Dllhttp.h29 void* _current; member
/third_party/flutter/engine/flutter/lib/snapshot/
Dfuchsia_compilation_trace.txt158 dart:core,_SyncIterator,get:_current
159 dart:core,_SyncIterator,set:_current
271 dart:core,_FixedSizeArrayIterator,get:_current
272 dart:core,_FixedSizeArrayIterator,set:_current
279 dart:core,_ImmutableMapKeyIterator,set:_current
467 dart:collection,_HashSetIterator,get:_current
468 dart:collection,_HashSetIterator,set:_current
897 dart:async,Zone,get:_current
1135 dart:_internal,ListIterator,get:_current
1136 dart:_internal,ListIterator,set:_current

12