OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EntityMask
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/editing/
MarkupAccumulator.h
44
enum
EntityMask
{
63
EntityMask
mask;
83
void appendNodeValue(Vector<UChar>& out, const Node*, const Range*,
EntityMask
);
87
EntityMask
entityMaskForText(Text* text) const;
115
void appendCharactersReplacingEntities(Vector<UChar>& out, const UChar* content, size_t length,
EntityMask
entityMask
);
MarkupAccumulator.cpp
46
void appendCharactersReplacingEntities(Vector<UChar>& out, const UChar* content, size_t length,
EntityMask
entityMask
)
65
if (content[i] == entityMaps[m].entity && entityMaps[m].mask &
entityMask
) {
185
void MarkupAccumulator::appendNodeValue(Vector<UChar>& out, const Node* node, const Range* range,
EntityMask
entityMask
)
202
appendCharactersReplacingEntities(out, characters, length,
entityMask
);
257
EntityMask
MarkupAccumulator::entityMaskForText(Text* text) const
Completed in 105 milliseconds