Home
last modified time | relevance | path

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

/external/zlib/src/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()
/external/chromium_org/tools/valgrind/
Dscan-build.py170 self._current = 0
178 if self._tracked_lines[self._current] in line:
179 self._current = self._current + 1
180 if self._current == len(self._tracked_lines):
181 self._current = 0
184 self._current = 0
/external/antlr/antlr-3.4/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/antlr-3.4/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/icu/icu4c/source/common/
Druleiter.cpp43 c = _current(); in next()
104 UChar32 a = _current(); in skipIgnored()
135 UChar32 RuleCharacterIterator::_current() const { in _current() function in RuleCharacterIterator
Druleiter.h215 UChar32 _current() const;
/external/chromium_org/third_party/icu/source/common/
Druleiter.cpp43 c = _current(); in next()
104 UChar32 a = _current(); in skipIgnored()
135 UChar32 RuleCharacterIterator::_current() const { in _current() function in RuleCharacterIterator
Druleiter.h215 UChar32 _current() const;
/external/icu/icu4c/source/i18n/
Ducurr.cpp130 _start = _current = &s; in EquivIterator()
140 const icu::UnicodeString* _current; member in EquivIterator
145 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next()
147 U_ASSERT(_current == _start); in next()
153 _current = _next; in next()
/external/chromium_org/third_party/icu/source/i18n/
Ducurr.cpp130 _start = _current = &s; in EquivIterator()
140 const icu::UnicodeString* _current; member in EquivIterator
145 const icu::UnicodeString* _next = (const icu::UnicodeString*) _hash.get(*_current); in next()
147 U_ASSERT(_current == _start); in next()
153 _current = _next; in next()
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
Dmootools-1.2.2-core-nc.js1052 this._current = $empty;
1054 delete this._current; delete this.caller;
1108 …if (method._protected && this._current == null) throw new Error('The method "' + key + '" cannot b…
1109 var caller = this.caller, current = this._current;
1110 this.caller = current; this._current = arguments.callee;
1112 this._current = current; this.caller = caller;
Dconcat-jquery-mootools-prototype.js5428 this._current = $empty;
5430 delete this._current; delete this.caller;
5484 …if (method._protected && this._current == null) throw new Error('The method "' + key + '" cannot b…
5485 var caller = this.caller, current = this._current;
5486 this.caller = current; this._current = arguments.callee;
5488 this._current = current; this.caller = caller;
/external/chromium_org/gpu/command_buffer/common/
Dgles2_cmd_format_autogen.h8878 void Init(GLenum _current, GLenum _other) { in Init()
8880 current = _current; in Init()
8884 void* Set(void* cmd, GLenum _current, GLenum _other) { in Set()
8885 static_cast<ValueType*>(cmd)->Init(_current, _other); in Set()