Lines Matching defs:second
400 EcmaString *second = EcmaString::Cast(treeSrc->GetSecond());
402 uint32_t secondLength = second->GetLength();
404 // second string is longer. So recurse over first.
406 if (first == second) {
412 src = second;
415 // first string is longer. So recurse over second.
418 buf[firstLength] = static_cast<Char>(second->At<false>(0));
419 } else if ((second->IsLineOrConstantString()) && second->IsUtf8()) {
420 CopyChars(buf + firstLength, second->GetDataUtf8(), secondLength);
422 WriteToFlat(second, buf + firstLength, maxLength - firstLength);