HomeSort by relevance Sort by last modified time
    Searched defs:mirror (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/debug/
elf_debug_writer.h 30 namespace mirror { namespace in namespace:art
58 const ArrayRef<mirror::Class*>& types)
  /art/runtime/
common_throws.h 24 namespace mirror { namespace in namespace:art
27 } // namespace mirror
53 void ThrowArrayStoreException(mirror::Class* element_class, mirror::Class* array_class)
58 void ThrowClassCircularityError(mirror::Class* c)
61 void ThrowClassCircularityError(mirror::Class* c, const char* fmt, ...)
66 void ThrowClassCastException(mirror::Class* dest_type, mirror::Class* src_type)
74 void ThrowClassFormatError(mirror::Class* referrer, const char* fmt, ...)
80 void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed
    [all...]
reflection.h 25 namespace mirror { namespace in namespace:art
28 } // namespace mirror
35 mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value)
37 bool UnboxPrimitiveForField(mirror::Object* o, mirror::Class* dst_class, ArtField* f,
40 bool UnboxPrimitiveForResult(mirror::Object* o, mirror::Class* dst_class, JValue* unboxed_value)
69 ALWAYS_INLINE bool VerifyObjectIsClass(mirror::Object* o, mirror::Class* c)
72 bool VerifyAccess(Thread* self, mirror::Object* obj, mirror::Class* declaring_class
    [all...]
utf.h 34 namespace mirror { namespace in namespace:art
37 } // namespace mirror
83 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset, size_t char_count)
  /art/runtime/entrypoints/quick/
quick_default_externs.h 23 namespace mirror { namespace in namespace:art
27 } // namespace mirror
34 extern "C" void art_quick_check_cast(const art::mirror::Class*, const art::mirror::Class*);
69 extern "C" void art_quick_aput_obj_with_null_and_bound_check(art::mirror::Array*, int32_t,
70 art::mirror::Object*);
71 extern "C" void art_quick_aput_obj_with_bound_check(art::mirror::Array*, int32_t,
72 art::mirror::Object*);
73 extern "C" void art_quick_aput_obj(art::mirror::Array*, int32_t, art::mirror::Object*)
    [all...]
quick_entrypoints.h 31 namespace mirror { namespace in namespace:art
36 } // namespace mirror
62 extern mirror::Object* JniMethodEndWithReference(jobject result, uint32_t saved_local_ref_cookie,
66 extern mirror::Object* JniMethodEndWithReferenceSynchronized(jobject result,
71 extern void ReadBarrierJni(mirror::CompressedReference<mirror::Object>* handle_on_stack,
85 extern "C" mirror::Object* artReadBarrierMark(mirror::Object* obj)
91 extern "C" mirror::Object* artReadBarrierSlow(mirror::Object* ref
    [all...]
  /art/runtime/interpreter/
interpreter.h 24 namespace mirror { namespace in namespace:art
26 } // namespace mirror
39 mirror::Object* receiver, uint32_t* args, JValue* result,
unstarted_runtime.h 31 namespace mirror { namespace in namespace:art
33 } // namespace mirror
59 mirror::Object* receiver,
82 mirror::Object* receiver, \
  /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...]
debug-function-scopes.js 63 var mirror = Debug.MakeMirror(f1); variable
65 assertEquals(6, mirror.scopeCount());
67 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure);
68 CheckScope(mirror.scope(1), { w: 5, v: "Capybara" }, ScopeType.With);
69 CheckScope(mirror.scope(2), { z: 22 }, ScopeType.Closure);
70 CheckScope(mirror.scope(3), { x: 5 }, ScopeType.Closure);
71 CheckScope(mirror.scope(4), {}, ScopeType.Script);
72 CheckScope(mirror.scope(5), {}, ScopeType.Global);
76 var mirror = Debug.MakeMirror(f2); variable
78 assertEquals(2, mirror.scopeCount())
96 var mirror = Debug.MakeMirror(f3); variable
120 var mirror = Debug.MakeMirror(f4); variable
140 var mirror = Debug.MakeMirror(f5); variable
    [all...]
debug-referenced-by.js 35 // Create mirror for the object.
36 var mirror = debug.MakeMirror(a); variable
39 assertEquals(1, mirror.referencedBy().length);
40 assertEquals(1, mirror.referencedBy(0).length);
41 assertEquals(1, mirror.referencedBy(1).length);
42 assertEquals(1, mirror.referencedBy(10).length);
47 assertEquals(2, mirror.referencedBy().length);
52 assertEquals(3, mirror.referencedBy().length);
55 assertEquals(4, mirror.referencedBy().length);
57 assertEquals(5, mirror.referencedBy().length)
    [all...]
  /art/runtime/mirror/
class_loader-inl.h 26 namespace mirror { namespace in namespace:art
32 inline void ClassLoader::VisitReferences(mirror::Class* klass, const Visitor& visitor) {
44 } // namespace mirror
iftable-inl.h 23 namespace mirror { namespace in namespace:art
33 } // namespace mirror
proxy.h 26 namespace mirror { namespace in namespace:art
28 // C++ mirror of java.lang.reflect.Proxy.
37 } // namespace mirror
reference-inl.h 23 namespace mirror { namespace in namespace:art
30 } // namespace mirror
abstract_method.cc 22 namespace mirror { namespace in namespace:art
54 mirror::Class* AbstractMethod::GetDeclaringClass() {
55 return GetFieldObject<mirror::Class>(DeclaringClassOffset());
58 } // namespace mirror
object_array.h 23 namespace mirror { namespace in namespace:art
101 } // namespace mirror
reference.cc 23 namespace mirror { namespace in namespace:art
42 } // namespace mirror
accessible_object.h 29 namespace mirror { namespace in namespace:art
31 // C++ mirror of java.lang.reflect.AccessibleObject
57 } // namespace mirror
dex_cache_test.cc 24 #include "mirror/class_loader-inl.h"
29 namespace mirror { namespace in namespace:art
56 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
57 soa.Decode<mirror::ClassLoader*>(jclass_loader)));
58 mirror::Class* klass = class_linker->FindClass(soa.Self(), "LMain;", class_loader);
72 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
73 soa.Decode<mirror::ClassLoader*>(jclass_loader)));
74 Handle<mirror::Class> klass1 =
77 Handle<mirror::Class> klass2 =
93 } // namespace mirror
    [all...]
field-inl.h 23 #include "mirror/dex_cache-inl.h"
28 namespace mirror { namespace in namespace:art
31 inline mirror::Field* Field::CreateFromArtField(Thread* self, ArtField* field,
35 Handle<mirror::Class> type = hs.NewHandle(field->GetType<true>());
45 mirror::Throwable* exception = self->GetException();
84 } // namespace mirror
method.h 24 namespace mirror { namespace in namespace:art
28 // C++ mirror of java.lang.reflect.Method.
35 static mirror::Class* StaticClass() SHARED_REQUIRES(Locks::mutator_lock_) {
43 static mirror::Class* ArrayClass() SHARED_REQUIRES(Locks::mutator_lock_) {
60 // C++ mirror of java.lang.reflect.Constructor.
67 static mirror::Class* StaticClass() SHARED_REQUIRES(Locks::mutator_lock_) {
75 static mirror::Class* ArrayClass() SHARED_REQUIRES(Locks::mutator_lock_) {
92 } // namespace mirror
  /external/ImageMagick/PerlMagick/demo/
Turtle.pm 11 @{$self}{qw(x y theta mirror)} = @_;
33 $self->{theta} += $dtheta*$self->{mirror};
40 @{$self}{qw(x y theta mirror)};
47 @{$self}{qw(x y theta mirror)} = @_;
50 sub mirror subroutine
54 $self->{mirror} *= -1;
  /art/runtime/lambda/
box_table.h 32 namespace mirror { namespace in namespace:art
34 } // namespace mirror
51 mirror::Object* BoxLambda(const ClosureType& closure)
55 bool UnboxLambda(mirror::Object* object, ClosureType* out_closure)
90 using ValueType = GcRoot<mirror::Object>;

Completed in 1055 milliseconds

1 2 3 4 5 6 7 8 91011>>