Searched refs:ARFile (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/llvmCore-3425.0.34/lib/Archive/
H A DArchiveWriter.cpp30 static inline void writeInteger(unsigned num, std::ofstream& ARFile) { argument
33 ARFile << (unsigned char)num;
39 ARFile << (unsigned char)(0x80 | ((unsigned char)num & 0x7F));
204 std::ofstream& ARFile,
210 unsigned filepos = ARFile.tellp();
271 ARFile.write((char*)&Hdr, sizeof(Hdr));
275 ARFile.write(member.getPath().str().data(),
280 ARFile.write(data,fSize);
283 if ((ARFile.tellp() & 1) == 1)
284 ARFile << ARFILE_PA
202 writeMember( const ArchiveMember& member, std::ofstream& ARFile, bool CreateSymbolTable, bool TruncateNames, std::string* ErrMsg ) argument
293 writeSymbolTable(std::ofstream& ARFile) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Bitcode/
H A DArchive.h478 void writeSymbolTable(std::ofstream& ARFile);
487 std::ofstream& ARFile, ///< The file to write member onto

Completed in 128 milliseconds