Lines Matching defs:result
150 MaybeStackBuffer<char> result;
159 result.AllocateSufficientStorage(limit);
160 char* target = *result;
165 result.SetLength(target - &result[0]);
166 ret = ToBufferEndian(env, &result);
299 MaybeLocal<Object> result;
334 result = tfn(env, EncodingName(fromEncoding), EncodingName(toEncoding),
340 if (result.IsEmpty())
343 return args.GetReturnValue().Set(result.ToLocalChecked());
459 MaybeStackBuffer<UChar> result;
477 result.AllocateSufficientStorage(limit);
490 UChar* target = *result;
503 result.SetLength(target - &result[0]);
504 if (result.length() > 0 &&
508 // If the very first result in the stream is a BOM, and we are not
510 if (result[0] == 0xFEFF)
517 UChar* output = result.out();
519 size_t length = result.length() * sizeof(UChar);