Home | History | Annotate | Download | only in alsa

Lines Matching refs:offset

34         int offset = startIndex;
35 for (; offset < len; offset++) {
36 if (mDelimiters.indexOf(line.charAt(offset)) == -1) {
42 return offset < len ? offset : kTokenNotFound;
47 int offset = startIndex;
48 for (; offset < len; offset++) {
49 if (mDelimiters.indexOf(line.charAt(offset)) != -1) {
55 return offset < len ? offset : kTokenNotFound;