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

/art/runtime/mirror/
H A Dstring.cc136 bool String::Equals(String* that) { argument
137 if (this == that) {
140 } else if (that == NULL) {
143 } else if (this->GetLength() != that->GetLength()) {
149 for (int32_t i = 0; i < that->GetLength(); ++i) {
150 if (this->CharAt(i) != that->CharAt(i)) {
208 // The annoying part here is that 0x00e9 - 0xffff != 0x00ea,
H A Dclass.cc104 // This is to ensure that ThrowEarlierClassFailure will throw NoClassDefFoundError in that
130 // Classes that are being resolved or initialized need to notify waiters that the class status
133 // Class is a temporary one, ensure that waiters for resolution get notified of retirement
134 // so that they can grab the new version of the class from the class linker's table.
175 // The descriptor indicates that this is the class for
281 // Sanity check that the number of bits set in the reference offset bitmap
296 // Sanity check that the number of bits set in the reference offset bitmap
319 bool Class::IsInSamePackage(Class* that) { argument
[all...]

Completed in 157 milliseconds