Searched refs:isWhitespaceChar (Results 1 - 2 of 2) sorted by relevance

/external/deqp/executor/
H A DxeXMLParser.cpp47 static inline bool isWhitespaceChar (int ch) function in namespace:xe::xml
176 while (isWhitespaceChar(curChar))
/external/doclava/src/com/google/doclava/
H A DComment.java60 while (i < length && isWhitespaceChar(text.charAt(i++))) {}
114 if (!isWhitespaceChar(text.charAt(i))) {
162 if (text.charAt(i) == '{' && text.charAt(i+1) == '@' && !isWhitespaceChar(text.charAt(i+2))) {
192 while (index < end && !isWhitespaceChar(c)) {
213 while (index < end && isWhitespaceChar(text.charAt(index++))) {}
241 (index == 0 && text.length() > 1 && !isWhitespaceChar(text.charAt(index+1)))) {
271 while (isWhitespaceChar(text.charAt(index+1)) || !isWhitespaceChar(text.charAt(index-1))) {
287 index < endOfBlock && !isWhitespaceChar(c); c = text.charAt(index++)) {}
304 while (index < endOfBlock && isWhitespaceChar(tex
311 private boolean isWhitespaceChar(char c) { method in class:Comment
[all...]

Completed in 143 milliseconds