Searched refs:_selection (Results 1 – 6 of 6) sorted by relevance
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | editable.dart | 215 _selection = selection, 328 TextPosition(offset: _selection.start, affinity: _selection.affinity), 344 TextPosition(offset: _selection.end, affinity: _selection.affinity), 865 TextSelection get selection => _selection; 866 TextSelection _selection; 868 if (_selection == value) 870 _selection = value; 1040 if (selectionEnabled && _selection?.isValid == true) { 1041 config.textSelection = _selection; 1042 if (_textPainter.getOffsetBefore(_selection.extentOffset) != null) { [all …]
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 1425 def _selection(self, selop, items): member in Treeview 1434 self._selection("set", items) 1439 self._selection("add", items) 1444 self._selection("remove", items) 1449 self._selection("toggle", items)
|
/third_party/flutter/flutter/packages/flutter/lib/ |
D | foundation.dart | 32 // dynamic _selection;
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | popup_menu.dart | 25 // dynamic _selection; 807 /// values and setting a `_selection` field based on the selection. 813 /// // This menu button widget updates a _selection field (of type WhyFarther, 816 /// onSelected: (WhyFarther result) { setState(() { _selection = result; }); },
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | text_selection.dart | 371 TextSelection get _selection => _value.selection; 504 if ((_selection.isCollapsed && position == _TextSelectionHandlePosition.end) || 515 selection: _selection, 528 renderObject.getEndpointsForSelection(_selection);
|
D | widget_inspector.dart | 2368 : _selection = selection, 2371 InspectorSelection get selection => _selection; 2372 InspectorSelection _selection; 2374 if (value != _selection) { 2375 _selection = value;
|