Lines Matching defs:realPath
635 std::string realPath;
636 if (!panda::ecmascript::RealPath(filename, realPath, false)) {
639 auto index = realPath.find_last_of('/');
643 std::string path = realPath.substr(0, index);
683 std::string realPath;
684 if (!RealPath(filename, realPath, false)) {
685 LOG_COMPILER(ERROR) << "Fail to get realPath: " << filename;
688 if (FileExist(realPath.c_str())) {
689 LOG_COMPILER(ERROR) << "AOT file: " << realPath << " exist, skip create empty file";
692 const char* rawPath = realPath.c_str();
701 LOG_COMPILER(ERROR) << "create empty AOT file: " << realPath << " due to illegal AP file";