• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/tcl-105/tcl84/tcl/generic/

Lines Matching refs:Tcl_UniChar

117     int ch;			/* The Tcl_UniChar whose size is returned. */
147 * Store the given Tcl_UniChar as a sequence of UTF-8 bytes in the
162 int ch; /* The Tcl_UniChar to be stored in the
165 * of the Tcl_UniChar is stored. Buffer must
240 CONST Tcl_UniChar *wString; /* Unicode string to convert to UTF-8. */
247 CONST Tcl_UniChar *w, *wEnd;
277 * Extract the Tcl_UniChar represented by the UTF-8 string. Bad
289 * *chPtr is filled with the Tcl_UniChar, and the return value is the
301 register Tcl_UniChar *chPtr; /* Filled with the Tcl_UniChar represented
318 *chPtr = (Tcl_UniChar) byte;
326 *chPtr = (Tcl_UniChar) (((byte & 0x1F) << 6) | (str[1] & 0x3F));
334 *chPtr = (Tcl_UniChar) byte;
342 *chPtr = (Tcl_UniChar) (((byte & 0x0F) << 12)
351 *chPtr = (Tcl_UniChar) byte;
378 *chPtr = (Tcl_UniChar) byte;
402 Tcl_UniChar *
411 Tcl_UniChar *w, *wString;
426 (int) ((oldLength + length + 1) * sizeof(Tcl_UniChar)));
427 wString = (Tcl_UniChar *) (Tcl_DStringValue(dsPtr) + oldLength);
499 Tcl_UniChar ch;
500 register Tcl_UniChar *chPtr = &ch;
540 * Returns a pointer to the first occurance of the given Tcl_UniChar
546 * As above. If the Tcl_UniChar does not exist in the given string,
557 int ch; /* The Tcl_UniChar to search for. */
560 Tcl_UniChar find;
580 * Returns a pointer to the last occurance of the given Tcl_UniChar
586 * As above. If the Tcl_UniChar does not exist in the given string,
598 int ch; /* The Tcl_UniChar to search for. */
601 Tcl_UniChar find;
643 Tcl_UniChar ch;
719 Tcl_UniChar
724 Tcl_UniChar ch;
756 Tcl_UniChar ch;
840 Tcl_UniChar ch, upChar;
894 Tcl_UniChar ch, lowChar;
949 Tcl_UniChar ch, titleChar, lowChar;
1058 Tcl_UniChar ch1, ch2;
1104 Tcl_UniChar ch1, ch2;
1141 Tcl_UniChar
1148 return (Tcl_UniChar) (ch - GetDelta(info));
1171 Tcl_UniChar
1178 return (Tcl_UniChar) (ch + GetDelta(info));
1201 Tcl_UniChar
1213 return (Tcl_UniChar) (ch + ((mode & 0x4) ? -1 : 1));
1215 return (Tcl_UniChar) (ch - GetDelta(info));
1241 CONST Tcl_UniChar *str; /* Unicode string to find length of. */
1272 CONST Tcl_UniChar *cs; /* Unicode string to compare to ct. */
1273 CONST Tcl_UniChar *ct; /* Unicode string cs is compared to. */
1280 return memcmp(cs, ct, n*sizeof(Tcl_UniChar));
1316 CONST Tcl_UniChar *cs; /* Unicode string to compare to ct. */
1317 CONST Tcl_UniChar *ct; /* Unicode string cs is compared to. */
1322 Tcl_UniChar lcs = Tcl_UniCharToLower(*cs);
1323 Tcl_UniChar lct = Tcl_UniCharToLower(*ct);
1645 CONST Tcl_UniChar *string; /* Unicode String. */
1646 CONST Tcl_UniChar *pattern; /* Pattern, which may contain special
1650 Tcl_UniChar ch1, p;
1732 Tcl_UniChar startChar, endChar;
1826 CONST Tcl_UniChar *string; /* Unicode String. */
1828 CONST Tcl_UniChar *pattern; /* Pattern, which may contain special
1833 CONST Tcl_UniChar *stringEnd, *patternEnd;
1834 Tcl_UniChar p;
1921 Tcl_UniChar ch1, startChar, endChar;