HomeSort by relevance Sort by last modified time
    Searched refs:textOut (Results 1 - 5 of 5) sorted by null

  /external/skia/experimental/PdfViewer/
SkPdfFont.h 81 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const = 0;
100 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
104 textOut->text = new uint16_t[textIn.len / 2];
105 textOut->len = textIn.len / 2;
107 for (int i = 0; i < textOut->len; i++) {
108 textOut->text[i] = ((text[i] << 8) & 0xff00) | ((text[i] >> 8) & 0x00ff);
124 virtual bool decodeText(const SkUnencodedText& textIn, SkDecodedText* textOut) const {
128 textOut->text = new uint16_t[textIn.len];
129 textOut->len = textIn.len;
131 for (int i = 0; i < textOut->len; i++)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
TestReorderRunsOnly.java 23 String textOut[][];
28 this.textOut = out;
138 testCases[i].textOut[option][level],
TestClassOverride.java 59 static final String textOut = "12<.HIJ->a 78CBA 6 \u05d1\u05d0";
130 assertEquals("Actual and expected output mismatch", textOut, out);
TestReorderingMode.java 51 static final String[] textOut = {
257 expected = textOut[index];
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cbiditst.c     [all...]

Completed in 643 milliseconds