Searched refs:string2 (Results 1 – 4 of 4) sorted by relevance
19 public static final String string2 = "ABCDEFG2"; field in Other26 System.out.println(string2); in print()
138 String* String::AllocFromStrings(Thread* self, Handle<String> string, Handle<String> string2) { in AllocFromStrings() argument140 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()
127 static String* AllocFromStrings(Thread* self, Handle<String> string, Handle<String> string2)
812 public String string2 = "yo"; field in Target