HomeSort by relevance Sort by last modified time
    Searched refs:pchars (Results 1 - 5 of 5) 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/dist2/
perltest.sh 57 sub pchars {
255 { printf $outfile (", mark = %s", &pchars($REGERROR)); }
262 printf $outfile (" 0: %s\n", &pchars($subs[0]));
263 printf $outfile (" 0+ %s\n", &pchars($subs[17])) if $showrest;
271 printf $outfile ("%2d: %s\n", $i, &pchars($subs[$i]));
286 printf $outfile ("MK: %s\n", &pchars($xx));
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 763 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2);
771 pchars[chars_len++] = c;
773 pchars[chars_len++] = 0xFFFDu;
775 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
776 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1));
837 hr = funcs->ScriptItemizeOpenType (pchars,
912 pchars + chars_offset,
953 pchars + chars_offset,
hb-coretext.cc 728 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, /*nothing*/);
733 pchars[chars_len++] = c;
735 pchars[chars_len++] = 0xFFFDu;
737 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
738 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1u << 10) - 1));
787 /* Adjust scratch, pchars, and log_cluster arrays. This is ugly, but really the
790 pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch)));
797 pchars, chars_len,
    [all...]
  /external/pcre/dist2/src/
pcre2test.c     [all...]

Completed in 116 milliseconds