Lines Matching refs:absolute_path
892 std::string absolute_path;
894 absolute_path = path;
896 absolute_path = dir_name + '/' + path;
898 std::replace(absolute_path.begin(), absolute_path.end(), '\\', '/');
900 std::istringstream segment_stream(absolute_path);
1007 std::string absolute_path = NormalizePath(ToSTLString(isolate, specifier),
1012 d->module_map.find(std::make_pair(absolute_path, module_type));
1100 std::string absolute_path =
1113 std::make_pair(absolute_path, request_module_type))) {
1117 if (FetchModuleTree(module, context, absolute_path, request_module_type)
1313 std::string absolute_path = NormalizePath(file_name, dir_name);
1318 d->module_map.find(std::make_pair(absolute_path, module_type));
1321 } else if (!FetchModuleTree(Local<Module>(), realm, absolute_path,
1369 std::string absolute_path = NormalizePath(file_name, GetWorkingDirectory());
1380 std::make_pair(absolute_path, ModuleType::kJavaScript));
1383 } else if (!FetchModuleTree(Local<Module>(), realm, absolute_path,
1438 std::string absolute_path = NormalizePath(file_name, GetWorkingDirectory());
1442 reinterpret_cast<uint8_t*>(ReadChars(absolute_path.c_str(), &length)));
1469 std::string absolute_path = NormalizePath(file_name, GetWorkingDirectory());
1471 std::unique_ptr<char[]> data(ReadChars(absolute_path.c_str(), &length));