Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/verification/verifier/
H A Dverifier.cpp208 static bool VeifyMethod(Class *klass, const std::string &fqMethodName, const std::string_view &unqualifiedMethodName, in VeifyMethod() argument
216 LOG(INFO, VERIFIER) << "Verification of method '" << fqMethodName << "'"; in VeifyMethod()
244 for (const std::string &fqMethodName : methodNames) { in RunVerifierImpl()
245 size_t pos = fqMethodName.find_last_of("::"); in RunVerifierImpl()
247 LOG(ERROR, VERIFIER) << "Error: Fully qualified method name must contain '::', was " << fqMethodName; in RunVerifierImpl()
251 std::string className = fqMethodName.substr(0, pos - 1); in RunVerifierImpl()
252 std::string_view unqualifiedMethodName = std::string_view(fqMethodName).substr(pos + 1); in RunVerifierImpl()
261 bool methodFound = VeifyMethod(klass, fqMethodName, unqualifiedMethodName, queue, methodsSet); in RunVerifierImpl()

Completed in 2 milliseconds