| /llvm-project-15.0.7/utils/arcanist/ |
| H A D | clang-format.sh | 28 src_file="${1}" 31 readonly src_file 34 cp -p "${src_file}" "${original_file}" 35 cp -p "${src_file}" "${formatted_file}" 55 git diff-index -U0 "${arc_base_commit}" "${src_file}" \ 58 cp -p "${src_file}" "${formatted_file}" 59 cp -p "${original_file}" "${src_file}" 60 if ! diff -q "${src_file}" "${formatted_file}" > /dev/null ; then 64 cat "${src_file}"
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_by_line_and_column/ |
| H A D | TestBreakpointByLineAndColumn.py | 18 src_file = lldb.SBFileSpec("main.cpp") 22 src_file, line, 50) 35 src_file = lldb.SBFileSpec("main.cpp") 38 _, _, _, breakpoint = lldbutil.run_to_line_breakpoint(self, src_file, 70 src_file = lldb.SBFileSpec("main.cpp") 76 valid_bpkt = target.BreakpointCreateByLocation(src_file, line, 120 invalid_bpkt = target.BreakpointCreateByLocation(src_file, line, column,
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/orderedset/ |
| H A D | TestOrderedSet.py | 26 src_file = "main.m" 27 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/source-manager/ |
| H A D | TestSourceManager.py | 267 src_file = 'artificial_location.c' 268 d = {'C_SOURCES': src_file } 273 lldb.SBFileSpec(src_file, False)) 276 substrs=['stop reason = breakpoint', '%s:%d' % (src_file,0),
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/ |
| H A D | test_from_cmd.py | 83 src_file = os.path.join(target_dir, src_file_name) 85 create_empty_file(src_file) 86 command = ' '.join([compiler, '-c', src_file, '-o', obj_file])
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/incomplete-types/ |
| H A D | TestCppIncompleteTypes.py | 47 src_file = "main.cpp" 48 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/save_jit_objects/ |
| H A D | TestSaveJITObjects.py | 29 src_file = "main.c" 30 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/limit-debug-info/ |
| H A D | TestWithLimitDebugInfo.py | 13 src_file = os.path.join(self.getSourceDir(), "main.cpp") 14 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/libc/cmake/modules/ |
| H A D | LLVMLibCHeaderRules.cmake | 22 set(src_file ${CMAKE_CURRENT_SOURCE_DIR}/${ADD_HEADER_HDR}) variable 26 COMMAND cp ${src_file} ${dest_file} 27 DEPENDS ${src_file}
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/unions/ |
| H A D | TestUnionMembers.py | 41 src_file = os.path.join(self.getSourceDir(), "main.c") 42 self.src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/flang/tools/f18/ |
| H A D | flang-to-external-fc.in | 337 local -r src_file=$1 342 current_ext=${src_file##*.} 345 out_file=$(basename "${src_file}" "$current_ext")${new_ext}
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/tests/ |
| H A D | CMakeLists.txt | 12 foreach (src_file ${XRAY_ALL_SOURCE_FILES_ABS_PATHS}) 13 if (NOT EXISTS "${src_file}") 14 message(FATAL_ERROR "Source file \"${src_file}\" does not exist")
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/gmodules/ |
| H A D | TestWithModuleDebugging.py | 15 src_file = os.path.join(self.getSourceDir(), "main.cpp") 16 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/global_operators/ |
| H A D | TestCppGlobalOperators.py | 16 src_file = "main.cpp" 17 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/commands/expression/macros/ |
| H A D | TestMacros.py | 28 src_file = "main.cpp" 30 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/nsimport/ |
| H A D | TestCppNsImport.py | 17 src_file = os.path.join(self.getSourceDir(), "main.cpp") 18 src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/clang/tools/scan-build-py/lib/libear/ |
| H A D | __init__.py | 170 src_file = 'check.c' 171 with open(os.path.join(work_dir, src_file), 'w') as handle: 174 execute([self.ctx.compiler, src_file] + self.ctx.c_flags,
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/ |
| H A D | CMakeLists.txt | 130 foreach (src_file ${XRAY_ALL_SOURCE_FILES}) 133 "${CMAKE_CURRENT_SOURCE_DIR}/${src_file}")
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/member-and-local-vars-with-same-name/ |
| H A D | TestMembersAndLocalsWithSameName.py | 233 src_file = os.path.join(cwd, "main.cpp") 234 self.src_file_spec = lldb.SBFileSpec(src_file)
|
| /llvm-project-15.0.7/lldb/tools/lldb-test/ |
| H A D | lldb-test.cpp | 425 FileSpec src_file(File); in findFunctions() local 433 cu_sp->FindLineEntry(0, Line, &src_file, false, &le); in findFunctions() 479 FileSpec src_file(File); in findBlocks() local 487 cu_sp->FindLineEntry(0, Line, &src_file, false, &le); in findBlocks()
|
| /llvm-project-15.0.7/compiler-rt/cmake/Modules/ |
| H A D | AddCompilerRT.cmake | 552 set(src_file "${CMAKE_CURRENT_SOURCE_DIR}/${file_name}") variable 555 DEPENDS ${src_file} 556 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 983 auto src_file = m_session_up->getSourceFileById(src_file_id); in ParseVariableForPDBData() local 984 if (src_file) { in ParseVariableForPDBData() 985 FileSpec spec(src_file->getFileName()); in ParseVariableForPDBData()
|