Home
last modified time | relevance | path

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

/external/pdfium/xfa/fde/
Dcfde_texteditengine.cpp147 max_edit_operations_(kMaxEditOperations), in CFDE_TextEditEngine()
162 operation_buffer_.resize(max_edit_operations_);
184 max_edit_operations_ = max; in SetMaxEditOperationsForTesting()
350 ? max_edit_operations_ - 1 in AddOperationRecord()
368 last_insert_position = max_edit_operations_ - 1; in AddOperationRecord()
381 if (last_insert_position >= max_edit_operations_) in AddOperationRecord()
386 (last_insert_position + 1) % max_edit_operations_; in AddOperationRecord()
394 next_operation_index_to_undo_ = max_edit_operations_ - 1; in ClearOperationRecords()
548 size_t idx = (next_operation_index_to_undo_ + 1) % max_edit_operations_; in CanRedo()
558 (next_operation_index_to_undo_ + 1) % max_edit_operations_; in Redo()
[all …]
Dcfde_texteditengine.h223 size_t max_edit_operations_; variable