Searched defs:that (Results 1 - 2 of 2) sorted by relevance

/art/runtime/mirror/
H A Dstring.cc134 bool String::Equals(String* that) { argument
135 if (this == that) {
138 } else if (that == nullptr) {
141 } else if (this->GetLength() != that->GetLength()) {
147 for (int32_t i = 0; i < that->GetLength(); ++i) {
148 if (this->CharAt(i) != that->CharAt(i)) {
236 // The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
H A Dclass.cc113 // Classes that are being resolved or initialized need to notify waiters that the class status
116 // Class is a temporary one, ensure that waiters for resolution get notified of retirement
117 // so that they can grab the new version of the class from the class linker's table.
159 // The descriptor indicates that this is the class for
271 // Sanity check that the number of bits set in the reference offset bitmap
299 bool Class::IsInSamePackage(Class* that) { argument
301 Class* klass2 = that;
1003 // to skip copying the tail part that we will overwrite here.
1062 // escalated visibility. We never return miranda methods that
[all...]

Completed in 73 milliseconds