Home
last modified time | relevance | path

Searched refs:initialized (Results 1 – 21 of 21) sorted by relevance

/art/test/033-class-init-deadlock/
Dexpected.txt4 A initialized: false
5 B initialized: false
/art/test/800-smali/smali/
Db_22411633_3.smali17 # Create an initialized Object.
25 # At this point, an initialized and an uninitialized reference are merged. However, the
Db_18800943_1.smali4 # This constructor should fail verification as the object is not initialized by a super-call.
Db_18800943_2.smali4 # This constructor should fail verification as the object is not initialized by a super-call.
Db_22411633_2.smali39 # Test whether it's some initialized reference by calling hashCode. This should fail, as we
40 # merged initialized and uninitialized.
Db_22411633_1.smali30 # And test whether it's initialized by calling hashCode.
Db_22331663.smali30 # Catch handler. Here we had to merge the uninitialized with the initialized reference,
/art/test/964-default-iface-init-gen/util-src/
Dgenerate_java.py270 self.initialized = False
305 if self.default and not self.initialized:
306 self.initialized = True
315 if not self.default and not self.initialized:
316 self.initialized = True
/art/test/694-clinit-jit/
Dinfo.txt3 initialized.
/art/tools/amm/models/
DGraphics.md11 3. For each initialized `android.view.ThreadedRenderer`:
/art/test/802-deoptimization/smali/
Dcatch_handler_on_entry.smali7 # initialized to 0.
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md27 set the breakpoint. This means that classes might be initialized earlier than
/art/test/115-native-bridge/
Dexpected.txt1 Native bridge initialized.
/art/test/670-bitstring-type-check/
Dbuild61 // Make sure the bitstrings are initialized.
/art/runtime/
Dreflection_test.cc124 bool initialized = class_linker_->EnsureInitialized(self, h_class, true, true); in ReflectionTestMakeInterpreted() local
125 CHECK(initialized); in ReflectionTestMakeInterpreted()
Dclass_linker_test.cc1044 bool initialized = class_linker_->EnsureInitialized(soa.Self(), in TEST_F() local
1048 EXPECT_FALSE(initialized); in TEST_F()
Dthread.cc2449 bool initialized = (tlsPtr_.jni_env != nullptr); // Did Thread::Init run? in ~Thread() local
2450 if (initialized) { in ~Thread()
2477 if (initialized) { in ~Thread()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1696 # allocation. Also does the initialized
1698 # When isInitialized == 0, then the class is potentially not yet initialized.
1699 # If the class is not yet initialized, the object size will be very large to force the branch
1745 # If the class is already observably initialized, then new-instance allocations are protected
1777 # When isInitialized == 0, then the class is potentially not yet initialized.
1778 # If the class is not yet initialized, the object size will be very large to force the branch
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1773 # initialized and finalizable checks.
1774 # When isInitialized == 0, then the class is potentially not yet initialized.
1775 # If the class is not yet initialized, the object size will be very large to force the branch
1822 # If the class is already observably initialized, then new-instance allocations are protected
1857 # When isInitialized == 0, then the class is potentially not yet initialized.
1858 # If the class is not yet initialized, the object size will be very large to force the branch
/art/runtime/interpreter/mterp/
Dmterp.cc797 bool initialized = !kIsStatic || field->GetDeclaringClass()->IsInitialized(); in MterpFieldAccessFast() local
798 if (LIKELY(initialized)) { in MterpFieldAccessFast()
/art/test/563-checker-fakestring/smali/
DTestCase.smali42 # Test usage of String new-instance before it is initialized.