Home
last modified time | relevance | path

Searched refs:strArr (Results 1 – 2 of 2) sorted by relevance

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
DSelectorUtils.java363 char[] strArr = str.toCharArray(); in match() local
367 int strIdxEnd = strArr.length - 1; in match()
386 if (different(caseSensitive, ch, strArr[i])) { in match()
405 if (different(caseSensitive, ch, strArr[strIdxStart])) { in match()
425 if (different(caseSensitive, ch, strArr[strIdxEnd])) { in match()
464 strArr[strIdxStart + i + j])) { in match()
/external/clang/test/Sema/
Dstring-plus-char.c17 char strArr[] = "foo"; in f() local
18 …str = strArr + 'c'; // expected-warning {{adding 'char' to a string pointer does not append to the… in f()