Home
last modified time | relevance | path

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

/external/skqp/src/gpu/
DGrSKSLPrettyPrint.cpp68 } else if (this->hasToken("#") || this->hasToken("//")) { in prettify()
70 } else if (this->hasToken("/*")) { in prettify()
82 } else if (this->hasToken(")")) { in prettify()
84 } else if (this->hasToken("(")) { in prettify()
86 } else if (!parensDepth && this->hasToken(";")) { in prettify()
108 bool hasToken(const char* token) { in hasToken() function in GrSKSLPrettyPrint::GLSLPrettyPrint
148 if (this->hasToken(token)) { in parseUntil()
/external/skia/src/gpu/
DGrShaderUtils.cpp66 } else if (this->hasToken("#") || this->hasToken("//")) { in prettify()
68 } else if (this->hasToken("/*")) { in prettify()
80 } else if (this->hasToken(")")) { in prettify()
82 } else if (this->hasToken("(")) { in prettify()
84 } else if (!parensDepth && this->hasToken(";")) { in prettify()
106 bool hasToken(const char* token) { in hasToken() function in GrShaderUtils::GLSLPrettyPrint
146 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()