Lines Matching refs:ObjPtr

80 ObjPtr<String> String::DoReplace(Thread* self, Handle<String> src, uint16_t old_c, uint16_t new_c) {  in DoReplace()
92 ObjPtr<String> string = Alloc(self, length_with_flag, allocator_type, visitor); in DoReplace()
122 ObjPtr<String> String::AllocFromStrings(Thread* self, in AllocFromStrings()
133 ObjPtr<String> new_string = Alloc(self, length_with_flag, allocator_type, visitor); in AllocFromStrings()
161 ObjPtr<String> String::AllocFromUtf16(Thread* self, in AllocFromUtf16()
170 ObjPtr<String> string = Alloc(self, length_with_flag, allocator_type, visitor); in AllocFromUtf16()
185 ObjPtr<String> String::AllocFromModifiedUtf8(Thread* self, const char* utf) { in AllocFromModifiedUtf8()
192 ObjPtr<String> String::AllocFromModifiedUtf8(Thread* self, in AllocFromModifiedUtf8()
198 ObjPtr<String> String::AllocFromModifiedUtf8(Thread* self, in AllocFromModifiedUtf8()
206 ObjPtr<String> string = Alloc(self, utf16_length_with_flag, allocator_type, visitor); in AllocFromModifiedUtf8()
219 bool String::Equals(ObjPtr<String> that) { in Equals()
283 int32_t String::CompareTo(ObjPtr<String> rhs) { in CompareTo()
285 ObjPtr<String> lhs = this; in CompareTo()
326 ObjPtr<CharArray> String::ToCharArray(Handle<String> h_this, Thread* self) { in ToCharArray()
327 ObjPtr<CharArray> result = CharArray::Alloc(self, h_this->GetLength()); in ToCharArray()
359 std::string String::PrettyStringDescriptor(ObjPtr<mirror::String> java_descriptor) { in PrettyStringDescriptor()
370 ObjPtr<String> String::Intern() { in Intern()