Searched defs:getRecordType (Results 1 - 3 of 3) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
H A DDNSEntry.java65 result = this.getKey().equals(other.getKey()) && this.getRecordType().equals(other.getRecordType()) && this.getRecordClass() == other.getRecordClass();
77 return this.getKey().equals(entry.getKey()) && this.getRecordType().equals(entry.getRecordType()) && ((DNSRecordClass.CLASS_ANY == entry.getRecordClass()) || this.getRecordClass().equals(entry.getRecordClass()));
128 public DNSRecordType getRecordType() { method in class:DNSEntry
215 return (entry != null) && (entry.getRecordType() == this.getRecordType());
224 dout.writeShort(this.getRecordType().indexValue());
269 return this.getKey().hashCode() + this.getRecordType().indexValue() + this.getRecordClass().indexValue();
280 aLog.append(" type: " + this.getRecordType());
[all...]
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp356 static const RecordType *getRecordType(QualType QT) { function
368 const RecordType *RT = getRecordType(Ty);
495 const RecordType *RT = getRecordType(ArgTy);
592 const RecordType *RT = getRecordType(QT);
/external/clang/lib/AST/
H A DASTContext.cpp2957 return getRecordType(Record);
2988 QualType ASTContext::getRecordType(const RecordDecl *Decl) const { function in class:ASTContext
5851 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5903 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5963 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6026 QualType T = Context->getRecordType(VaListDecl);
6072 QualType VaListTagType = Context->getRecordType(VaListTagDecl);

Completed in 3822 milliseconds