Lines Matching refs:strKey
175 for ( ; mapPtr->strKey != NULL; mapPtr++) {
177 return mapPtr->strKey;
192 * If strKey was equal to the string keys of one of the elements
195 * string one) in the table if strKey was not equal to any of the
206 TkFindStateNum(interp, field, mapPtr, strKey)
210 CONST char *strKey; /* String to try to find in lookup table. */
214 if (mapPtr->strKey == NULL) {
218 for (mPtr = mapPtr; mPtr->strKey != NULL; mPtr++) {
219 if (strcmp(strKey, mPtr->strKey) == 0) {
225 Tcl_AppendResult(interp, "bad ", field, " value \"", strKey,
226 "\": must be ", mPtr->strKey, (char *) NULL);
227 for (mPtr++; mPtr->strKey != NULL; mPtr++) {
228 Tcl_AppendResult(interp, ", ", mPtr->strKey, (char *) NULL);