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.cpp134 next_operation_index_to_undo_(kMaxEditOperations - 1), in CFDE_TextEditEngine()
382 if (next_operation_index_to_undo_ != last_insert_position) { in AddOperationRecord()
383 if (next_operation_index_to_undo_ > last_insert_position) { in AddOperationRecord()
398 while (next_operation_index_to_undo_ != last_insert_position) { in AddOperationRecord()
413 next_operation_index_to_undo_ = last_insert_position; in AddOperationRecord()
420 next_operation_index_to_undo_ = max_edit_operations_ - 1; in ClearOperationRecords()
568 return operation_buffer_[next_operation_index_to_undo_] != nullptr && in CanUndo()
569 next_operation_index_to_undo_ != next_operation_index_to_insert_; in CanUndo()
573 size_t idx = (next_operation_index_to_undo_ + 1) % max_edit_operations_; in CanRedo()
582 next_operation_index_to_undo_ = in Redo()
[all …]
Dcfde_texteditengine.h227 size_t next_operation_index_to_undo_; variable