HomeSort by relevance Sort by last modified time
    Searched defs:dest_length (Results 1 - 2 of 2) sorted by null

  /external/v8/src/runtime/
runtime-i18n.cc 831 int32_t dest_length = src_length; local
836 if (dest_length == 0) return isolate->heap()->empty_string();
844 isolate, result, isolate->factory()->NewRawTwoByteString(dest_length));
850 dest_length = case_converter(reinterpret_cast<UChar*>(result->GetChars()),
851 dest_length, src, src_length, lang, &status);
861 DCHECK(dest_length == result->length());
865 DCHECK(dest_length < result->length());
867 SeqString::Truncate(result, dest_length));
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 607 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion local
608 scoped_array<char> dest(new char[dest_length]);
610 dest.get(), dest_length, false, true);
616 const int dest_length = src.size() * 4 + 1; // Maximum possible expansion local
617 scoped_array<char> dest(new char[dest_length]);
619 dest.get(), dest_length, true, false);
    [all...]

Completed in 200 milliseconds