Home | History | Annotate | Download | only in runtime

Lines Matching full:mirror

26 namespace mirror {
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;
75 mirror::String* Insert(mirror::String* s, bool is_strong)
78 mirror::String* Lookup(Table& table, mirror::String* s, uint32_t hash_code)
80 mirror::String* Insert(Table& table, mirror::String* s, uint32_t hash_code);
81 void Remove(Table& table, const mirror::String* s, uint32_t hash_code);