OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SelectionModel
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/
selection_model.cc
12
SelectionModel
::
SelectionModel
()
16
SelectionModel
::
SelectionModel
(size_t position, LogicalCursorDirection affinity)
20
SelectionModel
::
SelectionModel
(const Range& selection,
25
bool
SelectionModel
::operator==(const
SelectionModel
& sel) const {
30
std::string
SelectionModel
::ToString() const {
selection_model.h
33
//
SelectionModel
is used to represent the logical selection and visual
59
class GFX_EXPORT
SelectionModel
{
61
// Create a default
SelectionModel
to be overwritten later.
62
SelectionModel
();
63
// Create a
SelectionModel
representing a caret |position| without a
67
SelectionModel
(size_t position, LogicalCursorDirection affinity);
68
// Create a
SelectionModel
representing a selection (which may be empty).
70
SelectionModel
(const Range& selection, LogicalCursorDirection affinity);
76
bool operator==(const
SelectionModel
& sel) const;
77
bool operator!=(const
SelectionModel
& sel) const { return !(*this == sel);
[
all
...]
Completed in 1358 milliseconds