Home
last modified time | relevance | path

Searched refs:new_string (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dstring-inl.h183 String* new_string = Alloc<kIsInstrumented>(self, array_length, allocator_type, visitor); in AllocFromCharArray() local
184 return new_string; in AllocFromCharArray()
191 String* new_string = Alloc<kIsInstrumented>(self, string_length, allocator_type, visitor); in AllocFromString() local
192 return new_string; in AllocFromString()
Dstring.cc86 String* new_string = Alloc<true>(self, length + length2, allocator_type, visitor); in AllocFromStrings() local
87 if (UNLIKELY(new_string == nullptr)) { in AllocFromStrings()
90 uint16_t* new_value = new_string->GetValue(); in AllocFromStrings()
93 return new_string; in AllocFromStrings()
/art/runtime/
Ddebugger.cc1331 mirror::String* new_string = mirror::String::AllocFromModifiedUtf8(self, str.c_str()); in CreateString() local
1332 if (new_string == nullptr) { in CreateString()
1339 *new_string_id = gRegistry->Add(new_string); in CreateString()