HomeSort by relevance Sort by last modified time
    Searched full:utf16_length (Results 1 - 10 of 10) sorted by null

  /art/runtime/mirror/
string.h 67 int32_t utf16_length,
75 static String* AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
79 static String* Alloc(Thread* self, Class* java_lang_String, int32_t utf16_length)
95 int Compare(int32_t utf16_length, const char* utf8_data_in);
string.cc 116 int32_t utf16_length,
119 CHECK(utf16_data_in != NULL || utf16_length == 0);
120 String* string = Alloc(self, GetJavaLangString(), utf16_length);
129 for (int i = 0; i < utf16_length; i++) {
148 String* String::AllocFromModifiedUtf8(Thread* self, int32_t utf16_length,
150 String* string = Alloc(self, GetJavaLangString(), utf16_length);
161 String* String::Alloc(Thread* self, Class* java_lang_String, int32_t utf16_length) {
162 SirtRef<CharArray> array(self, CharArray::Alloc(self, utf16_length));
  /art/runtime/
intern_table.h 45 mirror::String* InternStrong(int32_t utf16_length, const char* utf8_data)
intern_table.cc 188 mirror::String* InternTable::InternStrong(int32_t utf16_length,
191 Thread::Current(), utf16_length, utf8_data));
class_linker.cc 3965 int32_t utf16_length = dex_file.GetStringLength(string_id); local
    [all...]
  /external/chromium_org/v8/src/
debug-agent.cc 196 int utf16_length = decoder.Utf16Length(); local
197 ScopedVector<uint16_t> temp(utf16_length + 1);
198 decoder.WriteUtf16(temp.start(), utf16_length);
202 utf16_length,
unicode.cc 293 unsigned utf16_length = 0; local
301 utf16_length += is_two_characters ? 2 : 1;
302 // Don't need to write to the buffer, but still need utf16_length.
306 if (utf16_length <= buffer_length) {
313 if (utf16_length == buffer_length) {
327 utf16_length_ = utf16_length;
    [all...]
heap.cc 5186 int utf16_length = decoder->Utf16Length(); local
    [all...]
objects.cc 9014 int utf16_length = 0; local
    [all...]
  /external/chromium_org/content/renderer/
render_view_browsertest.cc 1800 const size_t utf16_length = 8UL; local
    [all...]

Completed in 519 milliseconds