Lines Matching full:find
21 … outputCIR_ = (logOpt.find("cir") != std::string::npos) || (logOpt.find("0") != std::string::npos); in CompilerLog()
22 …outputLLIR_ = (logOpt.find("llir") != std::string::npos) || (logOpt.find("1") != std::string::npos… in CompilerLog()
23 … outputASM_ = (logOpt.find("asm") != std::string::npos) || (logOpt.find("2") != std::string::npos); in CompilerLog()
24 …outputType_ = (logOpt.find("type") != std::string::npos) || (logOpt.find("3") != std::string::npos… in CompilerLog()
25 allMethod_ = logOpt.find("all") != std::string::npos; in CompilerLog()
26 …cerMethod_ = (logOpt.find("all") == std::string::npos) && (logOpt.find("cer") != std::string::npos… in CompilerLog()
27 …noneMethod_ = (logOpt.find("all") == std::string::npos) && (logOpt.find("cer") == std::string::npo… in CompilerLog()
52 bool found = methods_.find(methodName) != std::string::npos; in IncludesMethod()
58 if (fileMethods_.find(fileName) == fileMethods_.end()) { in IncludesMethod()
62 auto it = find(methodVector.begin(), methodVector.end(), methodName); in IncludesMethod()
92 if (log_->nameIndex_.find(name_) == log_->nameIndex_.end()) { in TimeScope()
103 if (log_->nameIndex_.find(name_) == log_->nameIndex_.end()) { in TimeScope()
128 if (methodName.find(KeyStr) != std::string::npos) { in GetShortName()
129 std::string::size_type index = methodName.find(KeyStr); in GetShortName()