Lines Matching refs:compare
92 int compare(const ResourceNamedType& other) const;
138 int compare(const ResourceName& other) const;
351 inline int ResourceNamedType::compare(const ResourceNamedType& other) const { in compare() function
354 cmp = name.compare(other.name); in compare()
363 return lhs.compare(rhs) < 0;
367 return lhs.compare(rhs) == 0;
371 return lhs.compare(rhs) != 0;
432 inline int ResourceName::compare(const ResourceName& other) const { in compare() function
433 int cmp = package.compare(other.package); in compare()
435 cmp = type.compare(other.type); in compare()
437 cmp = entry.compare(other.entry); in compare()