Home
last modified time | relevance | path

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

/external/pdfium/xfa/fde/
Dcfde_texteditengine.cpp145 next_operation_index_to_undo_(kMaxEditOperations - 1), in CFDE_TextEditEngine()
356 if (next_operation_index_to_undo_ != last_insert_position) { in AddOperationRecord()
357 if (next_operation_index_to_undo_ > last_insert_position) { in AddOperationRecord()
372 while (next_operation_index_to_undo_ != last_insert_position) { in AddOperationRecord()
387 next_operation_index_to_undo_ = last_insert_position; in AddOperationRecord()
394 next_operation_index_to_undo_ = max_edit_operations_ - 1; in ClearOperationRecords()
543 return operation_buffer_[next_operation_index_to_undo_] != nullptr && in CanUndo()
544 next_operation_index_to_undo_ != next_operation_index_to_insert_; in CanUndo()
548 size_t idx = (next_operation_index_to_undo_ + 1) % max_edit_operations_; in CanRedo()
557 next_operation_index_to_undo_ = in Redo()
[all …]
Dcfde_texteditengine.h220 size_t next_operation_index_to_undo_; variable