Home
last modified time | relevance | path

Searched refs:oldpos (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/tools/genrb/
Dreslist.cpp485 SRBRoot::mapKey(int32_t oldpos) const { in mapKey()
488 return oldpos; in mapKey()
497 if (oldpos < map[i].oldpos) { in mapKey()
503 assert(oldpos == map[start].oldpos); in mapKey()
1301 int32_t lPos = ((const KeyMapEntry *)l)->oldpos; in compareKeySuffixes()
1302 int32_t rPos = ((const KeyMapEntry *)r)->oldpos; in compareKeySuffixes()
1333 return compareInt32(((const KeyMapEntry *)l)->oldpos, ((const KeyMapEntry *)r)->oldpos); in compareKeyOldpos()
1352 map[i].oldpos = in compactKeys()
1360 map[i].oldpos = (int32_t)(keys - fKeys); in compactKeys()
1383 map[i].newpos = map[i].oldpos; in compactKeys()
[all …]
Dreslist.h66 int32_t oldpos, newpos; member
88 int32_t mapKey(int32_t oldpos) const;
/external/bsdiff/
Dbspatch.cc360 int64_t oldpos = 0; in bspatch() local
389 if ((i = oldpos) < 0) { in bspatch()
405 if ((old_file_pos = oldpos + ctrl[0]) > oldsize) in bspatch()
437 oldpos += ctrl[0]; in bspatch()
439 if (oldpos > static_cast<int64_t>(oldsize)) { in bspatch()
442 ret = ReadBZ2AndWriteAll(new_file, &dstream, oldpos - oldsize, in bspatch()
462 oldpos += ctrl[2]; in bspatch()
/external/libvterm/src/
Dstate.c37 static void updatecursor(VTermState *state, VTermPos *oldpos, int cancel_phantom) in updatecursor() argument
39 if(state->pos.col == oldpos->col && state->pos.row == oldpos->row) in updatecursor()
46 …if((*state->callbacks->movecursor)(state->pos, *oldpos, state->mode.cursor_visible, state->cbdata)) in updatecursor()
205 VTermPos oldpos = state->pos; in on_text() local
344 updatecursor(state, &oldpos, 0); in on_text()
353 VTermPos oldpos = state->pos; in on_control() local
430 updatecursor(state, &oldpos, 1); in on_control()
558 VTermPos oldpos = state->pos; in savecursor() local
568 updatecursor(state, &oldpos, 1); in savecursor()
681 VTermPos oldpos = state->pos; in on_escape() local
[all …]
Dscreen.c383 static int movecursor(VTermPos pos, VTermPos oldpos, int visible, void *user) in movecursor() argument
388 return (*screen->callbacks->movecursor)(pos, oldpos, visible, screen->cbdata); in movecursor()
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
DCharMatcher.java1010 int oldpos = 0;
1012 buf.append(string, oldpos, pos);
1014 oldpos = pos + 1;
1015 pos = indexIn(string, oldpos);
1018 buf.append(string, oldpos, len);
/external/guava/guava/src/com/google/common/base/
DCharMatcher.java1167 int oldpos = 0;
1169 buf.append(string, oldpos, pos);
1171 oldpos = pos + 1;
1172 pos = indexIn(string, oldpos);
1175 buf.append(string, oldpos, len);
/external/pdfium/third_party/freetype/src/cid/
Dcidload.c583 FT_ULong oldpos = FT_STREAM_POS(); in cid_hex_to_binary() local
584 FT_ULong size = stream->size - oldpos; in cid_hex_to_binary()
596 plimit = p + FT_STREAM_POS() - oldpos; in cid_hex_to_binary()
/external/libvterm/include/
Dvterm.h187 int (*movecursor)(VTermPos pos, VTermPos oldpos, int visible, void *user);
239 int (*movecursor)(VTermPos pos, VTermPos oldpos, int visible, void *user);
/external/python/cpython2/Lib/test/
Dtest_gzip.py197 oldpos = f.tell()
201 f.seek(oldpos) # negative seek
Dtest_codeccallbacks.py11 oldpos = self.pos
12 realpos = oldpos
19 return (u"<?>", oldpos)
/external/python/cpython2/Lib/email/
D_parseaddr.py230 oldpos = self.pos
245 self.pos = oldpos
/external/python/cpython2/Lib/
Drfc822.py557 oldpos = self.pos
572 self.pos = oldpos
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java1455 int oldpos = indexes.position(); in ARRAY() local
1471 indexes.position(oldpos); in ARRAY()
1755 int oldpos = toUTable.position(); in matchToU() local
1757 toUTable.position(oldpos); in matchToU()
3674 int oldpos = fromUTableUChars.position(); in matchFromU() local
3676 fromUTableUChars.position(oldpos); in matchFromU()
3677 oldpos = fromUTableValues.position(); in matchFromU()
3679 fromUTableValues.position(oldpos); in matchFromU()
/external/python/cpython2/Objects/
Dunicodeobject.c4213 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v); in PyUnicode_DecodeCharmap() local
4222 p = PyUnicode_AS_UNICODE(v) + oldpos; in PyUnicode_DecodeCharmap()
4247 Py_ssize_t oldpos = p - PyUnicode_AS_UNICODE(v); in PyUnicode_DecodeCharmap() local
4257 p = PyUnicode_AS_UNICODE(v) + oldpos; in PyUnicode_DecodeCharmap()