Searched refs:srcIndex (Results 1 - 22 of 22) sorted by relevance

/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkArgv.c82 int srcIndex; /* Location from which to read next argument
86 * than srcIndex). */
92 srcIndex = dstIndex = 0;
95 srcIndex = dstIndex = 1;
100 curArg = argv[srcIndex];
101 srcIndex++;
184 *((int *) infoPtr->dst) = strtol(argv[srcIndex], &endPtr, 0);
185 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
187 infoPtr->key, "\" but got \"", argv[srcIndex],
191 srcIndex
81 int srcIndex; /* Location from which to read next argument local
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkArgv.c86 int srcIndex; /* Location from which to read next argument
90 * than srcIndex). */
96 srcIndex = dstIndex = 0;
99 srcIndex = dstIndex = 1;
104 curArg = argv[srcIndex];
105 srcIndex++;
191 strtol(argv[srcIndex], &endPtr, 0);
192 if ((endPtr == argv[srcIndex]) || (*endPtr != 0)) {
195 argv[srcIndex], "\"", (char *) NULL);
198 srcIndex
85 int srcIndex; /* Location from which to read next argument local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dunorm_it.c135 int32_t srcIndex, destIndex, limit; local
138 srcIndex=delta;
139 if(srcIndex>api->start) {
141 while(srcIndex<limit && states[srcIndex]==UITER_NO_STATE) {
142 ++srcIndex;
148 while(srcIndex<limit) {
149 chars[destIndex]=chars[srcIndex];
150 states[destIndex++]=states[srcIndex++];
154 states[destIndex]=states[srcIndex];
162 int32_t srcIndex, destIndex, start; local
[all...]
H A Ducasemap.cpp221 int32_t srcIndex, destIndex; local
227 srcIndex=srcStart;
229 while(srcIndex<srcLimit) {
230 csc->cpStart=srcIndex;
231 U8_NEXT(src, srcIndex, srcLimit, c);
232 csc->cpLimit=srcIndex;
235 while(destIndex<destCapacity && i<srcIndex) {
425 int32_t srcIndex, destIndex; local
432 srcIndex=destIndex=0;
433 while(srcIndex<srcLengt
[all...]
H A Ducnv_ext.h355 int32_t **offsets, int32_t srcIndex,
366 UConverterToUnicodeArgs *pArgs, int32_t srcIndex,
375 int32_t **offsets, int32_t srcIndex,
386 UConverterFromUnicodeArgs *pArgs, int32_t srcIndex,
H A Dustrcase.cpp135 int32_t srcIndex, destIndex; local
141 srcIndex=srcStart;
143 while(srcIndex<srcLimit) {
144 csc->cpStart=srcIndex;
145 U16_NEXT(src, srcIndex, srcLimit, c);
146 csc->cpLimit=srcIndex;
335 int32_t srcIndex, destIndex; local
341 srcIndex=destIndex=0;
342 while(srcIndex<srcLength) {
343 U16_NEXT(src, srcIndex, srcLengt
[all...]
H A Ducnv_ext.cpp237 int32_t **offsets, int32_t srcIndex,
245 offsets, srcIndex,
255 offsets, srcIndex,
280 int32_t **offsets, int32_t srcIndex,
300 offsets, srcIndex,
369 UConverterToUnicodeArgs *pArgs, int32_t srcIndex,
395 &pArgs->offsets, srcIndex,
672 int32_t **offsets, int32_t srcIndex,
736 offsets, srcIndex,
748 int32_t **offsets, int32_t srcIndex,
234 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, uint32_t value, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) argument
276 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, int32_t firstLength, const char **src, const char *srcLimit, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) argument
368 ucnv_extContinueMatchToU(UConverter *cnv, UConverterToUnicodeArgs *pArgs, int32_t srcIndex, UErrorCode *pErrorCode) argument
669 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) argument
744 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const UChar **src, const UChar *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) argument
861 ucnv_extContinueMatchFromU(UConverter *cnv, UConverterFromUnicodeArgs *pArgs, int32_t srcIndex, UErrorCode *pErrorCode) argument
[all...]
H A Dusprep.cpp523 int32_t srcIndex; local
533 for(srcIndex=0;srcIndex<srcLength;){
536 U16_NEXT(src,srcIndex,srcLength,ch);
547 uprv_syntaxError(src,srcIndex-U16_LENGTH(ch), srcLength,parseError);
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdb.cpp355 for (uint32 srcIndex = 0; srcIndex < src.NumberOfValues; srcIndex++) {
356 uint32 destIndex = NumberOfValues + srcIndex;
359 Value[destIndex].Data = inAllocator.alloc<uint8>((UInt32)src.Value[srcIndex].Length);
360 Value[destIndex].Length = src.Value[srcIndex].Length;
361 memcpy(Value[destIndex].Data, src.Value[srcIndex].Data, src.Value[srcIndex].Length);
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdb.cpp355 for (uint32 srcIndex = 0; srcIndex < src.NumberOfValues; srcIndex++) {
356 uint32 destIndex = NumberOfValues + srcIndex;
359 Value[destIndex].Data = inAllocator.alloc<uint8>((UInt32)src.Value[srcIndex].Length);
360 Value[destIndex].Length = src.Value[srcIndex].Length;
361 memcpy(Value[destIndex].Data, src.Value[srcIndex].Data, src.Value[srcIndex].Length);
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGlyphIterator.cpp22 srcIndex(-1), destIndex(-1), lookupFlags(theLookupFlags), featureMask(theFeatureMask), glyphGroup(0),
52 srcIndex = that.srcIndex;
70 srcIndex = that.srcIndex;
88 srcIndex = that.srcIndex;
H A DGlyphIterator.h89 le_int32 srcIndex; member in class:GlyphIterator
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dutxttest.cpp302 int srcIndex = 0; // Code Point indexes of the block to operate on for local
326 case 1: srcIndex = 0; break;
327 case 2: srcIndex = 1; break;
328 case 3: srcIndex = cpCount - srcLength; break;
329 case 4: srcIndex = cpCount - srcLength - 1; break;
330 case 5: srcIndex = cpCount / 2; break;
332 if (srcIndex < 0 || srcIndex + srcLength > cpCount) {
346 case 3: destIndex = srcIndex - 1; break;
347 case 4: destIndex = srcIndex
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkNotebook.c924 int srcIndex, destIndex; local
948 srcIndex = Ttk_SlaveIndex(nb->notebook.mgr, slaveWindow);
949 if (srcIndex < 0) { /* New slave */
953 interp, nb->notebook.mgr, objv[3], &srcIndex) != TCL_OK)
961 Ttk_SlaveData(nb->notebook.mgr,srcIndex),
962 Ttk_SlaveWindow(nb->notebook.mgr,srcIndex),
971 Ttk_ReorderSlave(nb->notebook.mgr, srcIndex, destIndex);
976 if (current == srcIndex) {
978 } else if (destIndex <= current && current < srcIndex) {
980 } else if (srcIndex < curren
[all...]
H A DttkPanedwindow.c649 int srcIndex, destIndex; local
671 srcIndex = Ttk_SlaveIndex(pw->paned.mgr, slaveWindow);
672 if (srcIndex < 0) { /* New slave: */
678 Ttk_ReorderSlave(pw->paned.mgr, srcIndex, destIndex);
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLObjectElement.cpp137 int srcIndex = -1, dataIndex = -1; local
140 srcIndex = i;
145 if (srcIndex == -1 && dataIndex != -1) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.cpp671 void BytecodeGenerator::retrieveLastUnaryOp(int& dstIndex, int& srcIndex) argument
676 srcIndex = instructions().at(size - 1).u.operand;
773 int srcIndex; local
775 retrieveLastUnaryOp(dstIndex, srcIndex);
782 instructions().append(srcIndex);
788 int srcIndex; local
790 retrieveLastUnaryOp(dstIndex, srcIndex);
797 instructions().append(srcIndex);
883 int srcIndex; local
885 retrieveLastUnaryOp(dstIndex, srcIndex);
898 int srcIndex; local
913 int srcIndex; local
1052 int srcIndex; local
[all...]
H A DBytecodeGenerator.h565 void retrieveLastUnaryOp(int& dstIndex, int& srcIndex);
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Dwrtxml.cpp225 int32_t srcIndex=0; local
246 while(srcIndex<srcLen){
247 U16_NEXT(src, srcIndex, srcLen, c);
/macosx-10.9.5/CF-855.17/
H A DCFBundle.c3922 CFIndex srcIndex = 0, dstIndex = 0; local
3924 for (srcIndex=0; srcIndex<len; srcIndex++) {
3925 thePath[dstIndex] = thePath[srcIndex];
3927 while (srcIndex < len-1 && thePath[srcIndex] == '/' && (thePath[srcIndex+1] == '/' || (thePath[srcIndex+1] == '.' && srcIndex < le
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dnucnvtst.c3458 int32_t srcIndex=0; local
3471 for (; srcIndex<srcLen; ) {
3472 UChar32 c = src[srcIndex++];
3474 c = u_unescapeAt(_charAt,&srcIndex,srcLen,(void*)src); /* advances i*/
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dusearch.cpp4046 printf("%8x@%d ", ceb.get(ii)->ce, ceb.get(ii)->srcIndex);
4297 printf("%8x@%d ", ceb.get(ii)->ce, ceb.get(ii)->srcIndex);

Completed in 414 milliseconds