Lines Matching full:find
21 outputCIR_ = logOpt.find("cir") != std::string::npos || in CompilerLog()
22 logOpt.find("0") != std::string::npos; in CompilerLog()
23 outputLLIR_ = logOpt.find("llir") != std::string::npos || in CompilerLog()
24 logOpt.find("1") != std::string::npos; in CompilerLog()
25 outputASM_ = logOpt.find("asm") != std::string::npos || in CompilerLog()
26 logOpt.find("2") != std::string::npos; in CompilerLog()
27 outputType_ = logOpt.find("type") != std::string::npos || in CompilerLog()
28 logOpt.find("3") != std::string::npos; in CompilerLog()
29 allMethod_ = logOpt.find("all") != std::string::npos; in CompilerLog()
30 cerMethod_ = logOpt.find("all") == std::string::npos && in CompilerLog()
31 logOpt.find("cer") != std::string::npos; in CompilerLog()
32 noneMethod_ = logOpt.find("all") == std::string::npos && in CompilerLog()
33 logOpt.find("cer") == std::string::npos; in CompilerLog()
51 bool found = methods_.find(methodName) != std::string::npos; in IncludesMethod()
57 if (fileMethods_.find(fileName) == fileMethods_.end()) { in IncludesMethod()
61 auto it = find(methodVector.begin(), methodVector.end(), methodName); in IncludesMethod()
91 if (log_->nameIndex_.find(name_) == log_->nameIndex_.end()) { in TimeScope()
102 if (log_->nameIndex_.find(name_) == log_->nameIndex_.end()) { in TimeScope()
127 if (methodName.find(KeyStr) != std::string::npos) { in GetShortName()
128 std::string::size_type index = methodName.find(KeyStr); in GetShortName()