OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:createTabSpanElement
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.h
234
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document&);
235
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document&, PassRefPtrWillBeRawPtr<Text> tabTextNode);
236
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document&, const String& tabText);
InsertTextCommand.cpp
247
RefPtrWillBeRawPtr<HTMLSpanElement> spanElement =
createTabSpanElement
(document());
htmlediting.cpp
869
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document& document, PassRefPtrWillBeRawPtr<Text> prpTabTextNode)
887
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document& document, const String& tabText)
889
return
createTabSpanElement
(document, document.createTextNode(tabText));
892
PassRefPtrWillBeRawPtr<HTMLSpanElement>
createTabSpanElement
(Document& document)
894
return
createTabSpanElement
(document, PassRefPtrWillBeRawPtr<Text>(nullptr));
[
all
...]
markup.cpp
[
all
...]
Completed in 59 milliseconds