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

1 2

  /external/icu/icu4c/source/test/cintltst/
cbididat.c 23 "LRE", "LRO", "AL", "RLE", "RLO", "PDF", "NSM", "BN",
31 /* LRE LRO AL RLE RLO PDF NSM BN */
160 LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, /* 15 entries *
    [all...]
cbiditst.h 46 #define LRE U_LEFT_TO_RIGHT_EMBEDDING
cbiditst.c 248 - [ == LRE
307 pseudoToUChar[(uint8_t)'['] = 0x202A; UCharToPseud2[0x2A] = (uint8_t)'['; /* LRE */
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestData.java 32 protected static final int LRE = UCharacterDirection.LEFT_TO_RIGHT_EMBEDDING;
48 "LRE", "LRO", "AL", "RLE", "RLO", "PDF", "NSM", "BN",
60 LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, LRE, /* 15 entries *
    [all...]
TestClassOverride.java 27 private static final int LRE = TestData.LRE;
50 R, R, R, LRE, DEF, RLE, PDF, S, //58-5F
  /external/llvm/lib/CodeGen/
Spiller.h 29 /// spill - Spill the LRE.getParent() live interval.
30 virtual void spill(LiveRangeEdit &LRE) = 0;
RegAllocBasic.cpp 202 LiveRangeEdit LRE(&Spill, SplitVRegs, *MF, *LIS, VRM);
203 spiller().spill(LRE);
261 LiveRangeEdit LRE(&VirtReg, SplitVRegs, *MF, *LIS, VRM);
262 spiller().spill(LRE);
RegAllocPBQP.cpp 633 LiveRangeEdit LRE(&LIS.getInterval(VReg), NewIntervals, MF, LIS, &VRM);
634 VRegSpiller.spill(LRE);
639 << LRE.getParent().weight << ", New vregs: ");
643 for (LiveRangeEdit::iterator I = LRE.begin(), E = LRE.end();
SplitKit.cpp 327 void SplitEditor::reset(LiveRangeEdit &LRE, ComplementSpillMode SM) {
328 Edit = &LRE;
    [all...]
RegAllocGreedy.cpp 503 // LRE may clone a virtual register because dead code elimination causes it to
    [all...]
  /frameworks/support/v4/tests/java/android/support/v4/text/
BidiFormatterTest.java 39 private static final String LRE = "\u202A";
82 LRE + "." + EN + "." + PDF + RLM,
85 RLM + LRE + "." + EN + "." + PDF + RLM,
88 LRE + "." + EN + "." + PDF,
91 LRE + "." + PDF + RLM,
170 LRE + HE + EN + HE + PDF + RLM,
173 RLM + LRE + HE + EN + HE + PDF + RLM,
176 LRE + HE + EN + HE + PDF,
  /cts/tests/tests/text/src/android/text/cts/
BidiFormatterTest.java 40 private static final String LRE = "\u202A";
127 LRE + "." + EN + "." + PDF + RLM,
130 RLM + LRE + "." + EN + "." + PDF + RLM,
133 LRE + "." + EN + "." + PDF,
136 LRE + "." + PDF + RLM,
215 LRE + HE + EN + HE + PDF + RLM,
218 RLM + LRE + HE + EN + HE + PDF + RLM,
221 LRE + HE + EN + HE + PDF,
  /external/icu/icu4c/source/common/
ubidiimp.h 48 LRE=U_LEFT_TO_RIGHT_EMBEDDING, /* 11 */
77 #define MASK_LTR (DIRPROP_FLAG(L)|DIRPROP_FLAG(EN)|DIRPROP_FLAG(ENL)|DIRPROP_FLAG(ENR)|DIRPROP_FLAG(AN)|DIRPROP_FLAG(LRE)|DIRPROP_FLAG(LRO)|DIRPROP_FLAG(LRI))
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 90 * Unicode "Left-To-Right Embedding" (LRE) character.
92 private static final char LRE = '\u202A';
361 * LRE+{@code str}+PDF for LTR text.
393 result.append(isRtl ? RLE : LRE);
463 * the string. Treats a non-BN character between an LRE/RLE/LRO/RLO and its matching PDF as a
464 * strong character, LTR after LRE/LRO, and RTL after RLE/RLO. The results are undefined for a
465 * string containing unbalanced LRE/RLE/LRO/RLO/PDF characters. The intended use is to check
481 * LRE/RLE/LRO/RLO and its matching PDF as a strong character, LTR after LRE/LRO, and RTL after
482 * 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 86 * Unicode "Left-To-Right Embedding" (LRE) character.
88 private static final char LRE = '\u202A';
353 * LRE+{@code str}+PDF for LTR text.
384 result.append(isRtl ? RLE : LRE);
453 * the string. Treats a non-BN character between an LRE/RLE/LRO/RLO and its matching PDF as a
454 * strong character, LTR after LRE/LRO, and RTL after RLE/RLO. The results are undefined for a
455 * string containing unbalanced LRE/RLE/LRO/RLO/PDF characters. The intended use is to check
471 * LRE/RLE/LRO/RLO and its matching PDF as a strong character, LTR after LRE/LRO, and RTL after
472 * RLE/RLO. The results are undefined for a string containing unbalanced LRE/RLE/LRO/RLO/PD
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Bidi.java     [all...]
  /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 
  /prebuilts/tools/common/m2/repository/itext/itext/2.0.8/
itext-2.0.8.jar 

Completed in 246 milliseconds

1 2