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.cc124 Handle<String> string2) { in AllocFromStrings() argument
126 int32_t length2 = string2->GetLength(); in AllocFromStrings()
129 (string->IsCompressed() && string2->IsCompressed()); in AllocFromStrings()
140 memcpy(new_value + length, string2->GetValueCompressed(), length2 * sizeof(uint8_t)); in AllocFromStrings()
150 if (string2->IsCompressed()) { in AllocFromStrings()
152 new_value[i+length] = string2->CharAt(i); in AllocFromStrings()
155 memcpy(new_value + length, string2->GetValue(), length2 * sizeof(uint16_t)); in AllocFromStrings()
Dstring.h149 Handle<String> string2)
/art/test/046-reflect/src/
DMain.java812 public String string2 = "yo"; field in Target