Home
last modified time | relevance | path

Searched refs:source_path (Results 1 – 23 of 23) sorted by relevance

/openbsd/gnu/llvm/llvm/utils/lit/lit/
H A Ddiscovery.py103 source_path = ts.getSourcePath(path_in_suite)
104 cfgpath = chooseConfigFileFromDir(source_path, litConfig.local_config_names)
146 source_path = ts.getSourcePath(path_in_suite)
147 if not os.path.exists(source_path):
151 if not os.path.isdir(source_path):
204 for filename in os.listdir(source_path):
210 file_sourcepath = os.path.join(source_path, filename)
H A DTestRunner.py1069 def parseIntegratedTestScriptCommands(source_path, keywords): argument
1091 f = open(source_path, 'rb')
/openbsd/gnu/llvm/llvm/utils/lit/lit/formats/
H A Dbase.py15 source_path = testSuite.getSourcePath(path_in_suite)
16 for filename in os.listdir(source_path):
22 filepath = os.path.join(source_path, filename)
79 test.source_path = path
99 cmd.append(test.source_path)
H A Dgoogletest.py49 source_path = testSuite.getSourcePath(path_in_suite)
51 dir_path = os.path.join(source_path, subdir)
57 execpath = os.path.join(source_path, subdir, fn)
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A DSourceBreakpoint.cpp18 void SourceBreakpoint::SetBreakpoint(const llvm::StringRef source_path) { in SetBreakpoint() argument
19 bp = g_vsc.target.BreakpointCreateByLocation(source_path.str().c_str(), line); in SetBreakpoint()
H A DSourceBreakpoint.h26 void SetBreakpoint(const llvm::StringRef source_path);
H A DJSONUtils.h317 llvm::json::Value CreateSource(llvm::StringRef source_path);
H A DJSONUtils.cpp605 llvm::json::Value CreateSource(llvm::StringRef source_path) { in CreateSource() argument
607 llvm::StringRef name = llvm::sys::path::filename(source_path); in CreateSource()
609 EmplaceSafeString(source, "path", source_path); in CreateSource()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dsource.c90 char *source_path; variable
307 puts_filtered (source_path); in show_directories()
355 source_path = xstrdup (buf); in init_source_path()
376 xfree (source_path); in directory_command()
382 mod_path (dirname, &source_path); in directory_command()
841 char *path = source_path; in find_and_open_source()
862 p = (char *) strstr (source_path, "$cdir"); in find_and_open_source()
869 alloca (strlen (source_path) + 1 + strlen (dirname) + 1); in find_and_open_source()
870 len = p - source_path; in find_and_open_source()
871 strncpy (path, source_path, len); /* Before $cdir */ in find_and_open_source()
[all …]
H A Dremote-vx.c1062 extern char *source_path; in vx_open()
1137 desc = openp (source_path, 0, pLoadFile->name, O_RDONLY, 0, &fullname); in vx_open()
H A Ddefs.h611 extern char *source_path;
H A DChangeLog-19944111 that source_path doesn't contain the current_directory from when
4113 harmful because it clobbers a source_path set in $HOME/.gdbinit).
H A DChangeLog-1990718 source.c: Globalize source_path, and make an alias "l" for "list"
/openbsd/gnu/usr.bin/binutils/gdb/mi/
H A Dmi-cmd-env.c233 xfree (source_path); in mi_cmd_env_dir()
238 env_mod_path (argv[i], &source_path); in mi_cmd_env_dir()
241 ui_out_field_string (uiout, "source-path", source_path); in mi_cmd_env_dir()
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/test-data/
H A Ddummy_format.py15 source_path = test.getSourcePath()
18 cfg.read(source_path)
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp249 FileSpec source_path(DBGSourcePath.c_str()); in CreateInstance() local
252 source_path.RemoveLastPathComponent(); in CreateInstance()
253 source_path.RemoveLastPathComponent(); in CreateInstance()
255 build_path.GetPath(), source_path.GetPath(), in CreateInstance()
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/xunit-output/
H A Ddummy_format.py15 source_path = test.getSourcePath()
18 cfg.read(source_path)
/openbsd/gnu/llvm/libcxx/utils/libcxx/test/
H A Dgooglebenchmark.py74 source_path = testSuite.getSourcePath(path_in_suite)
76 dir_path = os.path.join(source_path, subdir)
82 execpath = os.path.join(source_path, subdir, fn)
/openbsd/gnu/llvm/lldb/scripts/
H A Dinstall_custom_python.py31 source_path = os.path.join(source_dir, filename)
33 print('Copying file %s ==> %s...' % (source_path, dest_path))
34 shutil.copyfile(source_path, dest_path)
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/test-data-micro/
H A Ddummy_format.py15 source_path = test.getSourcePath()
18 cfg.read(source_path)
/openbsd/gnu/llvm/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp449 FileSpec source_path(DBGSourcePath.c_str()); in GetModuleSpecInfoFromUUIDDictionary() local
452 source_path.RemoveLastPathComponent(); in GetModuleSpecInfoFromUUIDDictionary()
453 source_path.RemoveLastPathComponent(); in GetModuleSpecInfoFromUUIDDictionary()
455 build_path.GetPath(), source_path.GetPath(), true); in GetModuleSpecInfoFromUUIDDictionary()
/openbsd/gnu/llvm/lldb/source/Target/
H A DStackFrame.cpp1643 ValueObjectSP source_path; in DoGuessValueAt() local
1648 source_path = DoGuessValueAt(frame, origin_register, 0, disassembler, in DoGuessValueAt()
1658 source_path = in DoGuessValueAt()
1661 if (!source_path) { in DoGuessValueAt()
1664 source_path = in DoGuessValueAt()
1665 GetValueForDereferincingOffset(frame, source_path, offset); in DoGuessValueAt()
1668 if (source_path) { in DoGuessValueAt()
1669 return source_path; in DoGuessValueAt()
/openbsd/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/
H A Dlldbvscode_testcase.py25 def set_source_breakpoints(self, source_path, lines, data=None): argument
33 source_path, lines, data)