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

1 2 3 4 5 6 7

  /external/syslinux/gpxe/src/drivers/net/
rtl8139.c 226 struct rtl8139_nic *rtl = container_of ( basher, struct rtl8139_nic, local
231 eereg = inb ( rtl->ioaddr + Cfg9346 );
237 struct rtl8139_nic *rtl = container_of ( basher, struct rtl8139_nic, local
242 eereg = inb ( rtl->ioaddr + Cfg9346 );
245 outb ( eereg, rtl->ioaddr + Cfg9346 );
270 struct rtl8139_nic *rtl = netdev->priv; local
275 rtl->spibit.basher.op = &rtl_basher_ops;
276 rtl->spibit.bus.mode = SPI_MODE_THREEWIRE;
277 init_spi_bit_basher ( &rtl->spibit );
280 ee9356 = ( inw ( rtl->ioaddr + RxConfig ) & Eeprom9356 )
309 struct rtl8139_nic *rtl = netdev->priv; local
325 struct rtl8139_nic *rtl = netdev->priv; local
359 struct rtl8139_nic *rtl = netdev->priv; local
378 struct rtl8139_nic *rtl = netdev->priv; local
408 struct rtl8139_nic *rtl = netdev->priv; local
481 struct rtl8139_nic *rtl = netdev->priv; local
508 struct rtl8139_nic *rtl; local
562 struct rtl8139_nic *rtl = netdev->priv; local
    [all...]
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
EntityDeleteComparator.kt 29 val rtl = rhs.shouldBeDeletedAfter(lhs)
31 ltr == rtl -> 0
33 rtl -> 1
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatSymbolsTest.java 192 final char rtl = '\u200F'; local
198 assertEquals(fallback, DecimalFormatSymbols.maybeStripMarkers("" + rtl, fallback));
201 DecimalFormatSymbols.maybeStripMarkers("X" + ltr + rtl + alm + "Y", fallback));
203 DecimalFormatSymbols.maybeStripMarkers("" + ltr + rtl + alm, fallback));
204 assertEquals(fallback, DecimalFormatSymbols.maybeStripMarkers(alm + "XY" + rtl, fallback));
207 assertEquals('X', DecimalFormatSymbols.maybeStripMarkers("X" + rtl, fallback));
209 assertEquals('X', DecimalFormatSymbols.maybeStripMarkers(alm + "X" + rtl, fallback));
  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/aarch64/
zynqmp_common.c 174 unsigned int rtl = zynqmp_get_rtl_ver(); local
192 NOTICE("ATF running on XCZU%s/%s v%d/RTL%d.%d at 0x%x%s\n",
194 (rtl & 0xf0) >> 4, rtl & 0xf, BL31_BASE,
  /external/compiler-rt/lib/sanitizer_common/scripts/
check_lint.sh 91 run_lint ${TSAN_RTL_LINT_FILTER} ${TSAN_RTL}/rtl/*.cc \
92 ${TSAN_RTL}/rtl/*.h &
93 run_lint ${TSAN_TEST_LINT_FILTER} ${TSAN_RTL}/tests/rtl/*.cc \
94 ${TSAN_RTL}/tests/rtl/*.h \
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
ContextMenuUtils.java 138 final boolean rtl = anchor.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
144 description.appendText(rtl ? "right" : "left");
156 if (rtl) {
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
LinearLayoutManagerWrapContentTest.java 170 boolean rtl = layoutManager.getLayoutDirection() == ViewCompat.LAYOUT_DIRECTION_RTL;
172 if (rtl) {
178 if (rtl ^ end) {
GridLayoutManagerNoOpUpdateTest.java 41 @Parameterized.Parameters(name = "conf:{0},rtl={1}")
60 public GridLayoutManagerNoOpUpdateTest(Config config, boolean rtl) {
62 mRtl = rtl;
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
ClippedFolderIconLayoutRule.java 24 public void init(int availableSpace, float intrinsicIconSize, boolean rtl) {
28 mIsRtl = rtl;
95 // In RTL we go counterclockwise
  /frameworks/support/compat/src/main/java/androidx/core/widget/
TextViewCompat.java 137 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
138 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
164 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
165 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top,
166 rtl ? start : end, bottom);
196 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
197 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top,
198 rtl ? start : end, bottom);
282 final boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
TestUScript.java 213 UnicodeSet rtl = new UnicodeSet("[[:bc=R:][:bc=AL:]-[:Cn:]-[:sc=Common:]]"); local
225 assertFalse(sn + " not encoded, not RTL", UScript.isRightToLeft(sc));
235 assertEquals(sn + " RTL vs. set", rtl.contains(firstChar), UScript.isRightToLeft(sc));
239 rtl.removeAll(scriptSet);
246 assertEquals("no remaining RTL characters", "[]", rtl.toPattern(true));
  /external/icu/icu4c/source/test/intltest/
ucdtest.cpp 444 UnicodeSet rtl("[[:bc=R:][:bc=AL:]-[:Cn:]-[:sc=Common:]]", errorCode);
459 assertFalse("not encoded, not RTL", uscript_isRightToLeft(sc));
469 assertEquals("RTL vs. set", (UBool)rtl.contains(firstChar), (UBool)uscript_isRightToLeft(sc));
473 rtl.removeAll(scriptSet);
481 assertEquals("no remaining RTL characters",
482 UnicodeString("[]"), rtl.toPattern(pattern));
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
TestUScript.java 210 UnicodeSet rtl = new UnicodeSet("[[:bc=R:][:bc=AL:]-[:Cn:]-[:sc=Common:]]"); local
222 assertFalse(sn + " not encoded, not RTL", UScript.isRightToLeft(sc));
232 assertEquals(sn + " RTL vs. set", rtl.contains(firstChar), UScript.isRightToLeft(sc));
236 rtl.removeAll(scriptSet);
243 assertEquals("no remaining RTL characters", "[]", rtl.toPattern(true));
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/bench/
wikipedia.css 231 body.rtl div.vectorMenu {
232 direction: rtl;
287 body.rtl div.vectorMenu div.menu {
292 body.rtl div.vectorMenu > div.menu {
298 body.rtl div.vectorMenu > div.menu,
870 .mw-content-rtl {
872 direction: rtl;
881 .sitedir-rtl textarea,
882 .sitedir-rtl input {
884 direction: rtl;
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
StreamingTextView.java 254 boolean rtl = isLayoutRtl(StreamingTextView.this);
264 float dotLeft = rtl ? x + width - left - dotWidth : x + left;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
basic-block.h 201 struct rtl_bb_info * rtl; member in struct:basic_block_il_dependent::__anon63377
405 #define BB_END(B) (B)->il.x.rtl->end_
406 #define BB_HEADER(B) (B)->il.x.rtl->header_
407 #define BB_FOOTER(B) (B)->il.x.rtl->footer_
    [all...]
cgraph.h 170 /* Information about the function that is propagated by the RTL backend.
242 struct cgraph_rtl_info rtl; variable in typeref:struct:cgraph_rtl_info
525 /* Functions are now ordered and being passed to RTL expanders. */
1133 rtx rtl; variable
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
debugger_cli_common_test.py 81 rtl = debugger_cli_common.RichTextLines(
84 rtl.append_rich_line(debugger_cli_common.RichLine("Violets are ") +
86 self.assertEqual(2, len(rtl.lines))
87 self.assertEqual(2, len(rtl.font_attr_segs))
88 self.assertEqual(1, len(rtl.font_attr_segs[0]))
89 self.assertEqual(1, len(rtl.font_attr_segs[1]))
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
trieval.go 58 rtl = 0x0800
57 rtl = 0x0800 const
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/idna/
trieval.go 58 rtl = 0x0800
57 rtl = 0x0800 const
  /toolchain/binutils/binutils-2.27/include/coff/
xcoff.h 430 int (*rtl) (void); member in struct:__rtinit
  /external/curl/packages/vms/
generate_config_vms_h_curl.com 163 $! If kerberos is installed: sys$share:gss$rtl.exe exists.
164 $ if f$search("sys$shsare:gss$rtl.exe") .eqs. ""
setup_gnv_curl_build.com 128 $ try_shr = "sys$share:gss$rtl"
  /external/icu/icu4c/source/test/cintltst/
custrtrn.c 1391 int32_t rtl; local
    [all...]
  /frameworks/support/gridlayout/src/main/java/androidx/gridlayout/widget/
GridLayout.java     [all...]

Completed in 1420 milliseconds

1 2 3 4 5 6 7