OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShouldMatchBidiLevel
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
RenderedPosition.h
59
enum
ShouldMatchBidiLevel
{ MatchBidiLevel, IgnoreBidiLevel };
80
bool atLeftBoundaryOfBidiRun(
ShouldMatchBidiLevel
, unsigned char bidiLevelOfRun) const;
81
bool atRightBoundaryOfBidiRun(
ShouldMatchBidiLevel
, unsigned char bidiLevelOfRun) const;
RenderedPosition.cpp
165
bool RenderedPosition::atLeftBoundaryOfBidiRun(
ShouldMatchBidiLevel
shouldMatchBidiLevel
, unsigned char bidiLevelOfRun) const
171
if (
shouldMatchBidiLevel
== IgnoreBidiLevel)
177
if (
shouldMatchBidiLevel
== IgnoreBidiLevel)
185
bool RenderedPosition::atRightBoundaryOfBidiRun(
ShouldMatchBidiLevel
shouldMatchBidiLevel
, unsigned char bidiLevelOfRun) const
191
if (
shouldMatchBidiLevel
== IgnoreBidiLevel)
197
if (
shouldMatchBidiLevel
== IgnoreBidiLevel)
Completed in 39 milliseconds