Lines Matching refs:no_gc

422     DisallowGarbageCollection no_gc;
424 string->GetChars(no_gc) + from, len, HashSeed(isolate));
439 DisallowGarbageCollection no_gc;
441 base::Vector<const Char>(string_->GetChars(no_gc) + from_, length()),
450 DisallowGarbageCollection no_gc;
451 CopyChars(result->GetChars(no_gc), string_->GetChars(no_gc) + from_,
458 DisallowGarbageCollection no_gc;
459 CopyChars(result->GetChars(no_gc), string_->GetChars(no_gc) + from_,
534 DisallowGarbageCollection no_gc;
544 SeqOneByteString::cast(string).GetChars(no_gc, access_guard) +
549 SeqTwoByteString::cast(string).GetChars(no_gc, access_guard) +
627 const DisallowGarbageCollection& no_gc) const {
631 : CharTraits<Char>::String::cast(*this).GetChars(no_gc);
636 PtrComprCageBase cage_base, const DisallowGarbageCollection& no_gc,
640 : CharTraits<Char>::String::cast(*this).GetChars(no_gc,
647 DisallowGarbageCollection no_gc; // Unhandlified code.
684 PtrComprCageBase cage_base, const DisallowGarbageCollection& no_gc,
693 SeqOneByteString::cast(string).GetChars(no_gc, access_guard) + offset,
694 length, no_gc);
697 SeqTwoByteString::cast(string).GetChars(no_gc, access_guard) + offset,
698 length, no_gc);
702 length, no_gc);
706 length, no_gc);
714 const DisallowGarbageCollection& no_gc) {
728 return GetFlatContent(no_gc, SharedStringAccessGuardIfNeeded::NotNeeded());
732 const DisallowGarbageCollection& no_gc)
733 : onebyte_start(start), length_(length), state_(ONE_BYTE), no_gc_(no_gc) {
740 const DisallowGarbageCollection& no_gc)
741 : twobyte_start(start), length_(length), state_(TWO_BYTE), no_gc_(no_gc) {
777 const DisallowGarbageCollection& no_gc,
781 cage_base, no_gc, *this, 0, length(), access_guard);
783 return SlowGetFlatContent(no_gc, access_guard);
902 DisallowGarbageCollection no_gc;
913 SeqOneByteString::cast(string).GetChars(no_gc, access_guard) +
920 SeqTwoByteString::cast(string).GetChars(no_gc, access_guard) +
964 const DisallowGarbageCollection& no_gc) {
965 String::FlatContent flat = GetFlatContent(no_gc);
972 const DisallowGarbageCollection& no_gc) {
973 String::FlatContent flat = GetFlatContent(no_gc);
1014 const DisallowGarbageCollection& no_gc) const {
1015 USE(no_gc);
1021 const DisallowGarbageCollection& no_gc,
1023 USE(no_gc);
1033 const DisallowGarbageCollection& no_gc) const {
1034 USE(no_gc);
1040 const DisallowGarbageCollection& no_gc,
1042 USE(no_gc);
1168 DisallowGarbageCollection no_gc;
1199 DisallowGarbageCollection no_gc;
1240 DisallowGarbageCollection no_gc;
1271 DisallowGarbageCollection no_gc;
1405 DisallowGarbageCollection no_gc;
1430 const DisallowGarbageCollection& no_gc,
1435 no_gc_(no_gc) {}
1463 iterator(String from, int offset, const DisallowGarbageCollection& no_gc)
1464 : content_(from.GetFlatContent(no_gc)), offset_(offset) {}