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

  /prebuilts/misc/common/swig/include/2.0.11/python/
jstring.i 27 Py_UNICODE *pchars = PyUnicode_AS_UNICODE(obj);
31 jchars[i] = pchars[i];
55 Py_UNICODE pchars[len];
59 pchars[i] = jchars[i];
61 return PyUnicode_FromUnicode((const Py_UNICODE *) pchars, len);
  /external/pcre/dist/
perltest.pl 15 sub pchars { subroutine
203 { printf $outfile (", mark = %s", &pchars($REGERROR)); }
210 printf $outfile (" 0: %s\n", &pchars($subs[0]));
211 printf $outfile (" 0+ %s\n", &pchars($subs[17])) if $showrest;
219 printf $outfile ("%2d: %s\n", $i, &pchars($subs[$i]));
234 printf $outfile ("MK: %s\n", &pchars($xx));
pcre_exec.c 131 pchars(const pcre_uchar *p, int length, BOOL is_subject, match_data *md) function
180 pchars(eptr, length, TRUE, md);
183 pchars(p, length, FALSE, md);
    [all...]
pcre_dfa_exec.c 309 pchars(const pcre_uchar *p, int length, FILE *f) function
600 pchars(ptr, STRLEN_UC(ptr), stdout);
    [all...]
pcretest.c 223 lv = pchars((pcre_uint8 *)(p) + offset, len, f)
226 (void)pchars((pcre_uint8 *)(p) + offset, len, f)
513 #define PCHARS(lv, p, offset, len, f) \
752 #define PCHARS(lv, p, offset, len, f) \
754 G(PCHARS,BITONE)(lv, p, offset, len, f); \
756 G(PCHARS,BITTWO)(lv, p, offset, len, f)
2019 static int pchars(pcre_uint8 *p, int length, FILE *f) function
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-coretext.cc 614 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, /*nothing*/);
619 pchars[chars_len++] = c;
621 pchars[chars_len++] = 0xFFFDu;
623 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
624 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
673 /* Adjust scratch, pchars, and log_cluster arrays. This is ugly, but really the
676 pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch)));
684 pchars, chars_len,
    [all...]
hb-uniscribe.cc 743 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2);
751 pchars[chars_len++] = c;
753 pchars[chars_len++] = 0xFFFDu;
755 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
756 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
817 hr = funcs->ScriptItemizeOpenType (pchars,
892 pchars + chars_offset,
933 pchars + chars_offset,
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 742 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2);
750 pchars[chars_len++] = c;
752 pchars[chars_len++] = 0xFFFDu;
754 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
755 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
816 hr = funcs->ScriptItemizeOpenType (pchars,
891 pchars + chars_offset,
933 pchars + chars_offset,
hb-coretext.cc 607 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2);
614 pchars[chars_len++] = c;
616 pchars[chars_len++] = 0xFFFDu;
618 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
619 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
626 pchars, chars_len,
    [all...]

Completed in 255 milliseconds