Home
last modified time | relevance | path

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

/openbsd/src/usr.bin/lex/
Dtables.c80 int yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str, in yytbl_hdr_init() argument
86 th->th_hsize = 14 + strlen (version_str) + 1 + strlen (name) + 1; in yytbl_hdr_init()
90 th->th_version = copy_string (version_str); in yytbl_hdr_init()
Dtables.h69 int yytbl_hdr_init (struct yytbl_hdr *th, const char *version_str,
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DJSONUtils.cpp427 std::string version_str; in CreateModule() local
432 if (!version_str.empty()) in CreateModule()
433 version_str += "."; in CreateModule()
434 version_str += std::to_string(version_nums[i]); in CreateModule()
436 if (!version_str.empty()) in CreateModule()
437 object.try_emplace("version", version_str); in CreateModule()
/openbsd/src/gnu/llvm/libcxx/utils/
Dgenerate_feature_test_macro_components.py971 version_str = template.format(
976 f.write(version_str)
/openbsd/src/gnu/llvm/llvm/utils/release/
Dbump-version.py42 def version_str( member in Processor
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp844 llvm::StringRef version_str; in ParseVersionBuildDir() local
846 std::tie(version_str, build_str) = dir.split(' '); in ParseVersionBuildDir()
848 if (!version.tryParse(version_str) || in ParseVersionBuildDir()
/openbsd/src/gnu/llvm/lldb/source/Host/macosx/objcxx/
DHostInfoMacOSX.mm81 const char *version_str = [version_value UTF8String];
82 version.tryParse(version_str);
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
DObjectFileMachO.cpp2185 char version_str[7]; in GetSharedCacheUUID() local
2187 memcpy(version_str, dsc_header_data.GetData(&offset, 6), 6); in GetSharedCacheUUID()
2188 version_str[6] = '\0'; in GetSharedCacheUUID()
2189 if (strcmp(version_str, "dyld_v") == 0) { in GetSharedCacheUUID()
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
DMachProcess.mm2832 if (const char *version_str = [version_value UTF8String])
2833 return version_str;