Home | History | Annotate | Download | only in Object

Lines Matching refs:Format

1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===//
307 // same in all formats, just claim it to be gnu to make sure Format is
309 Format = K_GNU;
327 // Below is the pattern that is used to figure out the archive format
328 // GNU archive format
332 // BSD archive format
337 // COFF archive format
348 Format = K_BSD;
350 Format = K_DARWIN64;
363 Format = K_BSD;
379 Format = K_DARWIN64;
390 // MIPS 64-bit ELF archives use a special format of a symbol table.
391 // This format is marked by `ar_name` field equals to "/SYM64/".
413 Format = has64SymTable ? K_MIPS64 : K_GNU;
425 Format = has64SymTable ? K_MIPS64 : K_GNU;
436 Format = K_COFF;