/art/runtime/native/ |
java_lang_reflect_Method.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" 23 #include "mirror/object_array-inl.h" 24 #include "mirror/proxy.h" 43 mirror::ArtMethod* proxy_method = soa.Decode<mirror::Object*>(art_method)->AsArtMethod(); 45 mirror::SynthesizedProxyClass* proxy_class = 46 down_cast<mirror::SynthesizedProxyClass*>(proxy_method->GetDeclaringClass()) [all...] |
dalvik_system_VMStack.cc | 19 #include "mirror/art_method-inl.h" 20 #include "mirror/class-inl.h" 21 #include "mirror/class_loader.h" 22 #include "mirror/object-inl.h" 31 if (soa.Decode<mirror::Object*>(peer) == soa.Self()->GetPeer()) { 78 ClosestUserClassLoaderVisitor(Thread* thread, mirror::Object* bootstrap, mirror::Object* system) 83 mirror::Class* c = GetMethod()->GetDeclaringClass(); 84 mirror::Object* cl = c->GetClassLoader(); 92 mirror::Object* bootstrap [all...] |
java_lang_Object.cc | 18 #include "mirror/object-inl.h" 30 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 36 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 42 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 48 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); 54 mirror::Object* o = soa.Decode<mirror::Object*>(java_this) [all...] |
java_lang_String.cc | 19 #include "mirror/string.h" 31 return soa.Decode<mirror::String*>(javaThis)->CompareTo(soa.Decode<mirror::String*>(javaRhs)); 40 mirror::String* s = soa.Decode<mirror::String*>(java_this); 46 mirror::String* s = soa.Decode<mirror::String*>(javaThis); 47 mirror::String* result = s->Intern();
|
/art/runtime/ |
intern_table.h | 26 namespace mirror { namespace in namespace:art 28 } // namespace mirror 45 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data) 49 mirror::String* InternStrong(const char* utf8_data) 53 mirror::String* InternStrong(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 56 mirror::String* InternWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 61 bool ContainsWeak(mirror::String* s) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 73 typedef std::multimap<int32_t, mirror::String*> Table [all...] |
compiled_class.h | 20 #include "mirror/class.h" 26 explicit CompiledClass(mirror::Class::Status status) : status_(status) {} 28 mirror::Class::Status GetStatus() const { 32 const mirror::Class::Status status_;
|
image.cc | 19 #include "mirror/object_array.h" 20 #include "mirror/object_array-inl.h" 21 #include "mirror/object-inl.h" 76 mirror::Object* ImageHeader::GetImageRoot(ImageRoot image_root) const { 80 mirror::ObjectArray<mirror::Object>* ImageHeader::GetImageRoots() const { 81 return reinterpret_cast<mirror::ObjectArray<mirror::Object>*>(image_roots_);
|
/external/chromium_org/native_client_sdk/src/build_tools/json/ |
naclsdk_manifest.json | 11 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz", 19 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz", 27 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/1.15/sdk_tools.tgz", 45 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/gdb_builds/0.1/gdb-win-builds.tgz", 63 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_mac.tgz", 71 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_linux.tgz", 79 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_14_1052/naclsdk_win.exe", 97 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_mac.tgz", 105 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_linux.tgz", 113 "url": "http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/pepper_15_1239/naclsdk_win.exe" [all...] |
/external/chromium_org/native_client_sdk/src/web/ |
update.sh | 3 gsutil cp -a public-read $file gs://nativeclient-mirror/nacl/nacl_sdk
|
/external/chromium_org/v8/test/mjsunit/ |
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...] |
mirror-date.js | 29 // Test the mirror object for boolean values 32 // Create mirror and JSON representation. 33 var mirror = debug.MakeMirror(d); 35 var json = JSON.stringify(serializer.serializeValue(mirror)); 37 // Check the mirror hierachy. 38 assertTrue(mirror instanceof debug.Mirror); 39 assertTrue(mirror instanceof debug.ValueMirror); 40 assertTrue(mirror instanceof debug.ObjectMirror); 41 assertTrue(mirror instanceof debug.DateMirror) [all...] |
mirror-error.js | 29 // Test the mirror object for regular error objects 44 // Create mirror and JSON representation. 45 var mirror = debug.MakeMirror(e); 47 var json = JSON.stringify(serializer.serializeValue(mirror)); 51 // Check the mirror hierachy. 52 assertTrue(mirror instanceof debug.Mirror); 53 assertTrue(mirror instanceof debug.ValueMirror); 54 assertTrue(mirror instanceof debug.ObjectMirror); 55 assertTrue(mirror instanceof debug.ErrorMirror) [all...] |
/external/v8/test/mjsunit/ |
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...] |
mirror-date.js | 29 // Test the mirror object for boolean values 32 // Create mirror and JSON representation. 33 var mirror = debug.MakeMirror(d); 35 var json = JSON.stringify(serializer.serializeValue(mirror)); 37 // Check the mirror hierachy. 38 assertTrue(mirror instanceof debug.Mirror); 39 assertTrue(mirror instanceof debug.ValueMirror); 40 assertTrue(mirror instanceof debug.ObjectMirror); 41 assertTrue(mirror instanceof debug.DateMirror) [all...] |
mirror-error.js | 29 // Test the mirror object for regular error objects 44 // Create mirror and JSON representation. 45 var mirror = debug.MakeMirror(e); 47 var json = JSON.stringify(serializer.serializeValue(mirror)); 51 // Check the mirror hierachy. 52 assertTrue(mirror instanceof debug.Mirror); 53 assertTrue(mirror instanceof debug.ValueMirror); 54 assertTrue(mirror instanceof debug.ObjectMirror); 55 assertTrue(mirror instanceof debug.ErrorMirror) [all...] |
/art/runtime/gc/accounting/ |
space_bitmap_test.cc | 44 BitmapVerify(SpaceBitmap* bitmap, const mirror::Object* begin, const mirror::Object* end) 49 void operator()(const mirror::Object* obj) { 56 const mirror::Object* begin_; 57 const mirror::Object* end_; 70 const mirror::Object* obj = 71 reinterpret_cast<mirror::Object*>(heap_begin + j * SpaceBitmap::kAlignment); 81 mirror::Object* start = 82 reinterpret_cast<mirror::Object*>(heap_begin + i * SpaceBitmap::kAlignment); 84 mirror::Object* end [all...] |
/art/runtime/gc/ |
heap_test.cc | 20 #include "mirror/class-inl.h" 21 #include "mirror/object-inl.h" 22 #include "mirror/object_array-inl.h" 46 mirror::Class* c = class_linker_->FindSystemClass("[Ljava/lang/Object;"); 48 SirtRef<mirror::ObjectArray<mirror::Object> > array(soa.Self(), 49 mirror::ObjectArray<mirror::Object>::Alloc(soa.Self(), c, 2048)); 51 array->Set(j, mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!")); 64 mirror::Object* fake_end_of_heap_object [all...] |
/external/iproute2/include/linux/tc_act/ |
tc_mirred.h | 9 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 11 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/ |
tc_mirred.h | 8 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 10 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
tc_mirred.h | 8 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 10 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/ |
tc_mirred.h | 8 #define TCA_EGRESS_MIRROR 2 /* mirror packet to EGRESS */ 10 #define TCA_INGRESS_MIRROR 4 /* mirror packet to INGRESS */
|
/art/runtime/entrypoints/quick/ |
quick_deoptimization_entrypoints.cc | 20 #include "mirror/art_method-inl.h" 21 #include "mirror/class-inl.h" 22 #include "mirror/object_array-inl.h" 23 #include "mirror/object-inl.h" 31 extern "C" void artDeoptimize(Thread* self, mirror::ArtMethod** sp) 34 self->SetException(ThrowLocation(), reinterpret_cast<mirror::Throwable*>(-1));
|
quick_invoke_entrypoints.cc | 20 #include "mirror/art_method-inl.h" 21 #include "mirror/class-inl.h" 22 #include "mirror/dex_cache-inl.h" 23 #include "mirror/object-inl.h" 24 #include "mirror/object_array-inl.h" 29 extern "C" uint64_t artInvokeInterfaceTrampoline(mirror::ArtMethod* interface_method, 30 mirror::Object* this_object, 31 mirror::ArtMethod* caller_method, 32 Thread* self, mirror::ArtMethod** sp) 34 mirror::ArtMethod* method [all...] |
/art/runtime/gc/collector/ |
mark_sweep.h | 31 namespace mirror { namespace in namespace:art 35 } // namespace mirror 49 typedef AtomicStack<mirror::Object*> ObjectStack; 150 mirror::Object* GetClearedReferences() { 155 void ScanRoot(const mirror::Object* obj) 160 void ScanObject(const mirror::Object* obj) 166 void ScanObjectVisit(const mirror::Object* obj, const MarkVisitor& visitor) 202 void SetImmuneRange(mirror::Object* begin, mirror::Object* end); 207 static bool VerifyIsLiveCallback(const mirror::Object* obj, void* arg [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
debug-function-scopes.js | 47 // A copy of the scope types from mirror-debugger.js. 73 var mirror = Debug.MakeMirror(f1); variable 75 assertEquals(4, mirror.scopeCount()); 77 CheckScope(mirror.scope(0), { a: 4, b: 5 }, ScopeType.Closure); 78 CheckScope(mirror.scope(1), { z: 22, w: 5, v: "Capybara" }, ScopeType.Closure); 79 CheckScope(mirror.scope(2), { x: 5 }, ScopeType.Closure); 80 CheckScope(mirror.scope(3), {}, ScopeType.Global); 105 var mirror = Debug.MakeMirror(f2); variable 107 assertEquals(5, mirror.scopeCount()); 110 CheckScope(mirror.scope(0), { l4: 11 }, ScopeType.Block) [all...] |