/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_special_button.cpp | 16 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_PushButton() argument 17 : CPWL_Button(cp, std::move(pAttachedData)) {} in CPWL_PushButton() 28 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_CheckBox() argument 29 : CPWL_Button(cp, std::move(pAttachedData)) {} in CPWL_CheckBox() 48 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_RadioButton() argument 49 : CPWL_Button(cp, std::move(pAttachedData)) {} in CPWL_RadioButton()
|
D | cpwl_special_button.h | 18 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData); 29 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData); 47 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_button.cpp | 13 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_Button() argument 14 : CPWL_Wnd(cp, std::move(pAttachedData)) { in CPWL_Button()
|
D | cpwl_combo_box.h | 21 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData); 37 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData); 51 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_combo_box.cpp | 33 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_CBListBox() argument 34 : CPWL_ListBox(cp, std::move(pAttachedData)) {} in CPWL_CBListBox() 108 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_CBButton() argument 109 : CPWL_Wnd(cp, std::move(pAttachedData)) {} in CPWL_CBButton() 166 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_ComboBox() argument 167 : CPWL_Wnd(cp, std::move(pAttachedData)) { in CPWL_ComboBox()
|
D | cpwl_caret.cpp | 19 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_Caret() argument 20 : CPWL_Wnd(cp, std::move(pAttachedData)) {} in CPWL_Caret()
|
D | cpwl_button.h | 18 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_scroll_bar.h | 49 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData, 121 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData,
|
D | cpwl_caret.h | 18 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_edit_ctrl.cpp | 22 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_EditCtrl() argument 23 : CPWL_Wnd(cp, std::move(pAttachedData)), in CPWL_EditCtrl()
|
D | cpwl_edit_ctrl.h | 28 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_list_box.h | 43 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData);
|
D | cpwl_list_box.cpp | 70 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) in CPWL_ListBox() argument 71 : CPWL_Wnd(cp, std::move(pAttachedData)), in CPWL_ListBox()
|
/external/pdfium/fpdfsdk/formfiller/ |
D | cffl_pushbutton.cpp | 23 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 24 auto pWnd = pdfium::MakeUnique<CPWL_PushButton>(cp, std::move(pAttachedData)); in NewPWLWindow()
|
D | cffl_radiobutton.cpp | 26 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 28 pdfium::MakeUnique<CPWL_RadioButton>(cp, std::move(pAttachedData)); in NewPWLWindow()
|
D | cffl_checkbox.cpp | 27 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 28 auto pWnd = pdfium::MakeUnique<CPWL_CheckBox>(cp, std::move(pAttachedData)); in NewPWLWindow()
|
D | cffl_pushbutton.h | 22 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_radiobutton.h | 24 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_checkbox.h | 24 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_listbox.cpp | 44 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 45 auto pWnd = pdfium::MakeUnique<CPWL_ListBox>(cp, std::move(pAttachedData)); in NewPWLWindow()
|
D | cffl_listbox.h | 27 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_textfield.cpp | 86 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 87 auto pWnd = pdfium::MakeUnique<CPWL_Edit>(cp, std::move(pAttachedData)); in NewPWLWindow()
|
D | cffl_textfield.h | 32 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_combobox.h | 34 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData)
|
D | cffl_combobox.cpp | 46 std::unique_ptr<IPWL_SystemHandler::PerWindowData> pAttachedData) { in NewPWLWindow() argument 47 auto pWnd = pdfium::MakeUnique<CPWL_ComboBox>(cp, std::move(pAttachedData)); in NewPWLWindow()
|