Home
last modified time | relevance | path

Searched refs:hasToken (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/gpu/gl/builders/
DGrGLSLPrettyPrint.cpp69 } else if (this->hasToken("#") || this->hasToken("//")) { in prettify()
71 } else if (this->hasToken("/*")) { in prettify()
83 } else if (this->hasToken(")")) { in prettify()
85 } else if (this->hasToken("(")) { in prettify()
87 } else if (!parensDepth && this->hasToken(";")) { in prettify()
108 bool hasToken(const char* token) { in hasToken() function in GrGLSLPrettyPrint::GLSLPrettyPrint
148 if (this->hasToken(token)) { in parseUntil()
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssTokens.java101 return hasToken(); in hasNext()
138 public boolean hasToken() { in hasToken() method in CssTokens.TokenIterator
143 while (hasToken()) { in hasTokenAfterSpace()
160 if (!hasToken()) { throw new NoSuchElementException(); } in advance()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DXPathParser.java369 boolean hasToken; in lookbehindHasToken()
376 hasToken = (c0 == '|') ? false : true; in lookbehindHasToken()
380 hasToken = false; in lookbehindHasToken()
383 return hasToken; in lookbehindHasToken()