Searched refs:numChars (Results 51 - 75 of 105) sorted by relevance

12345

/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkMessage.c44 int numChars; /* Number of characters in string, not member in struct:__anon13447
498 msgPtr->numChars = Tcl_NumUtfChars(msgPtr->string, -1);
632 msgPtr->string, msgPtr->numChars, width, msgPtr->justify,
876 msgPtr->numChars = Tcl_NumUtfChars(value, -1);
H A DtkWindow.c1169 int numChars;
1185 numChars = (int) (p-pathName);
1186 if (numChars > FIXED_SPACE) {
1187 p = (char *) ckalloc((unsigned) (numChars+1));
1191 if (numChars == 0) {
1195 strncpy(p, pathName, (size_t) numChars);
1196 p[numChars] = '\0';
1231 if (NameWindow(interp, winPtr, parentPtr, pathName+numChars+1)
1239 return CreateTopLevelWindow(interp, parent, pathName+numChars+1,
1158 int numChars; local
H A DtkSelect.c1348 int extraBytes, charOffset, count, numChars;
1418 numChars = 0;
1421 numChars++;
1423 cmdInfoPtr->charOffset += numChars;
1335 int extraBytes, charOffset, count, numChars; local
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkMessage.c45 int numChars; /* Number of characters in string, not member in struct:__anon13789
510 msgPtr->numChars = Tcl_NumUtfChars(msgPtr->string, -1);
646 msgPtr->string, msgPtr->numChars, width, msgPtr->justify,
891 msgPtr->numChars = Tcl_NumUtfChars(value, -1);
H A DtkWindow.c1175 int numChars;
1192 numChars = (int) (p-pathName);
1193 if (numChars > FIXED_SPACE) {
1194 p = (char *) ckalloc((unsigned) (numChars+1));
1198 if (numChars == 0) {
1202 strncpy(p, pathName, (size_t) numChars);
1203 p[numChars] = '\0';
1238 if (NameWindow(interp, winPtr, parentPtr, pathName+numChars+1)
1246 return CreateTopLevelWindow(interp, parent, pathName+numChars+1,
1164 int numChars; local
H A DtkSelect.c1356 int extraBytes, charOffset, count, numChars;
1426 numChars = 0;
1429 numChars++;
1431 cmdInfoPtr->charOffset += numChars;
1343 int extraBytes, charOffset, count, numChars; local
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclCmdMZ.c131 CONST char *command, int numChars,
2398 int numChars;
2406 numChars = Tcl_NumUtfChars(string1, length1);
2407 if (TclGetIntForIndex(interp, objv[3], numChars-1,
2414 if (index < numChars) {
2427 cur = numChars;
2436 int numChars;
2444 numChars = Tcl_NumUtfChars(string1, length1);
2445 if (TclGetIntForIndex(interp, objv[3], numChars-1,
2449 if (index >= numChars) {
2391 int numChars; local
2429 int numChars; local
[all...]
H A DtclIntDecls.h490 int numChars, Command * cmdPtr, int result,
496 int numChars, Command * cmdPtr, int result,
734 int (*tclCheckInterpTraces) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * command, int numChars, Command * cmdPtr, int result, int traceFlags, int objc, Tcl_Obj *CONST objv[])); /* 170 */
735 int (*tclCheckExecutionTraces) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * command, int numChars, Command * cmdPtr, int result, int traceFlags, int objc, Tcl_Obj *CONST objv[])); /* 171 */
/macosx-10.9.5/tcl-102/tk84/tk/macosx/
H A DtkMacOSXKeyEvent.c99 UInt32 savedModifiers, const UniChar *chars, int numChars);
301 * TkMacOSXProcessKeyboardEvent()). chars/numChars has the Unicode
320 int numChars)
352 for (i = 0; i < numChars; ++i) {
312 GenerateKeyEvent( UInt32 eKind, KeyEventData * e, UInt32 savedKeyCode, UInt32 savedModifiers, const UniChar * chars, int numChars) argument
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclTrace.c126 Command *cmdPtr, const char *command, int numChars,
1407 int numChars, /* The number of characters in 'command' which
1511 int numChars, /* The number of characters in 'command' which
1614 command, numChars, objc, objv);
1660 int numChars, /* The number of characters in the command's
1673 commandCopy = TclStackAlloc(interp, (unsigned) (numChars + 1));
1674 memcpy(commandCopy, command, (size_t) numChars);
1675 commandCopy[numChars] = '\0';
1394 TclCheckExecutionTraces( Tcl_Interp *interp, const char *command, int numChars, Command *cmdPtr, int code, int traceFlags, int objc, Tcl_Obj *const objv[]) argument
1497 TclCheckInterpTraces( Tcl_Interp *interp, const char *command, int numChars, Command *cmdPtr, int code, int traceFlags, int objc, Tcl_Obj *const objv[]) argument
1643 CallTraceFunction( Tcl_Interp *interp, register Trace *tracePtr, Command *cmdPtr, const char *command, int numChars, register int objc, Tcl_Obj *const objv[]) argument
H A DtclCmdMZ.c2382 int cur, index, length, numChars;
2390 numChars = Tcl_NumUtfChars(string, length);
2391 if (TclGetIntForIndexM(interp, objv[2], numChars-1, &index) != TCL_OK) {
2395 if (index >= numChars) {
2396 index = numChars - 1;
2444 int cur, index, length, numChars;
2452 numChars = Tcl_NumUtfChars(string, length);
2453 if (TclGetIntForIndexM(interp, objv[2], numChars-1, &index) != TCL_OK) {
2460 if (index < numChars) {
2473 cur = numChars;
2364 int cur, index, length, numChars; local
2425 int cur, index, length, numChars; local
[all...]
H A DtclIntDecls.h763 CONST char *command, int numChars,
771 CONST char *command, int numChars,
1214 int (*tclCheckInterpTraces) (Tcl_Interp *interp, CONST char *command, int numChars, Command *cmdPtr, int result, int traceFlags, int objc, Tcl_Obj *CONST objv[]); /* 170 */
1215 int (*tclCheckExecutionTraces) (Tcl_Interp *interp, CONST char *command, int numChars, Command *cmdPtr, int result, int traceFlags, int objc, Tcl_Obj *CONST objv[]); /* 171 */
/macosx-10.9.5/tcl-102/tk/tk/unix/
H A DtkUnixFont.c508 int result, numChars;
524 for (numChars = 0; src < srcEnd; numChars++) {
541 *dstCharsPtr = numChars;
591 int result, numChars;
605 for (numChars = 0; src < srcEnd; numChars++) {
632 *dstCharsPtr = numChars;
504 int result, numChars; local
586 int result, numChars; local
/macosx-10.9.5/tcl-102/tk84/tk/unix/
H A DtkUnixFont.c522 int result, numChars;
538 for (numChars = 0; src < srcEnd; numChars++) {
553 *dstCharsPtr = numChars;
603 int result, numChars;
617 for (numChars = 0; src < srcEnd; numChars++) {
643 *dstCharsPtr = numChars;
518 int result, numChars; local
598 int result, numChars; local
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DTextIterator.h283 String string(int numChars);
H A DTextIterator.cpp1445 String CharacterIterator::string(int numChars) argument
1448 result.reserveInitialCapacity(numChars);
1449 while (numChars > 0 && !atEnd()) {
1450 int runSize = min(numChars, length());
1452 numChars -= runSize;
/macosx-10.9.5/tidy-15.12/tidy/src/
H A Dstreamio.c664 int i, numChars = 1; local
672 numChars = 0;
677 numChars = 2;
682 numChars = 0;
691 for (i = 0; i < numChars; i++)
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeUtils.c1671 int numChars; /* The number of characters in this chunk. */ member in struct:LayoutChunk
1674 * * numChars if extra space characters were
1730 int numChars; local
1732 int maxChunks, numChars; local
1756 numChars = Tcl_NumUtfChars(start, numBytes);
1760 chunkPtr->numChars = numChars;
1761 chunkPtr->numDisplayChars = numChars;
1776 int numChars, /* Number of characters to consider from
1807 if (numChars <
1772 TextLayout_Compute( Tk_Font tkfont, CONST char *string, int numChars, int wrapLength, Tk_Justify justify, int maxLines, int lMargin1, int lMargin2, int flags ) argument
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFString.c113 extern void __CFStrConvertBytesToUnicode(const uint8_t *bytes, UniChar *buffer, CFIndex numChars);
1314 numBytes = vBuf.isASCII ? vBuf.numChars : (vBuf.numChars * sizeof(UniChar));
1565 CFStringRef CFStringCreateWithCharacters(CFAllocatorRef alloc, const UniChar *chars, CFIndex numChars) { argument
1566 return __CFStringCreateImmutableFunnel3(alloc, chars, numChars * sizeof(UniChar), kCFStringEncodingUnicode, false, true, false, false, false, ALLOCATORSFREEFUNC, 0);
1570 CFStringRef CFStringCreateWithCharactersNoCopy(CFAllocatorRef alloc, const UniChar *chars, CFIndex numChars, CFAllocatorRef contentsDeallocator) { argument
1571 return __CFStringCreateImmutableFunnel3(alloc, chars, numChars * sizeof(UniChar), kCFStringEncodingUnicode, false, false, false, false, true, contentsDeallocator, 0);
1888 CFMutableStringRef CFStringCreateMutableWithExternalCharactersNoCopy(CFAllocatorRef alloc, UniChar *chars, CFIndex numChars, CFIndex capacity, CFAllocatorRef externalCharactersAllocator) { argument
1898 CFStringSetExternalCharactersNoCopy(string, chars, numChars, capacity);
3862 CFIndex numChars; local
3946 CFIndex numChars; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1/
H A DtclIO.c4122 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
4184 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
4205 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4247 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4257 numChars -= (dstRead - dstWrote);
4259 if ((unsigned) numChars > (unsigned) toRead) {
4270 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4273 numChars -= (dstRead - dstWrote);
4282 return numChars;
4081 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars; local
H A DtclIO.c.orig3798 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
3860 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
3881 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3923 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3933 numChars -= (dstRead - dstWrote);
3935 if ((unsigned) numChars > (unsigned) toRead) {
3946 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3949 numChars -= (dstRead - dstWrote);
3958 return numChars;
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1b3/
H A DtclIO.c4122 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
4184 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
4205 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4247 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4257 numChars -= (dstRead - dstWrote);
4259 if ((unsigned) numChars > (unsigned) toRead) {
4270 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
4273 numChars -= (dstRead - dstWrote);
4282 return numChars;
4081 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars; local
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1a2/
H A DtclIO.c.orig3772 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
3834 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
3855 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3897 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3907 numChars -= (dstRead - dstWrote);
3909 if ((unsigned) numChars > (unsigned) toRead) {
3920 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3923 numChars -= (dstRead - dstWrote);
3932 return numChars;
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1b1/
H A DtclIO.c.orig3798 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
3860 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
3881 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3923 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3933 numChars -= (dstRead - dstWrote);
3935 if ((unsigned) numChars > (unsigned) toRead) {
3946 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3949 numChars -= (dstRead - dstWrote);
3958 return numChars;
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/v8.1b2/
H A DtclIO.c.orig3798 int srcLen, srcRead, dstNeeded, dstRead, dstWrote, numChars;
3860 dst, TCL_UTF_MAX + 1, &srcRead, &dstWrote, &numChars);
3881 dstNeeded + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3923 dst, dstRead + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3933 numChars -= (dstRead - dstWrote);
3935 if ((unsigned) numChars > (unsigned) toRead) {
3946 dst, eof - dst + TCL_UTF_MAX, &srcRead, &dstWrote, &numChars);
3949 numChars -= (dstRead - dstWrote);
3958 return numChars;

Completed in 349 milliseconds

12345