Home
last modified time | relevance | path

Searched refs:version_str (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp424 std::string version_str; in CreateModule() local
429 if (!version_str.empty()) in CreateModule()
430 version_str += "."; in CreateModule()
431 version_str += std::to_string(version_nums[i]); in CreateModule()
433 if (!version_str.empty()) in CreateModule()
434 object.try_emplace("version", version_str); in CreateModule()
/llvm-project-15.0.7/libcxx/utils/
H A Dgenerate_feature_test_macro_components.py957 version_str = template.format(
962 f.write(version_str)
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp843 llvm::StringRef version_str; in ParseVersionBuildDir() local
845 std::tie(version_str, build_str) = dir.split(' '); in ParseVersionBuildDir()
847 if (!version.tryParse(version_str) || in ParseVersionBuildDir()
/llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm79 const char *version_str = [version_value UTF8String];
80 version.tryParse(version_str);
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp2169 char version_str[7]; in GetSharedCacheUUID() local
2171 memcpy(version_str, dsc_header_data.GetData(&offset, 6), 6); in GetSharedCacheUUID()
2172 version_str[6] = '\0'; in GetSharedCacheUUID()
2173 if (strcmp(version_str, "dyld_v") == 0) { in GetSharedCacheUUID()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.mm2747 if (const char *version_str = [version_value UTF8String])
2748 return version_str;