HomeSort by relevance Sort by last modified time
    Searched refs:mirror (Results 176 - 200 of 783) sorted by null

1 2 3 4 5 6 78 91011>>

  /art/runtime/gc/space/
rosalloc_space.h 49 mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
52 mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
57 mirror::Object* AllocThreadUnsafe(Thread* self, size_t num_bytes, size_t* bytes_allocated,
63 size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE {
66 size_t Free(Thread* self, mirror::Object* ptr) OVERRIDE
68 size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) OVERRIDE
71 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
77 mirror::Object* AllocNonvirtualThreadUnsafe(Thread* self, size_t num_bytes,
90 ALWAYS_INLINE mirror::Object* AllocThreadLocal(Thread* self, size_t num_bytes,
99 size_t AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size
    [all...]
dlmalloc_space.h 50 virtual mirror::Object* AllocWithGrowth(Thread* self, size_t num_bytes, size_t* bytes_allocated,
55 virtual mirror::Object* Alloc(Thread* self, size_t num_bytes, size_t* bytes_allocated,
62 virtual size_t AllocationSize(mirror::Object* obj, size_t* usable_size) OVERRIDE {
66 virtual size_t Free(Thread* self, mirror::Object* ptr) OVERRIDE
70 virtual size_t FreeList(Thread* self, size_t num_ptrs, mirror::Object** ptrs) OVERRIDE
87 mirror::Object* AllocNonvirtual(Thread* self, size_t num_bytes, size_t* bytes_allocated,
92 size_t AllocationSizeNonvirtual(mirror::Object* obj, size_t* usable_size);
147 mirror::Object* AllocWithoutGrowthLocked(Thread* self, size_t num_bytes, size_t* bytes_allocated,
  /external/v8/src/debug/
mirrors.js 30 // Mirror hierarchy:
31 // - Mirror
87 // Mirror cache.
116 * Returns the mirror for a specified value or object.
118 * @param {value or Object} value the value or object to retrieve the mirror for
120 * should not be added to the mirror cache. The default is not transient.
121 * @returns {Mirror} the mirror reflects the passed value or object
124 var mirror;
126 // Look for non transient mirrors in the mirror cache
    [all...]
  /art/compiler/debug/
elf_debug_writer.h 30 namespace mirror { namespace in namespace:art
58 const ArrayRef<mirror::Class*>& types)
  /art/compiler/driver/
dex_compilation_unit.cc 19 #include "mirror/dex_cache.h"
24 DexCompilationUnit::DexCompilationUnit(Handle<mirror::ClassLoader> class_loader,
32 Handle<mirror::DexCache> dex_cache)
  /art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc 19 #include "mirror/object-inl.h"
23 extern "C" int artLockObjectFromCode(mirror::Object* obj, Thread* self)
44 extern "C" int artUnlockObjectFromCode(mirror::Object* obj, Thread* self)
quick_fillarray_entrypoints.cc 19 #include "mirror/array.h"
27 extern "C" int artHandleFillArrayDataFromCode(uint32_t payload_offset, mirror::Array* array,
  /art/runtime/gc/collector/
immune_spaces.h 52 ALWAYS_INLINE bool IsInImmuneRegion(const mirror::Object* obj) const {
70 ALWAYS_INLINE bool ContainsObject(const mirror::Object* obj) const {
  /art/runtime/interpreter/
interpreter.h 25 namespace mirror { namespace in namespace:art
27 } // namespace mirror
40 ObjPtr<mirror::Object> receiver,
  /art/runtime/openjdkjvmti/
object_tagging.cc 45 bool ObjectTagTable::Set(art::mirror::Object* obj, jlong new_tag) {
52 bool ObjectTagTable::SetLocked(art::mirror::Object* obj, jlong new_tag) {
  /art/test/596-app-images/
app_images.cc 27 #include "mirror/class.h"
51 ObjPtr<mirror::Class> klass_ptr = soa.Decode<mirror::Class>(c);
  /cts/tests/tests/text/src/android/text/cts/
AndroidCharacterTest.java 138 assertFalse(AndroidCharacter.mirror(src, 0, 0));
139 assertTrue(AndroidCharacter.mirror(src, 40, 24));
141 AndroidCharacter.mirror(src, 65, 1);
147 AndroidCharacter.mirror(src, 60, 10);
153 AndroidCharacter.mirror(src, -1024, 1);
159 AndroidCharacter.mirror(src, 0, -1);
166 assertTrue(AndroidCharacter.mirror(strChar, 0, str.length()));
168 assertFalse(AndroidCharacter.mirror(str.toCharArray(), 0, 2));
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 34 public static final String SERIALIZATION_NAME = "MIRROR";
38 Mirror mMirror;
40 public enum Mirror {
44 private Mirror(char value) {
52 public static Mirror fromValue(char value) {
68 public FilterMirrorRepresentation(Mirror mirror) {
75 setTextId(R.string.mirror);
77 setMirror(mirror);
94 FilterMirrorRepresentation mirror = (FilterMirrorRepresentation) rep local
    [all...]
  /art/runtime/
class_table.cc 19 #include "mirror/class-inl.h"
35 bool ClassTable::Contains(ObjPtr<mirror::Class> klass) {
47 mirror::Class* ClassTable::LookupByDescriptor(ObjPtr<mirror::Class> klass) {
65 mirror::Class* ClassTable::UpdateClass(const char* descriptor, mirror::Class* klass, size_t hash) {
78 mirror::Class* const existing = existing_it->Read();
81 CHECK_EQ(klass->GetStatus(), mirror::Class::kStatusResolving) << descriptor;
92 size_t ClassTable::CountDefiningLoaderClasses(ObjPtr<mirror::ClassLoader> defining_loader,
103 size_t ClassTable::NumZygoteClasses(ObjPtr<mirror::ClassLoader> defining_loader) const
    [all...]
transaction_test.cc 24 #include "mirror/array-inl.h"
36 Handle<mirror::ClassLoader> class_loader(
37 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
43 MutableHandle<mirror::Class> h_klass(
69 mirror::Class::Status old_status = h_klass->GetStatus();
96 Handle<mirror::Class> h_klass(
102 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
116 Handle<mirror::Class> h_klass(
119 Handle<mirror::Object> h_obj(hs.NewHandle(h_klass->AllocObject(soa.Self())));
145 Handle<mirror::Class> h_klass
    [all...]
art_field.cc 23 #include "mirror/class-inl.h"
24 #include "mirror/object-inl.h"
25 #include "mirror/object_array-inl.h"
46 ObjPtr<mirror::Class> ArtField::ProxyFindSystemClass(const char* descriptor) {
51 ObjPtr<mirror::String> ArtField::ResolveGetStringName(Thread* self,
54 ObjPtr<mirror::DexCache> dex_cache) {
  /art/compiler/optimizing/
builder.h 48 Handle<mirror::DexCache> dex_cache,
89 handles->NewHandle<mirror::ClassLoader>(nullptr),
90 handles->NewHandle<mirror::DexCache>(nullptr),
104 handles->NewHandle<mirror::DexCache>(nullptr),
ssa_builder.h 51 Handle<mirror::ClassLoader> class_loader,
52 Handle<mirror::DexCache> dex_cache,
120 Handle<mirror::ClassLoader> class_loader_;
121 Handle<mirror::DexCache> dex_cache_;
  /art/patchoat/
patchoat.cc 42 #include "mirror/dex_cache.h"
43 #include "mirror/executable.h"
44 #include "mirror/object-inl.h"
45 #include "mirror/object-refvisitor-inl.h"
46 #include "mirror/method.h"
47 #include "mirror/reference.h"
438 void VisitRoots(mirror::Object*** roots, size_t count, const RootInfo& info ATTRIBUTE_UNUSED)
445 void VisitRoots(mirror::CompressedReference<mirror::Object>** roots, size_t count,
497 void PatchOat::PatchDexFileArrays(mirror::ObjectArray<mirror::Object>* img_roots)
    [all...]
  /art/runtime/jit/
profiling_info.h 34 namespace mirror { namespace in namespace:art
46 GcRoot<mirror::Class> classes_[kIndividualCacheSize];
66 void AddInvokeInfo(uint32_t dex_pc, mirror::Class* cls)
107 InlineCache::kIndividualCacheSize * sizeof(GcRoot<mirror::Class>));
  /art/runtime/mirror/
accessible_object.h 29 namespace mirror { namespace in namespace:art
31 // C++ mirror of java.lang.reflect.AccessibleObject
56 } // namespace mirror
dex_cache.cc 35 namespace mirror { namespace in namespace:art
38 ObjPtr<mirror::DexCache> dex_cache,
39 ObjPtr<mirror::String> location,
63 mirror::StringDexCacheType* strings = (dex_file->NumStringIds() == 0u) ? nullptr :
64 reinterpret_cast<mirror::StringDexCacheType*>(raw_arrays + layout.StringsOffset());
65 mirror::TypeDexCacheType* types = (dex_file->NumTypeIds() == 0u) ? nullptr :
66 reinterpret_cast<mirror::TypeDexCacheType*>(raw_arrays + layout.TypesOffset());
69 mirror::FieldDexCacheType* fields = (dex_file->NumFieldIds() == 0u) ? nullptr :
70 reinterpret_cast<mirror::FieldDexCacheType*>(raw_arrays + layout.FieldsOffset());
105 GcRoot<mirror::CallSite>* call_sites = (dex_file->NumCallSiteIds() == 0
    [all...]
reference.cc 23 namespace mirror { namespace in namespace:art
42 } // namespace mirror
  /art/test/461-get-reference-vreg/
get_reference_vreg_jni.cc 30 TestVisitor(Thread* thread, Context* context, mirror::Object* this_value)
44 CHECK_EQ(reinterpret_cast<mirror::Object*>(value), this_value_);
63 mirror::Object* this_value_;
73 TestVisitor visitor(soa.Self(), context.get(), soa.Decode<mirror::Object>(value).Ptr());
  /art/test/566-polymorphic-inlining/
polymorphic_inline.cc 30 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls);
57 ObjPtr<mirror::Class> klass = soa.Decode<mirror::Class>(cls);

Completed in 7838 milliseconds

1 2 3 4 5 6 78 91011>>