OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:whitespaceMode
(Results
1 - 3
of
3
) 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
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js
556
var
whitespaceMode
= {
559
return CodeMirror.overlayMode(CodeMirror.getMode(config, mimeType),
whitespaceMode
, false);
[
all
...]
Completed in 65 milliseconds