Home | History | Annotate | Download | only in flags

Lines Matching full:matchlen

316         size_t matchLen = strlen(matchName);
321 matchLen--;
325 matchLen--;
327 if ((matchEnd = matchName[matchLen - 1] == '$')) {
328 matchLen--;
330 if (matchStart ? (!matchEnd || matchLen == testLen)
331 && strncmp(name, matchName, matchLen) == 0
332 : matchEnd ? matchLen <= testLen
333 && strncmp(name + testLen - matchLen, matchName, matchLen) == 0