HomeSort by relevance Sort by last modified time
    Searched refs:WhitespaceMode (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 81 enum WhitespaceMode {
138 void insertTextNode(const String&, WhitespaceMode = WhitespaceUnknown);
243 : whitespaceMode(WhitespaceUnknown)
247 void append(PassRefPtr<ContainerNode> newParent, PassRefPtr<Node> newNextChild, const String& newString, WhitespaceMode newWhitespaceMode)
254 whitespaceMode = std::min(whitespaceMode, newWhitespaceMode);
259 std::swap(whitespaceMode, other.whitespaceMode);
276 ASSERT(!stringBuilder.isEmpty() || (whitespaceMode == WhitespaceUnknown));
283 WhitespaceMode whitespaceMode
    [all...]
HTMLConstructionSite.cpp 220 static String atomizeIfAllWhitespace(const String& string, WhitespaceMode whitespaceMode)
224 if (whitespaceMode == AllWhitespace || (whitespaceMode == WhitespaceUnknown && isAllWhitespace(string)))
250 substring = atomizeIfAllWhitespace(substring, pendingText.whitespaceMode);
661 void HTMLConstructionSite::insertTextNode(const String& string, WhitespaceMode whitespaceMode)
678 m_pendingText.append(dummyTask.parent, dummyTask.nextChild, string, whitespaceMode);
    [all...]

Completed in 186 milliseconds