/third_party/toybox/kconfig/lxdialog/ |
D | util.c | 24 struct dialog_info dlg; variable 28 dlg.screen.atr = A_NORMAL; in set_mono_theme() 29 dlg.shadow.atr = A_NORMAL; in set_mono_theme() 30 dlg.dialog.atr = A_NORMAL; in set_mono_theme() 31 dlg.title.atr = A_BOLD; in set_mono_theme() 32 dlg.border.atr = A_NORMAL; in set_mono_theme() 33 dlg.button_active.atr = A_REVERSE; in set_mono_theme() 34 dlg.button_inactive.atr = A_DIM; in set_mono_theme() 35 dlg.button_key_active.atr = A_REVERSE; in set_mono_theme() 36 dlg.button_key_inactive.atr = A_BOLD; in set_mono_theme() [all …]
|
D | checklist.c | 36 wattrset(win, dlg.menubox.atr); in print_item() 42 wattrset(win, selected ? dlg.check_selected.atr in print_item() 43 : dlg.check.atr); in print_item() 46 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item() 48 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in print_item() 65 wattrset(win, dlg.uarrow.atr); in print_arrows() 69 wattrset(win, dlg.menubox.atr); in print_arrows() 80 wattrset(win, dlg.darrow.atr); in print_arrows() 84 wattrset(win, dlg.menubox_border.atr); in print_arrows() 146 dlg.dialog.atr, dlg.border.atr); in dialog_checklist() [all …]
|
D | menubox.c | 77 wattrset(win, dlg.menubox.atr); in do_print_item() 88 wattrset(win, selected ? dlg.item_selected.atr : dlg.item.atr); in do_print_item() 91 wattrset(win, selected ? dlg.tag_key_selected.atr in do_print_item() 92 : dlg.tag_key.atr); in do_print_item() 121 wattrset(win, dlg.uarrow.atr); in print_arrows() 125 wattrset(win, dlg.menubox.atr); in print_arrows() 137 wattrset(win, dlg.darrow.atr); in print_arrows() 141 wattrset(win, dlg.menubox_border.atr); in print_arrows() 213 dlg.dialog.atr, dlg.border.atr); in dialog_menu() 214 wattrset(dialog, dlg.border.atr); in dialog_menu() [all …]
|
D | inputbox.c | 73 dlg.dialog.atr, dlg.border.atr); in dialog_inputbox() 74 wattrset(dialog, dlg.border.atr); in dialog_inputbox() 78 wattrset(dialog, dlg.dialog.atr); in dialog_inputbox() 83 wattrset(dialog, dlg.dialog.atr); in dialog_inputbox() 92 dlg.border.atr, dlg.dialog.atr); in dialog_inputbox() 98 wattrset(dialog, dlg.inputbox.atr); in dialog_inputbox() 131 wattrset(dialog, dlg.inputbox.atr); in dialog_inputbox() 151 wattrset(dialog, dlg.inputbox.atr); in dialog_inputbox()
|
D | textbox.c | 98 wattrset(box, dlg.dialog.atr); in dialog_textbox() 99 wbkgdset(box, dlg.dialog.atr & A_COLOR); in dialog_textbox() 105 dlg.dialog.atr, dlg.border.atr); in dialog_textbox() 107 wattrset(dialog, dlg.border.atr); in dialog_textbox() 111 wattrset(dialog, dlg.dialog.atr); in dialog_textbox() 112 wbkgdset(dialog, dlg.dialog.atr & A_COLOR); in dialog_textbox() 122 attr_clear(box, boxh, boxw, dlg.dialog.atr); in dialog_textbox() 386 wattrset(win, dlg.position_indicator.atr); in print_position() 387 wbkgdset(win, dlg.position_indicator.atr & A_COLOR); in print_position()
|
D | yesno.c | 63 dlg.dialog.atr, dlg.border.atr); in dialog_yesno() 64 wattrset(dialog, dlg.border.atr); in dialog_yesno() 68 wattrset(dialog, dlg.dialog.atr); in dialog_yesno() 73 wattrset(dialog, dlg.dialog.atr); in dialog_yesno()
|
D | dialog.h | 139 extern struct dialog_info dlg;
|
/third_party/skia/third_party/externals/freetype/builds/ |
D | toplevel.mk | 119 ifeq ($(wildcard $(TOP_DIR)/src/dlg/dlg.*),) 120 ifeq ($(wildcard $(TOP_DIR)/subprojects/dlg/*),) 172 $(info Checking out submodule in `subprojects/dlg') 177 $(info Copying files from `subprojects/dlg' to `src/dlg' and `include/dlg') 178 ifeq ($(wildcard include/dlg),) 179 mkdir $(subst /,$(SEP),include/dlg) 181 $(COPY) $(subst /,$(SEP),subprojects/dlg/include/dlg/output.h include/dlg) 182 $(COPY) $(subst /,$(SEP),subprojects/dlg/include/dlg/dlg.h include/dlg) 183 $(COPY) $(subst /,$(SEP),subprojects/dlg/src/dlg/dlg.c src/dlg)
|
D | freetype.mk | 223 include $(SRC_DIR)/dlg/rules.mk
|
/third_party/skia/third_party/externals/freetype/ |
D | autogen.sh | 179 mkdir include/dlg 2> /dev/null 180 cp $DLG_INC_DIR/output.h include/dlg 181 cp $DLG_INC_DIR/dlg.h include/dlg 182 cp $DLG_SRC_DIR/* src/dlg 186 DLG_INC_DIR=subprojects/dlg/include/dlg 187 DLG_SRC_DIR=subprojects/dlg/src/dlg
|
D | .gitmodules | 1 [submodule "dlg"] 2 path = subprojects/dlg 3 url = https://github.com/nyorain/dlg.git
|
D | .gitignore | 3 include/dlg/ 4 src/dlg/dlg.c
|
D | README.git | 71 to execute `autogen.sh` in advance; this script clones the 'dlg' git
|
/third_party/skia/third_party/externals/freetype/src/dlg/ |
D | rules.mk | 18 DLG_DIR := $(SRC_DIR)/dlg 35 DLG_H := $(TOP_DIR)/include/dlg/dlg.h \ 36 $(TOP_DIR)/include/dlg/output.h 45 DLG_OBJ_S := $(OBJ_DIR)/dlg.$O
|
/third_party/python/Lib/msilib/ |
D | __init__.py | 417 def __init__(self, dlg, name): argument 418 self.dlg = dlg 422 add_data(self.dlg.db, "ControlEvent", 423 [(self.dlg.name, self.name, event, argument, 427 add_data(self.dlg.db, "EventMapping", 428 [(self.dlg.name, self.name, event, attribute)]) 431 add_data(self.dlg.db, "ControlCondition", 432 [(self.dlg.name, self.name, action, condition)]) 435 def __init__(self, dlg, name, property): argument 436 self.dlg = dlg [all …]
|
/third_party/lzma/CPP/7zip/UI/FileManager/ |
D | BrowseDialog.cpp | 1080 CComboDialog dlg; in Dlg_CreateFolder() local 1081 LangString(IDS_CREATE_FOLDER, dlg.Title); in Dlg_CreateFolder() 1082 LangString(IDS_CREATE_FOLDER_NAME, dlg.Static); in Dlg_CreateFolder() 1083 LangString(IDS_CREATE_FOLDER_DEFAULT_NAME, dlg.Value); in Dlg_CreateFolder() 1084 if (dlg.Create(wnd) != IDOK) in Dlg_CreateFolder() 1086 destName = dlg.Value; in Dlg_CreateFolder()
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | no-copyright | 63 subprojects/dlg
|
/third_party/icu/icu4c/source/test/testmap/ |
D | testmap.dsp | 99 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
/third_party/python/Doc/library/ |
D | msilib.rst | 447 .. class:: Control(dlg, name) 449 Base class of the dialog controls. *dlg* is the dialog object the control 468 .. class:: RadioButtonGroup(dlg, name, property)
|
/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
D | ChangeLog.210 | 1511 * builds/toplevel.mk: Use rules for handling 'dlg'. 1528 Move 'dlg' submodule to `subprojects` directory. 2021 [dlg] Move the headers to include/dlg to simplify their use. 2023 * autogen.sh, builds/toplevel.mk: Copy headers to include/dlg. 2027 * src/dlg/rules.mk, .gitignore: Updated. 2488 * submodules/dlg: Updated to commit 9f0c8b22. 2496 Improve setup for 'dlg' library. 2501 * builds/toplevel.mk: Move code block to handle 'dlg' stuff into 2522 [dlg] Fix compiler warnings. 2524 * src/dlg/dlgwrap.c: Duplicate some feature test macros from [all …]
|
/third_party/skia/third_party/externals/icu/source/extra/scrptrun/ |
D | srtest.dsp | 107 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
/third_party/icu/icu4c/source/test/thaitest/ |
D | thaitest.dsp | 98 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
/third_party/mbedtls/scripts/data_files/ |
D | vs6-app-template.dsp | 98 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
/third_party/icu/icu4c/source/extra/scrptrun/ |
D | srtest.dsp | 107 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
/third_party/skia/third_party/externals/libpng/contrib/visupng/ |
D | VisualPng.dsp | 136 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|