HomeSort by relevance Sort by last modified time
    Searched refs:pchars (Results 1 - 7 of 7) 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/harfbuzz_ng/src/
hb-uniscribe.cc 761 ALLOCATE_ARRAY (WCHAR, pchars, buffer->len * 2);
769 pchars[chars_len++] = c;
771 pchars[chars_len++] = 0xFFFDu;
773 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
774 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
835 hr = funcs->ScriptItemizeOpenType (pchars,
910 pchars + chars_offset,
951 pchars + chars_offset,
hb-coretext.cc 688 ALLOCATE_ARRAY (UniChar, pchars, buffer->len * 2, /*nothing*/);
693 pchars[chars_len++] = c;
695 pchars[chars_len++] = 0xFFFDu;
697 pchars[chars_len++] = 0xD800u + ((c - 0x10000u) >> 10);
698 pchars[chars_len++] = 0xDC00u + ((c - 0x10000u) & ((1 << 10) - 1));
747 /* Adjust scratch, pchars, and log_cluster arrays. This is ugly, but really the
750 pchars = reinterpret_cast<UniChar *> (((char *) scratch + ((char *) pchars - (char *) old_scratch)));
757 pchars, chars_len,
    [all...]

Completed in 304 milliseconds