Searched refs:typingStyle (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertLineBreakCommand.cpp146 RefPtrWillBeRawPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle(); local
148 if (typingStyle && !typingStyle->isEmpty()) {
153 applyStyle(typingStyle.get(), firstPositionInOrBeforeNode(nodeToInsert.get()), lastPositionInOrAfterNode(nodeToInsert.get()));
H A DInsertTextCommand.cpp142 if (EditingStyle* typingStyle = document().frame()->selection().typingStyle())
143 typingStyle->removeBlockProperties();
220 if (RefPtrWillBeRawPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle()) {
221 typingStyle->prepareToApplyAt(endPosition, EditingStyle::PreserveWritingDirection);
222 if (!typingStyle->isEmpty())
223 applyStyle(typingStyle.get());
H A DFrameSelection.h197 EditingStyle* typingStyle() const;
293 inline EditingStyle* FrameSelection::typingStyle() const function in class:blink::FrameSelection
H A DEditor.cpp1129 RefPtrWillBeRawPtr<EditingStyle> typingStyle = nullptr; local
1130 if (frame().selection().typingStyle()) {
1131 typingStyle = frame().selection().typingStyle()->copy();
1132 typingStyle->overrideWithStyle(style);
1134 typingStyle = EditingStyle::create(style);
1137 typingStyle->prepareToApplyAt(frame().selection().selection().visibleStart().deepEquivalent(), EditingStyle::PreserveWritingDirection);
1140 RefPtrWillBeRawPtr<EditingStyle> blockStyle = typingStyle->extractAndRemoveBlockProperties();
1147 frame().selection().setTypingStyle(typingStyle);
H A DEditingStyle.cpp987 RefPtrWillBeRawPtr<EditingStyle> typingStyle = document->frame()->selection().typingStyle(); local
988 if (!typingStyle || typingStyle == this)
991 mergeStyle(typingStyle->style(), OverrideValues);
1310 WritingDirection EditingStyle::textDirectionForSelection(const VisibleSelection& selection, EditingStyle* typingStyle, bool& hasNestedOrMultipleEmbeddings) argument
1346 if (typingStyle && typingStyle->textDirection(direction)) {
H A DEditingStyle.h143 static WritingDirection textDirectionForSelection(const VisibleSelection&, EditingStyle* typingStyle, bool& hasNestedOrMultipleEmbeddings);
H A DEditorCommand.cpp261 frame.selection().typingStyle(), hasNestedOrMultipleEmbeddings);

Completed in 1110 milliseconds