Searched defs:Compare (Results 1 - 5 of 5) sorted by relevance

/art/test/003-omnibus-opcodes/src/
H A DCompare.java20 public class Compare { class
/art/runtime/
H A Ddex_cache_resolved_classes.h37 int Compare(const DexCacheResolvedClasses& other) const { function in class:art::DexCacheResolvedClasses
75 return a.Compare(b) < 0;
/art/runtime/base/
H A Dstringpiece.h151 int Compare(const StringPiece& rhs) const { function in class:art::StringPiece
217 return x.Compare(y) < 0;
H A Dvariant_map.h104 // Compare one key to another (same as operator<).
105 virtual bool Compare(const VariantMapKeyRaw* other) const { function in struct:art::detail::VariantMapKeyRaw
397 return lhs->Compare(rhs);
/art/compiler/optimizing/
H A Dnodes.h1205 M(Compare, BinaryOperation) \
3097 int32_t Compare(T x, T y) const { return x > y ? 1 : (x < y ? -1 : 0); } function in class:art::HTryBoundary::HClassTableGet::ComparisonBias::HCondition
3104 return std::isunordered(x, y) ? (IsGtBias() ? 1 : -1) : Compare(x, y);
3133 // `Compare(x, y) == 0`.
3135 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0),
3177 // `Compare(x, y) != 0`.
3179 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3214 // `Compare(x, y) < 0`.
3216 return MakeConstantCondition(Compute(Compare(x->GetValue(), y->GetValue()), 0), GetDexPc());
3251 // `Compare(
[all...]

Completed in 574 milliseconds