Searched refs:File (Results 26 - 50 of 136) sorted by relevance

123456

/freebsd-9.3-release/contrib/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h60 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
65 WriteGraph(File, Graph, Simple, Title);
119 raw_fd_ostream File(Filename.c_str(), ErrorInfo);
123 WriteGraph(File, Graph, Simple, Title);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DModule.h332 void setASTFile(const FileEntry *File) { argument
333 assert((getASTFile() == 0 || getASTFile() == File) && "file path changed");
334 getTopLevelModule()->ASTFile = File;
354 void addTopHeader(const FileEntry *File) { argument
355 assert(File);
356 TopHeaders.insert(File);
/freebsd-9.3-release/contrib/groff/src/utils/hpftodit/
H A Dhpftodit.cpp141 class File { class
143 File(const char *);
252 static void read_tags(File &);
254 static void check_units(File &, const int, double *, double *);
257 static void dump_ascii(File &, tag_type);
258 static void dump_tags(File &);
259 static void dump_symbol_sets(File &);
261 static void output_font_name(File &);
265 static void read_and_output_pcltypeface(File &);
269 static void read_symbol_sets(File
401 File::File(const char *s) function in class:File
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DModuleManager.cpp38 ModuleFile *ModuleManager::lookup(const FileEntry *File) { argument
40 = Modules.find(File);
83 New->File = Entry;
159 Modules.erase((*victim)->File);
161 FileMgr.invalidateCache((*victim)->File);
387 const FileEntry *&File) {
388 File = FileMgr.getFile(FileName, /*openFile=*/false, /*cacheFailure=*/false);
390 if (!File && FileName != "-") {
394 if ((ExpectedSize && ExpectedSize != File->getSize()) ||
395 (ExpectedModTime && ExpectedModTime != File
384 lookupModuleFile(StringRef FileName, off_t ExpectedSize, time_t ExpectedModTime, const FileEntry *&File) argument
[all...]
/freebsd-9.3-release/sys/boot/efi/include/
H A Defiprot.h184 IN struct _EFI_FILE_HANDLE *File,
196 // File attributes
208 IN struct _EFI_FILE_HANDLE *File
214 IN struct _EFI_FILE_HANDLE *File
220 IN struct _EFI_FILE_HANDLE *File,
228 IN struct _EFI_FILE_HANDLE *File,
236 IN struct _EFI_FILE_HANDLE *File,
243 IN struct _EFI_FILE_HANDLE *File,
250 IN struct _EFI_FILE_HANDLE *File,
259 IN struct _EFI_FILE_HANDLE *File,
[all...]
/freebsd-9.3-release/contrib/sendmail/contrib/
H A Dqtool.pl9 use File::Basename;
10 use File::Copy;
11 use File::Spec;
284 ($source_base_name, $source_dir_name) = File::Basename::fileparse($source_name);
292 $source_name = File::Spec->catfile("$source_dir_name",
299 $source_name = File::Spec->catfile("$source_dir_name", "qf",
305 $data_dir_name = File::Spec->catfile("$source_dir_name", "df");
310 $source_dir_name = File::Spec->catfile("$source_dir_name",
466 $result = File::Copy::move($src_name, $dst_name);
469 return "File mov
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/unity/auto/
H A Dgenerate_test_runner.rb8 File.expand_path(File.join(File.dirname(__FILE__),'colour_prompt'))
21 require "#{File.expand_path(File.dirname(__FILE__))}/type_sanitizer"
55 module_name = File.basename(input_file)
59 source = File.read(input_file)
78 File.open(output_file, 'w') do |output|
164 mock_headers << File.basename(include_file) if (include_file =~ /^mock/i)
H A DparseOutput.rb35 output = File.open("report.xml", "w")
130 File.open(name).each do |line|
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DASTUnit.h168 const FileEntry *File; member in class:clang::ASTUnit::PreambleData
173 PreambleData() : File(0), NumLines(0) { }
176 File = F;
181 void clear() { Buffer.clear(); File = 0; NumLines = 0; }
530 void findFileRegionDecls(FileID File, unsigned Offset, unsigned Length,
549 SourceLocation getLocation(const FileEntry *File,
553 SourceLocation getLocation(const FileEntry *File, unsigned Offset) const;
800 /// \param File The file in which code completion will occur.
817 void CodeComplete(StringRef File, unsigned Line, unsigned Column,
831 bool Save(StringRef File);
[all...]
H A DVerifyDiagnosticConsumer.h225 UnparsedFileStatus(const FileEntry *File, bool FoundDirectives) argument
226 : Data(File, FoundDirectives) {}
252 /// File has been processed via HandleComment.
255 /// File has diagnostics and may have directives.
258 /// File has diagnostics but guaranteed no directives.
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPLexerChange.cpp212 const FileEntry *File,
216 StringRef FilePath = File->getDir()->getName();
223 llvm::sys::path::filename(File->getName()));
231 Result = File->getName();
470 const FileEntry *File = Entry.getFile().getContentCache()->OrigEntry; local
471 if (!File)
475 if (!ModMap.findModuleForHeader(File) &&
476 !ModMap.isHeaderInUnavailableModule(File)) {
478 << File->getName() << Mod->getFullModuleName();
211 computeRelativePath(FileManager &FM, const DirectoryEntry *Dir, const FileEntry *File, SmallString<128> &Result) argument
H A DModuleMap.cpp170 ModuleMap::findModuleForHeader(const FileEntry *File, argument
172 HeadersMap::iterator Known = Headers.find(File);
176 // Iterate over all modules that 'File' is part of to find the best fit.
185 // If 'File' is part of 'RequestingModule', 'RequestingModule' is the
198 // If 'File' is a public header of this module, this is as good as we
209 if (File->getDir() == BuiltinIncludeDir &&
210 isBuiltinHeader(llvm::sys::path::filename(File->getName()))) {
214 if (Headers.find(File) != Headers.end())
215 return findModuleForHeader(File, RequestingModule);
218 const DirectoryEntry *Dir = File
1489 const FileEntry *File = 0; local
2120 parseModuleMapFile(const FileEntry *File, bool IsSystem) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp138 std::string getAbsolutePath(StringRef File) { argument
139 StringRef RelativePath(File);
279 SmallString<1024> File(getAbsolutePath(SourcePaths[I]));
282 Compilations.getCompileCommands(File.str());
285 CompileCommands.push_back(std::make_pair(File.str(),
294 llvm::outs() << "Skipping " << File << ". Command line not found.\n";
336 std::string File = CompileCommands[I].first; local
355 llvm::dbgs() << "Processing: " << File << ".\n";
365 llvm::errs() << "Error while processing " << File << ".\n";
/freebsd-9.3-release/contrib/cvs/contrib/
H A Dpvcs2rcs.in86 # sure you delete the last RCS Archive File which was being written.
129 '\.(?i)lif$' => "Netware Binary File",
133 '\.(?i)res$' => "DOS/Wintel Resource File",
134 '\.(?i)ico$' => "DOS/Wintel Icon File",
156 use File::Path;
157 use IO::File;
307 $fh = new IO::File;
321 $fh = new IO::File;
360 my $fh = new IO::File ">>$errorfile_name" or new IO::File ">
[all...]
H A Dcheck_cvs.in54 use File::Find;
55 use File::Basename;
56 use File::Path;
144 print( "**** File: $broken\n" );
151 print( "**** File: $extra\n" );
181 my $path = $File::Find::name;
186 print( "\tProcessing File: $path\n" ) if( $verbose );
192 elsif( ! -d $File::Find::name )
296 # The $_ is saved off because The File::find functionality
358 # If we can get the File
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DCompilation.cpp72 bool Compilation::CleanupFile(const char *File, bool IssueErrors) const { argument
73 std::string P(File);
88 if (!llvm::sys::fs::can_write(File) || !llvm::sys::fs::is_regular_file(File))
91 if (llvm::error_code EC = llvm::sys::fs::remove(File)) {
/freebsd-9.3-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h97 /// an i32, and File is a pointer to FILE.
98 Value *EmitFPutC(Value *Char, Value *File, IRBuilder<> &B,
102 /// pointer and File is a pointer to FILE.
103 Value *EmitFPutS(Value *Str, Value *File, IRBuilder<> &B, const DataLayout *TD,
107 /// a pointer, Size is an 'intptr_t', and File is a pointer to FILE.
108 Value *EmitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B,
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DBinary.cpp110 llvm_unreachable("Unexpected Binary File Type");
114 OwningPtr<MemoryBuffer> File; local
115 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Path, File))
117 return createBinary(File.take(), Result);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DModule.h41 MK_Module, ///< File is a module proper.
42 MK_PCH, ///< File is a PCH file treated as such.
43 MK_Preamble, ///< File is a PCH file treated as the preamble.
44 MK_MainFile ///< File is a PCH file treated as the actual main file.
70 InputFile(const FileEntry *File, argument
79 Val.setPointerAndInt(File, intVal);
131 const FileEntry *File; member in class:clang::serialization::ModuleFile
H A DModuleManager.h140 ModuleFile *lookup(const FileEntry *File);
266 /// \param File Will be set to the file if there is one, or null
275 const FileEntry *&File);
/freebsd-9.3-release/contrib/llvm/lib/Support/Unix/
H A DProgram.inc104 std::string File;
107 File = "/dev/null";
109 File = *Path;
112 int InFD = open(File.c_str(), FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666);
114 MakeErrMsg(ErrMsg, "Cannot open file '" + File + "' for "
134 const char *File;
137 File = "/dev/null";
139 File = Path->c_str();
142 FileActions, FD, File,
/freebsd-9.3-release/contrib/libstdc++/scripts/
H A Dmake_exports.pl10 use File::Glob ':glob';
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/
H A DARMBuildAttrs.h29 File = 1, enumerator in enum:llvm::ARMBuildAttrs::AttrType
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java77 "Program$File",
81 static File file;
92 getXMLEncoder(File file)
107 getXMLDecoder(File file)
113 getXMLDecoder(File file, ExceptionListener exceptionListener)
513 public static Program.File
514 getProgram$File()
531 return Program.File.class.cast(p);
588 performSerializationTest(File file, String classname)
624 performBeanTest(File fil
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DBuildLibCalls.cpp364 /// an integer and File is a pointer to FILE.
365 Value *llvm::EmitFPutC(Value *Char, Value *File, IRBuilder<> &B, argument
376 if (File->getType()->isPointerTy())
380 B.getInt32Ty(), File->getType(),
386 File->getType(), NULL);
389 CallInst *CI = B.CreateCall2(F, Char, File, "fputc");
397 /// pointer and File is a pointer to FILE.
398 Value *llvm::EmitFPutS(Value *Str, Value *File, IRBuilder<> &B, argument
411 if (File->getType()->isPointerTy())
416 File
430 EmitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B, const DataLayout *TD, const TargetLibraryInfo *TLI) argument
[all...]

Completed in 167 milliseconds

123456