Searched refs:skipExact (Results 1 – 8 of 8) sorted by relevance
189 bool isStatic = iParser.skipExact("static"); in parseOperator()191 bool returnsConst = iParser.skipExact("const"); in parseOperator()204 SkAssertResult(iParser.skipExact("operator")); in parseOperator()210 if (!iParser.skipExact(parser.fSymbol)) { in parseOperator()240 bool paramConst = iParser.skipExact("const"); in parseOperator()267 SkAssertResult(iParser.skipExact("[]")); in parseOperator()278 bool constMethod = iParser.skipExact(" const"); in parseOperator()577 parser.skipExact("#"); in crossCheck2()623 return inc.skipExact("SkDEBUGCODE("); in SkipImplementationWords()678 if (inc.skipExact("SK_WARN_UNUSED_RESULT")) { in crossCheckInside()[all …]
111 if (!t.skipExact("struct") && !t.skipExact("class") && !t.skipExact("enum class") in looks_like_method()112 && !t.skipExact("enum")) { in looks_like_method()116 if (t.skipExact("SK_API")) { in looks_like_method()128 if (!t.skipExact("struct") && !t.skipExact("class") && !t.skipExact("enum class") in looks_like_forward_declaration()129 && !t.skipExact("enum")) { in looks_like_forward_declaration()133 if (t.skipExact("SK_API")) { in looks_like_forward_declaration()173 if (!t.skipExact("class")) { in looks_like_class_decl()177 if (t.skipExact("SK_API")) { in looks_like_class_decl()193 SkAssertResult(t.skipExact(" k")); in looks_like_const()195 SkAssertResult(t.skipExact(" SK_")); in looks_like_const()[all …]
173 Resolvable::kCode == resolvable && this->skipExact(" const"); in skipToMethodEnd()186 this->skipExact(" const"); in skipToMethodEnd()
321 (void) parser.skipExact(" const"); in setLink()408 parser.skipExact("#Method "); in setLink()410 parser.skipExact("const "); // optional in setLink()1046 parser.skipExact("#Member"); in getMemberTypeName()1279 parser.skipExact((string(" ") + def->fMC + " ").c_str()); in markTypeOut()1682 if (parser.skipExact("@param ")) { // write parameters, if any in markTypeOut()1697 if (parser.skipExact("@return ")) { // write return, if any in markTypeOut()2231 parser.skipExact("#Method"); in rowOut()
1213 parser.skipExact("#Typedef"); in setUpGlobalSubstitutes()1373 parser.skipExact("#Method"); in setUpSubstitutes()1639 this->skipExact("#"); in findDefinitions()1815 if (this->skipExact(" const")) { in methodName()1882 if (!parser.skipExact(markName)) { in checkForFullTerminal()1894 if (fMC != parser.peek() && !parser.skipExact(name.c_str())) { in checkForFullTerminal()
391 if (!paramParser.skipExact("@param ")) { // write parameters, if any in setParams()
340 bool enumClass = enumClassCheck.skipExact("class "); in enumHeaderOut()2652 if (!this->skipExact( in writeHeader()2668 this->skipExact(android); in writeHeader()2669 } else if (!this->skipExact(google)) { in writeHeader()2672 if (!this->skipExact( in writeHeader()2742 if (!this->skipExact("*/\n\n")) { in writeHeader()
321 bool skipExact(const char* pattern) { in skipExact() function