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.cpp352 static const RecordType *getRecordType(QualType QT) { function
377 const RecordType *RT = getRecordType(Ty);
458 const RecordType *RT = getRecordType(ArgTy);
707 const RecordType *RT = getRecordType(QT);
/external/clang/lib/AST/
H A DASTContext.cpp2923 return getRecordType(Record);
2955 QualType ASTContext::getRecordType(const RecordDecl *Decl) const { function in class:ASTContext
5806 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5867 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
5941 QualType VaListTagType = Context->getRecordType(VaListTagDecl);
6034 = Context->getTrivialTypeSourceInfo(Context->getRecordType(VaListDecl));
6090 QualType VaListTagType = Context->getRecordType(VaListTagDecl);

Completed in 113 milliseconds