Searched refs:that (Results 1 - 6 of 6) 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 Dstring.h97 bool Equals(String* that) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Dclass.h42 * Given an offset, return the bit number which would encode that offset.
88 // colliding in the interface method table but increases the size of classes that implement
111 // the DexFile, moving the status to kStatusIdx, indicating that the
121 // temporary class that's acting as a placeholder for linking. The old
128 // class has a field that is of the type of the sub class. We need to be able
532 // Returns true if this class is in the same packages as that class.
533 bool IsInSamePackage(Class* that) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
537 // Returns true if this class can access that class.
538 bool CanAccess(Class* that) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
539 return that
[all...]
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...]
/art/runtime/arch/arm/
H A Dportable_entrypoints_arm.S69 @ TODO: just save the registers that are needed in artPortableProxyInvokeHandler.
101 @ TODO: just save the registers that are needed in artPortableResolutionTrampoline.
143 @ TODO: just save the registers that are needed in artPortableToInterpreterBridge.
/art/test/
H A DAndroid.run-test.mk53 # Tests that are timing sensitive and flaky on heavily loaded systems.
83 # Tests that are broken in --trace mode.
92 # Tests that need more than 2MB of RAM or are running into other corner cases in GC stress related
164 # A generated list of prerequisites that call 'run-test --build-only', the actual prerequisite is

Completed in 98 milliseconds