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
89
enum
WhitespaceMode
{
156
void insertTextNode(const String&,
WhitespaceMode
= WhitespaceUnknown);
263
:
whitespaceMode
(WhitespaceUnknown)
267
void append(PassRefPtrWillBeRawPtr<ContainerNode> newParent, PassRefPtrWillBeRawPtr<Node> newNextChild, const String& newString,
WhitespaceMode
newWhitespaceMode)
274
whitespaceMode
= std::min(
whitespaceMode
, newWhitespaceMode);
279
std::swap(
whitespaceMode
, other.
whitespaceMode
);
296
ASSERT(!stringBuilder.isEmpty() || (
whitespaceMode
== WhitespaceUnknown));
305
WhitespaceMode
whitespaceMode
[
all
...]
HTMLConstructionSite.cpp
225
static String atomizeIfAllWhitespace(const String& string,
WhitespaceMode
whitespaceMode
)
229
if (
whitespaceMode
== AllWhitespace || (
whitespaceMode
== WhitespaceUnknown && isAllWhitespace(string)))
259
substring = atomizeIfAllWhitespace(substring, pendingText.
whitespaceMode
);
680
void HTMLConstructionSite::insertTextNode(const String& string,
WhitespaceMode
whitespaceMode
)
697
m_pendingText.append(dummyTask.parent, dummyTask.nextChild, string,
whitespaceMode
);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorTextEditor.js
842
var
whitespaceMode
= {
845
return CodeMirror.overlayMode(CodeMirror.getMode(config, mimeType),
whitespaceMode
, false);
[
all
...]
Completed in 190 milliseconds