Lines Matching refs:indexPtr
307 Entry *entryPtr, char *string, int *indexPtr));
1676 * A standard Tcl result. If all went well, then *indexPtr is
1689 GetEntryIndex(interp, entryPtr, string, indexPtr)
1694 int *indexPtr; /* Where to store converted index. */
1702 *indexPtr = entryPtr->selectAnchor;
1718 *indexPtr = entryPtr->numChars;
1724 *indexPtr = entryPtr->insertPos;
1737 *indexPtr = entryPtr->selectFirst;
1739 *indexPtr = entryPtr->selectLast;
1758 *indexPtr = 0;
1760 *indexPtr = TkMeasureChars(entryPtr->fontPtr,
1774 if (roundUp && (*indexPtr < entryPtr->numChars)) {
1775 *indexPtr += 1;
1778 if (Tcl_GetInt(interp, string, indexPtr) != TCL_OK) {
1781 if (*indexPtr < 0){
1782 *indexPtr = 0;
1783 } else if (*indexPtr > entryPtr->numChars) {
1784 *indexPtr = entryPtr->numChars;