Home
last modified time | relevance | path

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

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DRuleCharacterIterator.java61 private int bufPos; field in RuleCharacterIterator
147 bufPos = 0; in next()
219 return new Object[] {buf, new int[] {pos.getIndex(), bufPos}}; in getPos()
225 v[1] = bufPos; in getPos()
239 bufPos = v[1]; in setPos()
274 return new String(buf, bufPos, buf.length - bufPos); in lookahead()
290 bufPos += count; in jumpahead()
291 if (bufPos > buf.length) { in jumpahead()
294 if (bufPos == buf.length) { in jumpahead()
325 return UTF16.charAt(buf, 0, buf.length, bufPos); in _current()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRuleCharacterIterator.java60 private int bufPos; field in RuleCharacterIterator
146 bufPos = 0; in next()
218 return new Object[] {buf, new int[] {pos.getIndex(), bufPos}}; in getPos()
224 v[1] = bufPos; in getPos()
238 bufPos = v[1]; in setPos()
273 return new String(buf, bufPos, buf.length - bufPos); in lookahead()
289 bufPos += count; in jumpahead()
290 if (bufPos > buf.length) { in jumpahead()
293 if (bufPos == buf.length) { in jumpahead()
324 return UTF16.charAt(buf, 0, buf.length, bufPos); in _current()
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Druleiter.cpp31 bufPos(0) in RuleCharacterIterator()
56 bufPos = 0; in next()
94 p.bufPos = bufPos; in getPos()
100 bufPos = p.bufPos; in setPos()
118 buf->extract(bufPos, maxLookAhead, result); in lookahead()
139 return buf->char32At(bufPos); in _current()
148 bufPos += count; in _advance()
149 if (bufPos == buf->length()) { in _advance()
Druleiter.h63 int32_t bufPos; variable
139 int32_t bufPos; member
/third_party/icu/icu4c/source/common/
Druleiter.cpp31 bufPos(0) in RuleCharacterIterator()
56 bufPos = 0; in next()
94 p.bufPos = bufPos; in getPos()
100 bufPos = p.bufPos; in setPos()
118 buf->extract(bufPos, maxLookAhead, result); in lookahead()
139 return buf->char32At(bufPos); in _current()
148 bufPos += count; in _advance()
149 if (bufPos == buf->length()) { in _advance()
Druleiter.h63 int32_t bufPos; variable
139 int32_t bufPos; member
/third_party/flutter/skia/third_party/externals/icu/source/common/
Druleiter.cpp31 bufPos(0) in RuleCharacterIterator()
56 bufPos = 0; in next()
94 p.bufPos = bufPos; in getPos()
100 bufPos = p.bufPos; in setPos()
118 buf->extract(bufPos, maxLookAhead, result); in lookahead()
139 return buf->char32At(bufPos); in _current()
148 bufPos += count; in _advance()
149 if (bufPos == buf->length()) { in _advance()
Druleiter.h63 int32_t bufPos; variable
139 int32_t bufPos; member
/third_party/node/deps/icu-small/source/common/
Druleiter.cpp31 bufPos(0) in RuleCharacterIterator()
56 bufPos = 0; in next()
94 p.bufPos = bufPos; in getPos()
100 bufPos = p.bufPos; in setPos()
118 buf->extract(bufPos, maxLookAhead, result); in lookahead()
139 return buf->char32At(bufPos); in _current()
148 bufPos += count; in _advance()
149 if (bufPos == buf->length()) { in _advance()
Druleiter.h63 int32_t bufPos; variable
139 int32_t bufPos; member
/third_party/node/deps/npm/node_modules/tar/lib/
Dreplace.js60 for (let bufPos = 0, bytes = 0; bufPos < 512; bufPos += bytes) {
62 fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos
118 let bufPos = 0 variable
123 bufPos += bytes
124 if (bufPos < 512 && bytes)
126 fd, headBuf, bufPos, headBuf.length - bufPos,
127 position + bufPos, onread
134 if (bufPos < 512)
151 bufPos = 0
/third_party/openh264/test/api/
DBaseThreadDecoderTest.cpp42 static int32_t ReadFrame (uint8_t* pBuf, const int32_t& iFileSize, const int32_t& bufPos) { in ReadFrame() argument
43 int32_t bytes_available = iFileSize - bufPos; in ReadFrame()
47 uint8_t* ptr = pBuf + bufPos; in ReadFrame()
278 int32_t bufPos = 0; in ThreadDecodeFile() local
282 int32_t frameSize = ReadFrame (buf.data(), fileSize, bufPos); in ThreadDecodeFile()
286 uint8_t* frame_ptr = buf.data() + bufPos; in ThreadDecodeFile()
291 bufPos += frameSize; in ThreadDecodeFile()
/third_party/openh264/codec/console/dec/src/
Dh264dec.cpp105 int32_t readPicture (uint8_t* pBuf, const int32_t& iFileSize, const int32_t& bufPos, uint8_t*& pSps… in readPicture() argument
107 int32_t bytes_available = iFileSize - bufPos; in readPicture()
111 uint8_t* ptr = pBuf + bufPos; in readPicture()