reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
250 if (kind() != ObjKind)
tools/lld/ELF/InputFiles.h72 Kind k = kind(); 192 static bool classof(const InputFile *f) { return f->kind() == ObjKind; } 303 static bool classof(const InputFile *f) { return f->kind() == LazyObjKind; } 316 static bool classof(const InputFile *f) { return f->kind() == ArchiveKind; } 334 static bool classof(const InputFile *f) { return f->kind() == BitcodeKind; } 359 static bool classof(const InputFile *f) { return f->kind() == SharedKind; } 373 static bool classof(const InputFile *f) { return f->kind() == BinaryKind; }tools/lld/ELF/Symbols.h
241 isUsedInRegularObj(!file || file->kind() == InputFile::ObjKind),