HomeSort by relevance Sort by last modified time
    Searched refs:rtl (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit/chromium/public/
WebTextRun.h 45 , rtl(isRTL)
50 : rtl(false)
56 bool rtl; member in struct:WebKit::WebTextRun
  /external/webkit/Source/WebKit/chromium/src/
WebTextRun.cpp 42 return TextRun(text, false, 0, 0, TextRun::AllowTrailingExpansion, rtl, directionalOverride);
  /ndk/tests/build/issue22336-ICE-emit-rtl/jni/
Android.mk 4 LOCAL_MODULE := issue22336-ICE-emit-rtl
7 LOCAL_SRC_FILES := issue22336-ICE-emit-rtl.cpp
  /external/chromium/webkit/glue/
webmenuitem.cc 10 rtl(false),
20 rtl(item.textDirection == WebKit::WebTextDirectionRightToLeft),
30 rtl(item.rtl),
webmenuitem.h 32 bool rtl; member in struct:WebMenuItem
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/
options.css 66 body.rtl .col1, body.rtl .col2 {
69 body.rtl {
70 direction: rtl;
72 body.rtl .col2 {
75 body.rtl .checkBox, body.rtl .checkBoxTopic {
78 body.rtl table.contentTable {
81 body.rtl #save_div{
84 body.rtl #countryList
    [all...]
feed.css 89 direction: rtl;
93 body.rtl #feed {
94 direction: rtl;
96 body.rtl .open_box {
99 body.rtl .item_title {
  /external/compiler-rt/lib/tsan/
Makefile.mk 11 SubDirs := rtl
  /external/webkit/Source/WebCore/platform/graphics/
TextRun.h 45 TextRun(const UChar* c, int len, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
55 , m_rtl(rtl)
65 TextRun(const String& s, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
75 , m_rtl(rtl)
103 bool rtl() const { return m_rtl; } function in class:WebCore::TextRun
WidthIterator.cpp 66 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
85 bool rtl = m_run.rtl(); local
123 const GlyphData& glyphData = m_font->glyphDataForCharacter(c, rtl);
151 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
180 || (m_run.rtl() && currentCharacter)) {
  /external/webkit/Source/WebCore/platform/graphics/chromium/
ComplexTextControllerLinux.h 55 // Iteration is always in logical (aka reading) order. For RTL text that means
89 bool rtl() const { return m_run.rtl(); } function in class:WebCore::ComplexTextController
130 static void normalizeSpacesAndMirrorChars(const UChar* source, bool rtl, UChar* destination, int length);
ComplexTextControllerLinux.cpp 72 m_item.item.bidiLevel = m_run.rtl();
174 setGlyphXPositions(rtl());
296 // Iterate through the glyphs in logical order, flipping for RTL where necessary.
297 // Glyphs are positioned starting from m_offsetX; in RTL mode they go leftwards from there.
326 void ComplexTextController::normalizeSpacesAndMirrorChars(const UChar* source, bool rtl, UChar* destination, int length)
339 else if (rtl)
361 // 3) Convert mirrored characters such as parenthesis for rtl text.
379 // Normalize space and mirror parenthesis for rtl text.
392 normalizeSpacesAndMirrorChars(sourceText, originalRun.rtl(), normalizedBuffer.get(), normalizedBufferLength);
FontLinux.cpp 214 if (run.rtl()) {
258 int lastX = controller.offsetX() - (controller.rtl() ? -controller.width() : controller.width());
284 if (run.rtl()) {
335 if (run.rtl()) {
349 if (controller.rtl())
357 if (controller.rtl())
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 86 if (m_offsetX >= m_runWidthSoFar && m_run.ltr() || m_offsetX < 0 && m_run.rtl())
115 // does not match normal RTL.
123 unsigned indexOfFontTransition = m_run.rtl() ? length - 1 : 0;
124 const UChar* curr = m_run.rtl() ? cp + length - 1 : cp;
125 const UChar* end = m_run.rtl() ? cp - 1 : cp + length;
139 curr = m_run.rtl() ? curr - 1 : curr + 1;
160 int itemStart = m_run.rtl() ? index + 1 : indexOfFontTransition;
161 int itemLength = m_run.rtl() ? indexOfFontTransition - index : index - indexOfFontTransition;
168 int itemLength = m_run.rtl() ? indexOfFontTransition + 1 : length - indexOfFontTransition;
173 int itemStart = m_run.rtl() ? 0 : indexOfFontTransition
    [all...]
FontWin.cpp 63 if (run.rtl()) {
90 if (run.rtl()) {
  /external/compiler-rt/lib/tsan/rtl/
Makefile.mk 1 #===- lib/tsan/rtl/Makefile.mk -----------------------------*- Makefile -*--===#
  /external/chromium/chrome/browser/resources/bookmark_manager/css/
bmm.css 40 display: inline-block; /* We need to use inline-block here due to RTL. */
52 html[dir=rtl] list .label {
100 html[dir=rtl] list > * > button {
162 html[dir=rtl] list > .folder > .label {
245 html[dir=rtl] .logo,
246 html[dir=rtl] .header > div,
247 html[dir=rtl] .header form {
299 html[dir=rtl] .summary button {
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp 415 // It defaults to backwards for RTL and forwards otherwise (which matches the
463 bool rtl() const { return m_run.rtl(); } function in class:WebCore::TextRunWalker
504 static void normalizeSpacesAndMirrorChars(const UChar* source, bool rtl,
544 , m_iterateBackwards(m_run.rtl())
565 m_item.item.bidiLevel = m_run.rtl();
670 setGlyphPositions(rtl());
816 // RTL) codepoint of the current glyph. Each time we advance a glyph,
    [all...]