Lines Matching refs:fStorage
367 if (nullptr != fStorage.get()) { in ~SkTextBlobBuilder()
474 SkTextBlob::RunRecord* run = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + in updateDeferredBounds()
491 SkASSERT(nullptr == fStorage.get()); in reserve()
501 fStorage.realloc(fStorageSize); in reserve()
512 SkTextBlob::RunRecord* run = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + in mergeRun()
537 run = reinterpret_cast<SkTextBlob::RunRecord*>(fStorage.get() + fLastRun); in mergeRun()
549 run->validate(fStorage.get() + fStorageUsed); in mergeRun()
569 SkTextBlob::RunRecord* run = new (fStorage.get() + fStorageUsed) in allocInternal()
580 run->validate(fStorage.get() + fStorageUsed); in allocInternal()
617 SkASSERT((fRunCount > 0) == (nullptr != fStorage.get())); in build()
622 SkASSERT(nullptr == fStorage.get()); in build()
624 fStorage.realloc(fStorageUsed); in build()
627 const SkTextBlob* blob = new (fStorage.detach()) SkTextBlob(fRunCount, fBounds); in build()