Searched refs:m_frames (Results 1 – 4 of 4) sorted by relevance
388 if (index < 0 || index >= m_frames.count()) { in getColorTable()392 const SkGIFFrameContext* frameContext = m_frames[index].get(); in getColorTable()454 SkGIFFrameContext* currentFrame = m_frames[frameIndex].get(); in decode()473 if (lastFrameToParse >= 0 && m_frames.count() > lastFrameToParse in parse()474 && m_frames[lastFrameToParse]->isComplete()) { in parse()487 SkASSERT(!m_frames.empty()); in parse()488 auto* frame = m_frames.back().get(); in parse()494 SkASSERT(!m_frames.empty()); in parse()495 auto* currentFrame = m_frames.back().get(); in parse()636 SkGIFFrameContext* currentFrame = m_frames.back().get(); in parse()[all …]
316 const int frames = m_frames.count(); in imagesCount()326 return m_frames.back()->reachedStartOfData() ? frames : frames - 1; in imagesCount()342 return index >= 0 && index < m_frames.count() in frameContext()343 ? m_frames[index].get() : nullptr; in frameContext()347 for (int index = 0; index < m_frames.count(); index++) { in clearDecodeState()348 m_frames[index]->clearDecodeState(); in clearDecodeState()371 return m_frames.empty() || (m_frames.count() == 1 && !m_frames[0]->isComplete()); in currentFrameIsFirstFrame()388 SkTArray<std::unique_ptr<SkGIFFrameContext>> m_frames; variable
273 : m_frames(std::move(frames)), in V8StackTraceImpl()282 m_frames, 0, std::shared_ptr<AsyncStackTrace>(), V8StackTraceId())); in clone()296 bool V8StackTraceImpl::isEmpty() const { return m_frames.empty(); } in isEmpty()299 return toStringView(m_frames[0]->sourceURL()); in topSourceURL()303 return m_frames[0]->lineNumber() + 1; in topLineNumber()307 return m_frames[0]->columnNumber() + 1; in topColumnNumber()310 int V8StackTraceImpl::topScriptId() const { return m_frames[0]->scriptId(); } in topScriptId()313 return toStringView(m_frames[0]->functionName()); in topFunctionName()324 return buildInspectorObjectCommon(debugger, m_frames, String16(), in buildInspectorObjectImpl()337 for (size_t i = 0; i < m_frames.size(); ++i) { in toString()[all …]
107 std::vector<std::shared_ptr<StackFrame>> m_frames; variable132 return m_frames; in frames()144 std::vector<std::shared_ptr<StackFrame>> m_frames; variable