Home
last modified time | relevance | path

Searched refs:string2 (Results 1 – 4 of 4) sorted by relevance

/art/test/617-clinit-oome/src/
DOther.java19 public static final String string2 = "ABCDEFG2"; field in Other
26 System.out.println(string2); in print()
/art/runtime/mirror/
Dstring.cc138 String* String::AllocFromStrings(Thread* self, Handle<String> string, Handle<String> string2) { in AllocFromStrings() argument
140 int32_t length2 = string2->GetLength(); in AllocFromStrings()
143 (string->IsCompressed() && string2->IsCompressed()); in AllocFromStrings()
154 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings()
164 if (string2->IsCompressed()) { in AllocFromStrings()
166 new_value[i+length] = string2->CharAt(i); in AllocFromStrings()
169 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t)); in AllocFromStrings()
Dstring.h127 static String* AllocFromStrings(Thread* self, Handle<String> string, Handle<String> string2)
/art/test/046-reflect/src/
DMain.java812 public String string2 = "yo"; field in Target