Searched defs:rtl (Results 1 - 22 of 22) sorted by relevance

/external/webkit/Source/WebKit/chromium/public/
H A DWebTextRun.h45 , rtl(isRTL)
50 : rtl(false)
56 bool rtl; member in struct:WebKit::WebTextRun
/external/chromium/webkit/glue/
H A Dwebmenuitem.h32 bool rtl; member in struct:WebMenuItem
/external/chromium/chrome/browser/chromeos/offline/
H A Doffline_load_page.cc7 #include "base/i18n/rtl.h"
94 bool rtl = base::i18n::IsRTL(); local
95 strings.SetString("textdirection", rtl ? "rtl" : "ltr");
98 if (rtl)
/external/webkit/Source/WebCore/platform/graphics/
H A DWidthIterator.cpp85 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)) {
H A DTextRun.h45 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
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DComplexTextControllerLinux.h89 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);
H A DComplexTextControllerLinux.cpp72 m_item.item.bidiLevel = m_run.rtl();
174 setGlyphXPositions(rtl());
326 void ComplexTextController::normalizeSpacesAndMirrorChars(const UChar* source, bool rtl, UChar* destination, int length) argument
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);
/external/webkit/Source/WebCore/wml/
H A DWMLTableElement.cpp231 bool rtl = false; local
234 rtl = !style->isLeftToRightDirection();
237 rowElement->setAttribute(HTMLNames::alignAttr, rtl ? "right" : "left");
/external/dhcpcd/
H A Dconfigure.c590 struct rt *rtp, *rtl, *rtn; local
593 for (rtp = rt, rtl = NULL; rtp; rtl = rtp, rtp = rtp->next) {
629 if (rtl == NULL)
632 rtl->next = rtn;
640 struct rt *nrs = NULL, *dnr, *or, *rt, *rtn, *rtl, *lrt = NULL; local
659 if ((or = find_route(routes, rt, &rtl, NULL))) {
666 if (rtl != NULL)
667 rtl->next = or->next;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DComplexTextControllerATSUI.cpp159 Boolean rtl = !ltr; local
214 ATSUAttributeValuePtr values[] = { &lineLayoutOptions, &rtl, &overrideSpecifier };
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp90 , parentTextRun.rtl()
226 if (run.rtl())
263 if (run.rtl()) {
294 static float cursorToX(const Font* font, const TextRunComponents& components, int width, bool rtl, int cursor) argument
304 if (rtl)
309 if (rtl)
329 float x1 = cursorToX(this, components, w, run.rtl(), from);
330 float x2 = cursorToX(this, components, w, run.rtl(), to);
/external/icu4c/test/cintltst/
H A Dcustrtrn.c1385 int32_t rtl; local
1406 cp = u_strFromWCS(rts, rtcap, &rtl, wcs, wl, &err);
1411 if(wl != rtl){
1412 log_err("u_strFromWCS: wcs = %S, wl = %d,rts = %s, rtl = %d!\n", wcs, wl, u_austrcpy(astr, rts), rtl);
/external/webkit/Source/WebCore/svg/
H A DSVGFont.cpp111 static Vector<SVGGlyphIdentifier::ArabicForm> charactersWithArabicForm(const String& input, bool rtl) argument
130 if (rtl) {
248 Vector<SVGGlyphIdentifier::ArabicForm> chars(charactersWithArabicForm(text, run.rtl()));
497 float xStartOffset = floatWidthOfSubStringUsingSVGFont(this, run, 0, run.rtl() ? to : 0, run.rtl() ? run.length() : from, charsConsumed, glyphName);
531 const SVGGlyphIdentifier& identifier = data.glyphIdentifiers[run.rtl() ? numGlyphs - i - 1 : i];
572 fallbackCharacterRun.setText(&data.fallbackCharacters[run.rtl() ? data.fallbackCharacters.size() - fallbackCharacterIndex - 1 : fallbackCharacterIndex], 1);
591 return FloatRect(point.x() + floatWidthOfSubStringUsingSVGFont(this, run, 0, run.rtl() ? to : 0, run.rtl() ? run.length() : from, charsConsumed, glyphName),
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.cc10 #include "base/i18n/rtl.h"
632 bool rtl = base::i18n::IsRTL(); local
636 rtl ? TPM_RIGHTALIGN : TPM_LEFTALIGN, ipc_params));
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1851 bool rtl = computedStyle ? !computedStyle->isLeftToRightDirection() : false; local
1856 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, rtl, override);
1878 float width = font.width(TextRun(text, false, 0, 0, TextRun::AllowTrailingExpansion, rtl, override));
1882 align = rtl ? RightTextAlign : LeftTextAlign;
1884 align = rtl ? LeftTextAlign : RightTextAlign;
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuChromium.cpp946 // FIXME: We should leftTruncate for the rtl case.
962 bool rtl = style.textDirection() == RTL; local
963 TextRun textRun(itemText.characters(), itemText.length(), false, 0, 0, TextRun::AllowTrailingExpansion, rtl, style.hasTextDirectionOverride());
991 TextRun labelTextRun(itemLabel.characters(), itemLabel.length(), false, 0, 0, TextRun::AllowTrailingExpansion, rtl, style.hasTextDirectionOverride());
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontAndroid.cpp432 bool rtl() const { return m_run.rtl(); } function in class:WebCore::TextRunWalker
491 static void normalizeSpacesAndMirrorChars(const UChar* source, bool rtl,
547 , m_iterateBackwards(m_run.rtl())
568 m_item.item.bidiLevel = m_run.rtl();
673 setGlyphPositions(rtl());
940 void TextRunWalker::normalizeSpacesAndMirrorChars(const UChar* source, bool rtl, argument
955 else if (rtl)
979 // 3) Convert mirrored characters such as parenthesis for rtl text.
997 // Normalize space and mirror parenthesis for rtl tex
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 444 milliseconds