Home
last modified time | relevance | path

Searched refs:modal (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/weex-loader/test/spec/
Dtoast.js1 var modal variable
3 modal = __weex_require__('@weex-module/modal')
7 modal.toast({message: msg})
Dj.we15 import modal from '@weex-module/modal'
19 modal.toast({'message': 'ready'})
Dl.we17 import modal from '@weex-module/modal'
21 modal.toast({message: this.name})
Dk.we32 modal = require '@weex-module/modal'
36 modal.toast({'message': 'ready'})
/third_party/python/Lib/idlelib/
Dtextview.py108 def __init__(self, parent, title, contents, modal=True, wrap=WORD, argument
136 self.is_modal = modal
150 def view_text(parent, title, contents, modal=True, wrap='word', _utest=False): argument
161 return ViewWindow(parent, title, contents, modal, wrap=wrap, _utest=_utest)
164 def view_file(parent, title, filename, encoding, modal=True, wrap='word', argument
183 return view_text(parent, title, contents, modal, wrap=wrap,
/third_party/libphonenumber/migrator/migrator-servlet/src/main/webapp/stylesheets/
Dservlet-main.css102 .modal-backdrop {
113 .modal-content {
125 .modal-content .body {
130 .modal-content li {
134 .modal-content button {
/third_party/python/Tools/scripts/
Dpatchcheck.py29 def status(message, modal=False, info=None): argument
36 if not modal and not info:
214 @status("Docs modified", modal=True)
220 @status("Misc/ACKS updated", modal=True)
226 @status("Misc/NEWS.d updated with `blurb`", modal=True)
232 @status("configure regenerated", modal=True, info=str)
240 @status("pyconfig.h.in regenerated", modal=True, info=str)
/third_party/python/Lib/idlelib/idle_test/
Dtest_textview.py57 view = VW(root, 'Title', 'test text', modal=False)
64 view = VW(root, 'Title', 'test text', modal=False)
158 view = tv.view_text(root, 'Title', 'test text', modal=False)
164 view = tv.view_file(root, 'Title', __file__, 'ascii', modal=False)
173 view = tv.view_file(root, 'Title', 'abc.xyz', 'ascii', modal=False)
180 view = tv.view_file(root, 'Title', fn, 'ascii', modal=False)
185 view = tv.view_text(root, 'Title', 'test', modal=False, wrap='none')
/third_party/python/Tools/pynche/
DPyncheWidget.py27 modal = self.__modal = not not master
32 if modal:
55 if not modal:
95 modal and self.__bell or self.__quit)
100 if not modal:
/third_party/python/Lib/distutils/command/
Dbdist_msi.py429 modal = 3 # visible | modal
470 fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
482 user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
495 exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
559 costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
584 seldlg = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal, title,
629 cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
656 whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
701 maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dbottom_sheet.dart34 /// * _Modal_. A modal bottom sheet is an alternative to a menu or a dialog and
41 /// [Scaffold.bottomSheet], and a modal bottom sheet with [showModalBottomSheet].
46 /// non-modal "persistent" bottom sheets.
47 /// * [showModalBottomSheet], which can be used to display a modal bottom
55 /// [showModalBottomSheet], for modal bottom sheets.
381 /// Shows a modal material design bottom sheet.
383 /// A modal bottom sheet is an alternative to a menu or a dialog and prevents
405 /// that a modal [BottomSheet] needs to be displayed above all other content
409 /// [Navigator.pop] when the modal bottom sheet was closed.
416 /// non-modal bottom sheets.
[all …]
Dpage.dart11 /// A modal route that replaces the entire screen with a platform-adaptive
22 /// By default, when a modal route is replaced by another, the previous route
27 /// fullscreen modal dialog. On iOS, those pages animate from the bottom to the
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dmodal_barrier.dart18 /// The modal barrier is the scrim that is rendered behind each route, which
23 /// usually darkened by the modal barrier.
56 /// Whether the modal barrier semantics are included in the semantics tree.
82 // On Android, the back button is used to dismiss a modal. On iOS, some
83 // modal barriers are not dismissible in accessibility mode.
111 /// The modal barrier is the scrim that is rendered behind each route, which
116 /// usually darkened by the modal barrier.
160 /// Whether the modal barrier semantics are included in the semantics tree.
Dshortcuts.dart147 this.modal = false,
154 /// Setting [modal] to true is the equivalent of always handling any key given
157 final bool modal;
223 properties.add(FlagProperty('modal', value: modal, ifTrue: 'modal', defaultValue: false));
337 return manager.handleKeypress(node.context, event) || manager.modal;
/third_party/gettext/gettext-tools/tests/
Dxgettext-glade-154 <modal>False</modal>
440 <modal>True</modal>
458 <modal>False</modal>
550 <modal>False</modal>
699 <modal>False</modal>
895 <modal>False</modal>
945 <modal>False</modal>
1109 <modal>False</modal>
1150 <modal>False</modal>
1239 <modal>False</modal>
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/
Dmodal_bottom_sheet_demo.dart10 static const String routeName = '/material/modal-bottom-sheet';
27 child: Text('This is the modal bottom sheet. Slide down to dismiss.',
/third_party/cef/patch/patches/
Dmessage_loop.patch20 + // OS modal loop, i.e. in the context of a windows API call like MessageBox.
21 + // This is to ensure that these messages are peeked out by the OS modal loop.
70 + // which enter a modal message loop.
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
DBundleItemCreationDialog.java65 public BundleItemCreationDialog(RBManager rbm, JFrame frame, String title, boolean modal) { in BundleItemCreationDialog() argument
66 super(frame, title, modal); in BundleItemCreationDialog()
73 …dleItemCreationDialog(String groupName, RBManager rbm, JFrame frame, String title, boolean modal) { in BundleItemCreationDialog() argument
74 super(frame, title, modal); in BundleItemCreationDialog()
81 …ndleItemCreationDialog(BundleItem item, RBManager rbm, JFrame frame, String title, boolean modal) { in BundleItemCreationDialog() argument
82 super(frame, title, modal); in BundleItemCreationDialog()
DBundleGroupCreationDialog.java44 public BundleGroupCreationDialog(RBManager rbm, JFrame frame, String title, boolean modal) { in BundleGroupCreationDialog() argument
45 super(frame, title, modal); in BundleGroupCreationDialog()
DBundleGroupEditDialog.java43 public BundleGroupEditDialog(BundleGroup group, JFrame frame, String title, boolean modal) { in BundleGroupEditDialog() argument
44 super(frame, title, modal); in BundleGroupEditDialog()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dmodal_barrier_test.dart95 '/modal': (BuildContext context) => SecondWidget(),
120 '/modal': (BuildContext context) => SecondWidget(),
145 '/modal': (BuildContext context) => SecondWidget(),
171 '/modal': (BuildContext context) => Stack(
211 '/modal': (BuildContext context) => Stack(
301 Navigator.pushNamed(context, '/modal');
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/
Duserdatarequest.h23 bool modal = false, Qt::WindowFlags fl = 0);
Dscanresults.h23 bool modal = false, Qt::WindowFlags fl = 0);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/
Duserdatarequest.h23 bool modal = false, Qt::WindowFlags fl = 0);
/third_party/flutter/flutter/packages/flutter/test/material/
Dbottom_sheet_test.dart14 testWidgets('Tapping on a modal BottomSheet should not dismiss it', (WidgetTester tester) async {
48 testWidgets('Tapping outside a modal BottomSheet should dismiss it', (WidgetTester tester) async {
171 testWidgets('modal BottomSheet has no top MediaQuery', (WidgetTester tester) async {
222 testWidgets('modal BottomSheet has semantics', (WidgetTester tester) async {
302 testWidgets('modal BottomSheet with scrollController has semantics', (WidgetTester tester) async {

1234