Home
last modified time | relevance | path

Searched refs:gap_position_ (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/fde/
Dcfde_texteditengine.cpp140 gap_position_(0), in CFDE_TextEditEngine()
173 gap_position_ = 0; in Clear()
194 if (idx < gap_position_) { in AdjustGap()
196 (gap_position_ - idx) * char_size); in AdjustGap()
197 gap_position_ = idx; in AdjustGap()
198 } else if (idx > gap_position_) { in AdjustGap()
199 memmove(content_.data() + gap_position_, in AdjustGap()
200 content_.data() + gap_position_ + gap_size_, in AdjustGap()
201 (idx - gap_position_) * char_size); in AdjustGap()
202 gap_position_ = idx; in AdjustGap()
[all …]
Dcfde_texteditengine.h212 size_t gap_position_; variable