HomeSort by: relevance | last modified time | path
    Searched defs:KeyTy (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
IRMover.h 27 struct KeyTy {
30 KeyTy(ArrayRef<Type *> E, bool P);
31 KeyTy(const StructType *ST);
32 bool operator==(const KeyTy &that) const;
33 bool operator!=(const KeyTy &that) const;
37 static unsigned getHashValue(const KeyTy &Key);
39 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
BinaryHolder.h 102 struct KeyTy {
106 KeyTy() : Filename(), Timestamp() {}
107 KeyTy(StringRef Filename, TimestampTy Timestamp)
121 DenseMap<KeyTy, ObjectEntry> MemberCache;
148 template <> struct DenseMapInfo<dsymutil::BinaryHolder::ArchiveEntry::KeyTy> {
150 static inline dsymutil::BinaryHolder::ArchiveEntry::KeyTy getEmptyKey() {
151 return dsymutil::BinaryHolder::ArchiveEntry::KeyTy();
154 static inline dsymutil::BinaryHolder::ArchiveEntry::KeyTy getTombstoneKey() {
155 return dsymutil::BinaryHolder::ArchiveEntry::KeyTy("/", {});
159 getHashValue(const dsymutil::BinaryHolder::ArchiveEntry::KeyTy &K)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
LLVMContextImpl.h 76 struct KeyTy {
80 KeyTy(const ArrayRef<Type*>& E, bool P) :
83 KeyTy(const StructType *ST)
86 bool operator==(const KeyTy& that) const {
93 bool operator!=(const KeyTy& that) const {
106 static unsigned getHashValue(const KeyTy& Key) {
113 return getHashValue(KeyTy(ST));
116 static bool isEqual(const KeyTy& LHS, const StructType *RHS) {
119 return LHS == KeyTy(RHS);
128 struct KeyTy {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Linker/
IRMover.cpp 1531 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P)
1534 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST)
1537 bool IRMover::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const {
1541 bool IRMover::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const {
1553 unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) {
1559 return getHashValue(KeyTy(ST))
    [all...]

Completed in 16 milliseconds