OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EditableType
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditingBoundary.h
37
enum
EditableType
{
VisibleUnits.h
57
VisiblePosition previousLinePosition(const VisiblePosition&, int lineDirectionPoint,
EditableType
= ContentIsEditable);
58
VisiblePosition nextLinePosition(const VisiblePosition&, int lineDirectionPoint,
EditableType
= ContentIsEditable);
htmlediting.h
56
Node* highestEditableRoot(const Position&,
EditableType
= ContentIsEditable);
156
bool isEditablePosition(const Position&,
EditableType
= ContentIsEditable, EUpdateStyle = UpdateStyle);
157
bool isRichlyEditablePosition(const Position&,
EditableType
= ContentIsEditable);
222
Element* editableRootForPosition(const Position&,
EditableType
= ContentIsEditable);
htmlediting.cpp
114
Node* highestEditableRoot(const Position& position,
EditableType
editableType
)
120
Node* highestRoot = editableRootForPosition(position,
editableType
);
129
if (node->rendererIsEditable(
editableType
))
152
bool isEditablePosition(const Position& p,
EditableType
editableType
, EUpdateStyle updateStyle)
165
return node->rendererIsEditable(
editableType
);
175
bool isRichlyEditablePosition(const Position& p,
EditableType
editableType
)
184
return node->rendererIsRichlyEditable(
editableType
);
[
all
...]
VisibleUnits.cpp
52
static Node* previousLeafWithSameEditability(Node* node,
EditableType
editableType
)
54
bool editable = node->rendererIsEditable(
editableType
);
57
if (editable == node->rendererIsEditable(
editableType
))
64
static Node* nextLeafWithSameEditability(Node* node,
EditableType
editableType
= ContentIsEditable)
69
bool editable = node->rendererIsEditable(
editableType
);
72
if (editable == node->rendererIsEditable(
editableType
))
80
static Position previousRootInlineBoxCandidatePosition(Node* node, const VisiblePosition& visiblePosition,
EditableType
editableType
)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
Node.h
339
Element* rootEditableElement(
EditableType
) const;
427
bool rendererIsEditable(
EditableType
editableType
= ContentIsEditable, UserSelectAllTreatment treatment = UserSelectAllIsAlwaysNonEditable) const
429
switch (
editableType
) {
439
bool rendererIsRichlyEditable(
EditableType
editableType
= ContentIsEditable) const
441
switch (
editableType
) {
[
all
...]
Node.cpp
[
all
...]
Completed in 45 milliseconds