| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/t/ |
| H A D | 03-cplusplus.t | 17 my ($source_file, $object_file, $lib_file); 33 $source_file = File::Spec->catfile('t', 'cplust.cc'); 35 open my $FH, '>', $source_file or die "Can't create $source_file: $!"; 39 ok -e $source_file, "source file '$source_file' created"; 41 $object_file = $b->object_file($source_file); 44 is $object_file, $b->compile(source => $source_file, 'C++' => 1); 55 for ($source_file, $object_file, $lib_file) {
|
| H A D | 01-basic.t | 17 my ($source_file, $object_file, $lib_file); 33 $source_file = File::Spec->catfile('t', 'basict.c'); 36 open FH, '>', $source_file or die "Can't create $source_file: $!"; 40 ok -e $source_file, "source file '$source_file' created"; 42 $object_file = $b->object_file($source_file); 45 is $object_file, $b->compile(source => $source_file); 56 for ($source_file, $object_file, $lib_file) {
|
| H A D | 02-link.t | 17 my ($source_file, $object_file, $exe_file); 34 $source_file = File::Spec->catfile('t', 'linkt.c'); 36 open my $FH, '>', $source_file or die "Can't create $source_file: $!"; 40 ok -e $source_file, "generated '$source_file'"; 43 eval { $object_file = $b->compile(source => $source_file) }; 74 for ($source_file, $object_file, $exe_file) {
|
| H A D | 04-base.t | 20 my ( $source_file, $object_file, $lib_file ); 134 $source_file = File::Spec->catfile('t', 'baset.c'); 135 create_c_source_file($source_file); 136 ok(-e $source_file, "source file '$source_file' created"); 140 is( $base->object_file($source_file), 159 $source_file = File::Spec->catfile('t', 'baset.c'); 160 create_c_source_file($source_file); 161 ok(-e $source_file, "source file '$source_file' created"); 383 for ($source_file, $object_file, $lib_file) { 397 my $source_file = shift; [all …]
|
| /openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/ |
| H A D | 001-basic.t | 11 my ($source_file, $obj_file, $lib_file); 41 $source_file = 'XSTest.c'; 44 $pxs->process_file(filename => 'XSTest.xs', output => $source_file, prototypes => 0); 45 ok -e $source_file, "Create an output file"; 53 $obj_file = $b->compile( source => $source_file ); 86 open my $IN, '<', $source_file 87 or die "Unable to open $source_file: $!"; 133 close $IN or die "Unable to close $source_file: $!"; 136 for ( $obj_file, $lib_file, $source_file) { 157 $source_file = 'XSTest.c'; [all …]
|
| H A D | 003-usage.t | 16 my ($source_file, $obj_file, $lib_file, $module); 30 $source_file = 'XSUsage.c'; 33 ExtUtils::ParseXS->process_file(filename => 'XSUsage.xs', output => $source_file); 34 ok -e $source_file, "Create an output file"; 47 $obj_file = $b->compile( source => $source_file ); 115 for ( $obj_file, $lib_file, $source_file) {
|
| H A D | 002-more.t | 14 my ($source_file, $obj_file, $lib_file); 29 $source_file = 'XSMore.c'; 34 output => $source_file, 36 ok -e $source_file, "Create an output file"; 44 $obj_file = $b->compile( source => $source_file ); 129 for ( $obj_file, $lib_file, $source_file) {
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gprof/ |
| H A D | source.h | 24 typedef struct source_file struct 26 struct source_file *next; argument
|
| /openbsd-src/gnu/usr.bin/binutils/gprof/ |
| H A D | source.h | 24 typedef struct source_file struct 26 struct source_file *next; argument
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | Function.cpp | 244 void Function::GetStartLineSourceInfo(FileSpec &source_file, in GetStartLineSourceInfo() argument 247 source_file.Clear(); in GetStartLineSourceInfo() 256 source_file = m_type->GetDeclaration().GetFile(); in GetStartLineSourceInfo() 267 source_file = line_entry.file; in GetStartLineSourceInfo() 272 void Function::GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no) { in GetEndLineSourceInfo() argument 274 source_file.Clear(); in GetEndLineSourceInfo() 289 source_file = line_entry.file; in GetEndLineSourceInfo()
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbinline.py | 48 for source_file in source_files: 49 file_handle = io.open(source_file, encoding='utf-8') 65 current_breakpoint['file_name'] = source_file
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBTarget.h | 635 const SBFileSpec &source_file, 641 const SBFileSpecList &source_file); 645 const SBFileSpecList &source_file, const SBStringList &func_names); 694 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, 712 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Android/ |
| H A D | PlatformAndroid.cpp | 193 std::string source_file = source_spec.GetPath(false); in GetFile() local 197 source_file.c_str()); in GetFile() 199 if (strchr(source_file.c_str(), '\'') != nullptr) in GetFile() 207 snprintf(cmd, sizeof(cmd), "cat '%s'", source_file.c_str()); in GetFile()
|
| /openbsd-src/usr.bin/sdiff/ |
| H A D | sdiff.c | 96 mktmpcpy(const char *source_file) in mktmpcpy() argument 105 ifd = open(source_file, O_RDONLY); in mktmpcpy() 109 err(2, "error getting file status from %s", source_file); in mktmpcpy() 118 if (errno == ENOENT && strcmp(source_file, "-") == 0) in mktmpcpy() 121 err(2, "error opening %s", source_file); in mktmpcpy() 142 warn("error reading from %s", source_file); in mktmpcpy()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | gcov.c | 1458 FILE *source_file; local 1467 source_file = fopen (total->name, "r"); 1468 if (!source_file) 1477 if (!fstat (fileno (source_file), &status) 1506 retval = fgets (string, STRING_SIZE, source_file); 1558 for (; (retval = fgets (string, STRING_SIZE, source_file)); line_num++) 1564 retval = fgets (string, STRING_SIZE, source_file); 1572 if (source_file) 1573 fclose (source_file);
|
| /openbsd-src/gnu/usr.bin/texinfo/makeinfo/ |
| H A D | macro.c | 103 add_macro (char *name, char **arglist, char *body, char *source_file, in add_macro() argument 130 input_filename = def->source_file; in add_macro() 146 free (def->source_file); in add_macro() 150 def->source_file = xstrdup (source_file); in add_macro() 758 free (def->source_file); in cm_unmacro()
|
| H A D | macro.h | 41 char *source_file; /* File where this macro is defined. */ member
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | gcov.c | 1782 FILE *source_file; in output_lines() local 1797 source_file = fopen (src->name, "r"); in output_lines() 1798 if (!source_file) in output_lines() 1807 if (!fstat (fileno (source_file), &status) in output_lines() 1857 retval = fgets (string, STRING_SIZE, source_file); in output_lines() 1900 for (; (retval = fgets (string, STRING_SIZE, source_file)); line_num++) in output_lines() 1906 retval = fgets (string, STRING_SIZE, source_file); in output_lines() 1914 if (source_file) in output_lines() 1915 fclose (source_file); in output_lines()
|
| /openbsd-src/gnu/llvm/libcxx/benchmarks/ |
| H A D | CMakeLists.txt | 114 function(add_benchmark_test name source_file) 117 add_executable(${libcxx_target} EXCLUDE_FROM_ALL ${source_file}) 138 add_executable(${native_target} EXCLUDE_FROM_ALL ${source_file})
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | tracepoint.h | 56 char *source_file; member
|
| H A D | tracepoint.c | 345 t->source_file = NULL; in set_raw_tracepoint() 347 t->source_file = savestring (sal.symtab->filename, in set_raw_tracepoint() 437 if (addressprint || (tp->source_file == NULL)) in trace_mention() 442 if (tp->source_file) in trace_mention() 444 tp->source_file, tp->line_number); in trace_mention() 506 if (t->source_file) in tracepoints_info() 516 fputs_filtered (t->source_file, gdb_stdout); in tracepoints_info() 586 if (t->source_file) in tracepoint_operation() 587 xfree (t->source_file); in tracepoint_operation()
|
| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBTarget.i | 655 …BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, cons… 663 const SBFileSpecList &source_file, 787 BreakpointsCreateFromFile(SBFileSpec &source_file, 806 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | Function.h | 470 void GetStartLineSourceInfo(FileSpec &source_file, uint32_t &line_no); 481 void GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no);
|
| /openbsd-src/usr.bin/tic/ |
| H A D | tic.c | 705 const char *source_file = "terminfo"; in main() local 915 source_file = argv[optind++]; in main() 927 source_file = "/etc/termcap"; in main() 932 source_file = termcap; in main() 935 source_file = my_tmpname; in main() 938 tmp_fp = open_input(source_file, (char *) 0); in main() 939 to_remove = source_file; in main() 958 tmp_fp = open_input(source_file, my_altfile); in main() 959 if (!strcmp(source_file, "-")) { in main() 960 source_file = STDIN_NAME; in main() [all …]
|
| /openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/cases/ |
| H A D | test_from_cdb.py | 20 source_file = os.path.join(source_dir, target_file + '.in') 22 with open(source_file, 'r') as in_handle:
|