HomeSort by: relevance | last modified time | path
    Searched refs:Thin (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ArchiveWriter.h 40 bool Deterministic, bool Thin,
47 object::Archive::Kind Kind, bool Deterministic, bool Thin);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/
llvm-ar.cpp 118 [P] - use full names when matching (implied for thin archives)
121 [T] - create a thin archive
214 static bool Thin = false; ///< 'T' modifier
392 Thin = true;
393 // Thin archives store path names, so P should be forced.
603 fail("extracting from a thin archive is not supported");
652 if (Thin && !M.getParent()->isThin())
653 fail("cannot convert a regular archive to a thin one");
657 // If the child member we're trying to add is thin, use the path relative to
659 if (Thin && FlattenArchive)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ArchiveWriter.cpp 192 static bool useStringTable(bool Thin, StringRef Name) {
193 return Thin || Name.size() >= 16 || Name.contains('/');
213 bool Thin, const NewArchiveMember &M,
218 if (!useStringTable(Thin, M.MemberName))
223 if (Thin) {
407 object::Archive::Kind Kind, bool Thin, bool Deterministic,
478 StringRef Data = Thin ? "" : Buf.getBuffer();
505 printMemberHeader(Out, Pos, StringTable, MemberNames, Kind, Thin, M,
575 bool Deterministic, bool Thin) {
576 assert((!Thin || !isBSDLike(Kind)) && "Only the gnu format has a thin mode")
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachOUtils.cpp 94 for (auto &Thin : ArchFiles)
95 Args.push_back(Thin.path());
98 for (auto &Thin : ArchFiles) {
99 Thin.Arch = getArchName(Thin.Arch);
101 Args.push_back(Thin.Arch);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
llvm-objcopy.cpp 106 // For thin archives it writes the archive file itself as well as its members.
110 bool Deterministic, bool Thin) {
112 Deterministic, Thin))
115 if (!Thin)

Completed in 21 milliseconds