Searched refs:tokensExtractedSincePreviousCheckpoint (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLInputStream.h49 HTMLInputCheckpoint createCheckpoint(size_t tokensExtractedSincePreviousCheckpoint);
57 Checkpoint(const SegmentedString& i, size_t n, size_t t) : input(i), numberOfSegmentsAlreadyAppended(n), tokensExtractedSincePreviousCheckpoint(t) { }
61 size_t tokensExtractedSincePreviousCheckpoint; member in struct:blink::BackgroundHTMLInputStream::Checkpoint
66 void clear() { input.clear(); numberOfSegmentsAlreadyAppended = 0; tokensExtractedSincePreviousCheckpoint = 0;}
H A DBackgroundHTMLInputStream.cpp49 HTMLInputCheckpoint BackgroundHTMLInputStream::createCheckpoint(size_t tokensExtractedSincePreviousCheckpoint) argument
52 m_checkpoints.append(Checkpoint(m_current, m_segments.size(), tokensExtractedSincePreviousCheckpoint));
53 m_totalCheckpointTokenCount += tokensExtractedSincePreviousCheckpoint;
115 m_totalCheckpointTokenCount += m_checkpoints[i].tokensExtractedSincePreviousCheckpoint;

Completed in 428 milliseconds