/external/chromium_org/v8/test/mjsunit/ |
mirror-undefined.js | 29 // Test the mirror object for undefined 31 // Create mirror and JSON representation. 32 var mirror = debug.MakeMirror(void 0); variable 34 var json = JSON.stringify(serializer.serializeValue(mirror)); 36 // Check the mirror hierachy. 37 assertTrue(mirror instanceof debug.Mirror); 38 assertTrue(mirror instanceof debug.UndefinedMirror); 40 // Check the mirror properties. 41 assertTrue(mirror.isUndefined()) [all...] |
mirror-array.js | 29 // Test the mirror object for objects 44 // Create mirror and JSON representation. 45 var mirror = debug.MakeMirror(a); 47 var json = JSON.stringify(serializer.serializeValue(mirror)); 51 // Check the mirror hierachy. 52 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierachy'); 53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy') [all...] |
mirror-string.js | 29 // Test the mirror object for string values 31 const kMaxProtocolStringLength = 80; // Constant from mirror-delay.js 34 // Create mirror and JSON representation. 35 var mirror = debug.MakeMirror(s); 37 var json = JSON.stringify(serializer.serializeValue(mirror)); 39 // Check the mirror hierachy. 40 assertTrue(mirror instanceof debug.Mirror); 41 assertTrue(mirror instanceof debug.ValueMirror); 42 assertTrue(mirror instanceof debug.StringMirror) [all...] |
/external/v8/test/mjsunit/ |
mirror-null.js | 29 // Test the mirror object for null 31 // Create mirror and JSON representation. 32 var mirror = debug.MakeMirror(null); variable 34 var json = JSON.stringify(serializer.serializeValue(mirror)); 36 // Check the mirror hierachy. 37 assertTrue(mirror instanceof debug.Mirror); 38 assertTrue(mirror instanceof debug.NullMirror); 40 // Check the mirror properties. 41 assertTrue(mirror.isNull()) [all...] |
mirror-undefined.js | 29 // Test the mirror object for undefined 31 // Create mirror and JSON representation. 32 var mirror = debug.MakeMirror(void 0); variable 34 var json = JSON.stringify(serializer.serializeValue(mirror)); 36 // Check the mirror hierachy. 37 assertTrue(mirror instanceof debug.Mirror); 38 assertTrue(mirror instanceof debug.UndefinedMirror); 40 // Check the mirror properties. 41 assertTrue(mirror.isUndefined()) [all...] |
mirror-array.js | 29 // Test the mirror object for objects 44 // Create mirror and JSON representation. 45 var mirror = debug.MakeMirror(a); 47 var json = JSON.stringify(serializer.serializeValue(mirror)); 51 // Check the mirror hierachy. 52 assertTrue(mirror instanceof debug.Mirror, 'Unexpected mirror hierachy'); 53 assertTrue(mirror instanceof debug.ValueMirror, 'Unexpected mirror hierachy') [all...] |
mirror-string.js | 29 // Test the mirror object for string values 31 const kMaxProtocolStringLength = 80; // Constant from mirror-delay.js 34 // Create mirror and JSON representation. 35 var mirror = debug.MakeMirror(s); 37 var json = JSON.stringify(serializer.serializeValue(mirror)); 39 // Check the mirror hierachy. 40 assertTrue(mirror instanceof debug.Mirror); 41 assertTrue(mirror instanceof debug.ValueMirror); 42 assertTrue(mirror instanceof debug.StringMirror) [all...] |
/art/runtime/gc/accounting/ |
space_bitmap.h | 33 namespace mirror { namespace in namespace:art 35 } // namespace mirror 45 typedef void Callback(mirror::Object* obj, void* arg); 47 typedef void ScanCallback(mirror::Object* obj, void* finger, void* arg); 49 typedef void SweepCallback(size_t ptr_count, mirror::Object** ptrs, void* arg); 79 inline bool Set(const mirror::Object* obj) { 83 inline bool Clear(const mirror::Object* obj) { 88 bool AtomicTestAndSet(const mirror::Object* obj); 93 bool Test(const mirror::Object* obj) const; 113 void operator()(mirror::Object* obj) const [all...] |
mod_union_table-inl.h | 33 bool AddReference(const mirror::Object* /* obj */, const mirror::Object* ref) { 52 bool AddReference(const mirror::Object* /* obj */, const mirror::Object* ref) {
|
/art/runtime/jdwp/ |
object_registry.h | 25 #include "mirror/art_field-inl.h" 26 #include "mirror/class.h" 27 #include "mirror/class-inl.h" 28 #include "mirror/object-inl.h" 57 JDWP::ObjectId Add(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 58 JDWP::RefTypeId AddRefType(mirror::Class* c) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 67 bool Contains(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 80 static mirror::Object* const kInvalidObject; 87 JDWP::ObjectId InternalAdd(mirror::Object* o) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 88 mirror::Object* InternalGet(JDWP::ObjectId id) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) [all...] |
/art/runtime/ |
nth_caller_visitor.h | 20 #include "mirror/art_method.h" 34 mirror::ArtMethod* m = GetMethod(); 56 mirror::ArtMethod* caller;
|
common_throws.cc | 24 #include "mirror/art_method-inl.h" 25 #include "mirror/class-inl.h" 26 #include "mirror/object-inl.h" 27 #include "mirror/object_array-inl.h" 36 static void AddReferrerLocation(std::ostream& os, const mirror::Class* referrer) 49 const mirror::Class* referrer, const char* fmt, va_list* args = NULL) 71 void ThrowAbstractMethodError(const mirror::ArtMethod* method) { 92 void ThrowArrayStoreException(const mirror::Class* element_class, 93 const mirror::Class* array_class) { 102 void ThrowClassCastException(const mirror::Class* dest_type, const mirror::Class* src_type) [all...] |
monitor.h | 58 namespace mirror { namespace in namespace:art 61 } // namespace mirror 75 static void MonitorEnter(Thread* thread, mirror::Object* obj) 78 static bool MonitorExit(Thread* thread, mirror::Object* obj) 82 static void Notify(Thread* self, mirror::Object* obj) 84 static void NotifyAll(Thread* self, mirror::Object* obj) 86 static void Wait(Thread* self, mirror::Object* obj, int64_t ms, int32_t ns, 95 static mirror::Object* GetContendedMonitor(Thread* thread); 99 static void VisitLocks(StackVisitor* stack_visitor, void (*callback)(mirror::Object*, void*), 105 mirror::Object* GetObject() [all...] |
reflection.cc | 24 #include "mirror/art_field-inl.h" 25 #include "mirror/art_method-inl.h" 26 #include "mirror/class.h" 27 #include "mirror/class-inl.h" 28 #include "mirror/object_array.h" 29 #include "mirror/object_array-inl.h" 39 mirror::ArtMethod* m = soa.DecodeMethod(mid); 41 mirror::Class* declaring_class = m->GetDeclaringClass(); 46 mirror::Object* receiver = NULL; 49 receiver = soa.Decode<mirror::Object*>(javaReceiver) [all...] |
jvalue.h | 25 namespace mirror { namespace in namespace:art 27 } // namespace mirror 53 mirror::Object* GetL() const { return l; } 54 void SetL(mirror::Object* new_l) { l = new_l; } 73 mirror::Object* l;
|
/cts/tests/tests/text/src/android/text/cts/ |
AndroidCharacterTest.java | 122 assertFalse(AndroidCharacter.mirror(src, 0, 0)); 123 assertTrue(AndroidCharacter.mirror(src, 40, 24)); 125 AndroidCharacter.mirror(src, 65, 1); 131 AndroidCharacter.mirror(src, 60, 10); 137 AndroidCharacter.mirror(src, -1024, 1); 143 AndroidCharacter.mirror(src, 0, -1); 150 assertTrue(AndroidCharacter.mirror(strChar, 0, str.length())); 152 assertFalse(AndroidCharacter.mirror(str.toCharArray(), 0, 2));
|
/art/runtime/gc/space/ |
large_object_space.h | 60 size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs); 85 size_t AllocationSize(const mirror::Object* obj); 86 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated); 87 size_t Free(Thread* self, mirror::Object* ptr); 90 bool Contains(const mirror::Object* obj) const NO_THREAD_SAFETY_ANALYSIS; 98 std::vector<mirror::Object*, 99 accounting::GCAllocator<mirror::Object*> > large_objects_ GUARDED_BY(lock_); 100 typedef SafeMap<mirror::Object*, MemMap*, std::less<mirror::Object*>, 101 accounting::GCAllocator<std::pair<const mirror::Object*, MemMap*> > > MemMaps [all...] |
/external/chromium_org/v8/src/ |
mirror-debugger.js | 32 // Mirror cache. 37 * Clear the mirror handle cache. 46 * Returns the mirror for a specified value or object. 48 * @param {value or Object} value the value or object to retreive the mirror for 50 * should not be added to the mirror cache. The default is not transient. 51 * @returns {Mirror} the mirror reflects the passed value or object 54 var mirror; 56 // Look for non transient mirrors in the mirror cache. 59 mirror = mirror_cache_[id] [all...] |
/art/runtime/verifier/ |
method_verifier.h | 31 #include "mirror/object.h" 148 static FailureKind VerifyClass(const mirror::Class* klass, bool allow_soft_failures, 151 static FailureKind VerifyClass(const DexFile* dex_file, mirror::DexCache* dex_cache, 152 mirror::ClassLoader* class_loader, 158 mirror::DexCache* dex_cache, mirror::ClassLoader* class_loader, 161 mirror::ArtMethod* method, uint32_t method_access_flags) 202 static void FindLocksAtDexPc(mirror::ArtMethod* m, uint32_t dex_pc, 208 static mirror::ArtField* FindAccessedFieldAtDexPc(mirror::ArtMethod* m, uint32_t dex_pc [all...] |
/external/v8/src/ |
mirror-debugger.js | 32 // Mirror cache. 37 * Clear the mirror handle cache. 46 * Returns the mirror for a specified value or object. 48 * @param {value or Object} value the value or object to retreive the mirror for 50 * should not be added to the mirror cache. The default is not transient. 51 * @returns {Mirror} the mirror reflects the passed value or object 54 var mirror; 56 // Look for non transient mirrors in the mirror cache. 59 mirror = mirror_cache_[id] [all...] |
/art/runtime/entrypoints/quick/ |
quick_thread_entrypoints.cc | 31 extern "C" void artTestSuspendFromCode(Thread* thread, mirror::ArtMethod** sp)
|
/art/runtime/mirror/ |
array-inl.h | 25 namespace mirror { namespace in namespace:art 36 } // namespace mirror
|
dex_cache-inl.h | 23 namespace mirror { namespace in namespace:art 37 } // namespace mirror
|
iftable-inl.h | 23 namespace mirror { namespace in namespace:art 32 } // namespace mirror
|
/art/runtime/native/ |
java_lang_reflect_Constructor.cc | 19 #include "mirror/art_method.h" 20 #include "mirror/art_method-inl.h" 21 #include "mirror/class-inl.h" 22 #include "mirror/object-inl.h" 42 mirror::ArtMethod* m = soa.Decode<mirror::Object*>(art_method)->AsArtMethod(); 43 mirror::Class* c = m->GetDeclaringClass(); 58 mirror::Object* receiver = c->AllocObject(soa.Self());
|