Home
last modified time | relevance | path

Searched refs:input_file (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/llvm/utils/
H A Dextract-section.py32 def get_raw_section_dump(readobj_path, section_name, input_file): argument
35 input_file]
38 if input_file == '-':
71 arg_parser.set_defaults(format='bits', tool_path='llvm-readobj', input_file='-',
75 raw_section = get_raw_section_dump(args.tool_path, args.section, args.input_file)
/llvm-project-15.0.7/clang/unittests/Frontend/
H A DASTUnitTest.cpp31 std::unique_ptr<ToolOutputFile> input_file; member in __anon2d08965d0111::ASTUnitTest
39 input_file = std::make_unique<ToolOutputFile>(InputFileName, FD); in createASTUnit()
40 input_file->os() << ""; in createASTUnit()
160 input_file = std::make_unique<ToolOutputFile>(InputFileName, FD); in TEST_F()
161 input_file->os() << ""; in TEST_F()
/llvm-project-15.0.7/clang/tools/libclang/
H A Dlinker-script-to-export-list.py5 input_file = open(sys.argv[1]) variable
8 for line in input_file:
/llvm-project-15.0.7/clang/test/Analysis/
H A Dcheck-analyzer-fixit.py51 with open(input_file_name, 'r') as input_file:
52 input_text = input_file.read()
/llvm-project-15.0.7/lldb/test/API/python_api/process/io/
H A DTestProcessIO.py23 self.input_file = os.path.join(
147 local=self.local_input_file, remote=self.input_file))
159 self.launch_info.AddOpenFileAction(0, self.input_file, True, False)
/llvm-project-15.0.7/openmp/runtime/tools/
H A Dmessage-converter.pl461 my $input_file;
483 $input_file = $ARGV[ 0 ];
500 my $data = parse_source( $input_file );
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/
H A Dcheck_clang_tidy.py129 with open(self.input_file_name, 'r', encoding='utf-8') as input_file:
130 self.input_text = input_file.read()
/llvm-project-15.0.7/clang/utils/check_cfc/
H A Dcheck_cfc.py206 def set_input_file(args, input_file): argument
211 args[infile_idx] = input_file
/llvm-project-15.0.7/llvm/tools/opt-viewer/
H A Doptrecord.py271 def get_remarks(input_file, filter_=None): argument
276 with io.open(input_file, encoding = 'utf-8') as f:
/llvm-project-15.0.7/llvm/tools/llvm-lipo/
H A DLipoOpts.td56 "input_file in a universal binary. Requires -output option">;
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DEditline.h156 Editline(const char *editor_name, FILE *input_file, FILE *output_file,
/llvm-project-15.0.7/lldb/source/Host/common/
H A DEditline.cpp1378 Editline::Editline(const char *editline_name, FILE *input_file, in Editline() argument
1382 m_input_file(input_file), m_output_file(output_file), in Editline()
1383 m_error_file(error_file), m_input_connection(fileno(input_file), false), in Editline()