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

1 2

  /external/llvm/lib/DebugInfo/
DWARFDebugRangeList.cpp 48 for (const RangeListEntry &RLE : Entries) {
52 OS << format(format_str, Offset, RLE.StartAddress, RLE.EndAddress);
60 for (const RangeListEntry &RLE : Entries) {
61 if (RLE.isBaseAddressSelectionEntry(AddressSize)) {
62 BaseAddress = RLE.EndAddress;
64 Res.push_back(std::make_pair(BaseAddress + RLE.StartAddress,
65 BaseAddress + RLE.EndAddress));
  /frameworks/support/v4/tests/java/android/support/v4/text/
BidiFormatterTest.java 40 private static final String RLE = "\u202B";
67 RLE + "." + HE + "." + PDF + LRM,
70 LRM + RLE + "." + HE + "." + PDF + LRM,
73 RLE + "." + HE + "." + PDF,
76 RLE + "." + PDF + LRM,
157 RLE + EN + HE + EN + PDF + LRM,
160 LRM + RLE + EN + HE + EN + PDF + LRM,
163 RLE + EN + HE + EN + PDF,
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.h 49 #define RLE U_RIGHT_TO_LEFT_EMBEDDING
cbididat.c 23 "LRE", "LRO", "AL", "RLE", "RLO", "PDF", "NSM", "BN",
31 /* LRE LRO AL RLE RLO PDF NSM BN */
145 RLE, WS, R, R, R, WS, PDF, WS, B
162 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */
202 S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L, L, /* 20 entries */
307 RLO, RLO, AL, AL, WS, EN, ES, ON, WS, S, S, PDF, LRO, WS, AL, ET, RLE, ON, EN, B
cbiditst.c 245 - ] == RLE
304 pseudoToUChar[(uint8_t)']'] = 0x202B; UCharToPseud2[0x2B] = (uint8_t)']'; /* RLE */
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.h 49 #define RLE U_RIGHT_TO_LEFT_EMBEDDING
cbididat.c 23 "LRE", "LRO", "AL", "RLE", "RLO", "PDF", "NSM", "BN",
31 /* LRE LRO AL RLE RLO PDF NSM BN */
145 RLE, WS, R, R, R, WS, PDF, WS, B
162 AN, RLO, NSM, LRE, PDF, RLE, ES, EN, ON /* 9 entries */
202 S, WS, NSM, RLE, WS, L, L, L, WS, LRO, WS, R, R, R, WS, RLO, WS, L, L, L, /* 20 entries */
307 RLO, RLO, AL, AL, WS, EN, ES, ON, WS, S, S, PDF, LRO, WS, AL, ET, RLE, ON, EN, B
cbiditst.c 247 - ] == RLE
306 pseudoToUChar[(uint8_t)']'] = 0x202B; UCharToPseud2[0x2B] = (uint8_t)']'; /* RLE */
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
BidiFormatterTest.java 41 private static final String RLE = "\u202B";
112 RLE + "." + HE + "." + PDF + LRM,
115 LRM + RLE + "." + HE + "." + PDF + LRM,
118 RLE + "." + HE + "." + PDF,
121 RLE + "." + PDF + LRM,
202 RLE + EN + HE + EN + PDF + LRM,
205 LRM + RLE + EN + HE + EN + PDF + LRM,
208 RLE + EN + HE + EN + PDF,
  /external/chromium_org/third_party/icu/source/common/
ubidiimp.h 51 RLE=U_RIGHT_TO_LEFT_EMBEDDING, /* 14 */
78 #define MASK_RTL (DIRPROP_FLAG(R)|DIRPROP_FLAG(AL)|DIRPROP_FLAG(RLE)|DIRPROP_FLAG(RLO)|DIRPROP_FLAG(RLI))
83 #define MASK_EXPLICIT (DIRPROP_FLAG(LRE)|DIRPROP_FLAG(LRO)|DIRPROP_FLAG(RLE)|DIRPROP_FLAG(RLO)|DIRPROP_FLAG(PDF))
ubidi.c 113 static const Flags flagE[2]={ DIRPROP_FLAG(LRE), DIRPROP_FLAG(RLE) };
693 /* LRE, LRO, RLE, RLO, PDF */
    [all...]
  /external/icu/icu4c/source/common/
ubidiimp.h 51 RLE=U_RIGHT_TO_LEFT_EMBEDDING, /* 14 */
78 #define MASK_RTL (DIRPROP_FLAG(R)|DIRPROP_FLAG(AL)|DIRPROP_FLAG(RLE)|DIRPROP_FLAG(RLO)|DIRPROP_FLAG(RLI))
83 #define MASK_EXPLICIT (DIRPROP_FLAG(LRE)|DIRPROP_FLAG(LRO)|DIRPROP_FLAG(RLE)|DIRPROP_FLAG(RLO)|DIRPROP_FLAG(PDF))
ubidi.c 111 static const Flags flagE[2]={ DIRPROP_FLAG(LRE), DIRPROP_FLAG(RLE) };
701 /* LRE, LRO, RLE, RLO, PDF */
    [all...]
  /frameworks/base/core/java/android/text/
BidiFormatter.java 95 * Unicode "Right-To-Left Embedding" (RLE) character.
97 private static final char RLE = '\u202B';
360 * the string with Unicode bidi formatting characters: RLE+{@code str}+PDF for RTL text, or
390 result.append(isRtl ? RLE : LRE);
460 * the string. Treats a non-BN character between an LRE/RLE/LRO/RLO and its matching PDF as a
461 * strong character, LTR after LRE/LRO, and RTL after RLE/RLO. The results are undefined for a
462 * string containing unbalanced LRE/RLE/LRO/RLO/PDF characters. The intended use is to check
478 * LRE/RLE/LRO/RLO and its matching PDF as a strong character, LTR after LRE/LRO, and RTL after
479 * RLE/RLO. The results are undefined for a string containing unbalanced LRE/RLE/LRO/RLO/PD
    [all...]
  /frameworks/support/v4/java/android/support/v4/text/
BidiFormatter.java 91 * Unicode "Right-To-Left Embedding" (RLE) character.
93 private static final char RLE = '\u202B';
352 * the string with Unicode bidi formatting characters: RLE+{@code str}+PDF for RTL text, or
381 result.append(isRtl ? RLE : LRE);
450 * the string. Treats a non-BN character between an LRE/RLE/LRO/RLO and its matching PDF as a
451 * strong character, LTR after LRE/LRO, and RTL after RLE/RLO. The results are undefined for a
452 * string containing unbalanced LRE/RLE/LRO/RLO/PDF characters. The intended use is to check
468 * LRE/RLE/LRO/RLO and its matching PDF as a strong character, LTR after LRE/LRO, and RTL after
469 * RLE/RLO. The results are undefined for a string containing unbalanced LRE/RLE/LRO/RLO/PD
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
ll.S 51 # the lzss algorithm does automatic RLE... pretty clever
  /external/valgrind/main/exp-bbv/tests/x86-linux/
ll.S 45 # the lzss algorithm does automatic RLE... pretty clever
  /developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/18.0.0/
support-v4-18.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.0.1/
support-v4-19.0.1.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/19.1.0/
support-v4-19.1.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 666 milliseconds

1 2