HomeSort by relevance Sort by last modified time
    Searched refs:Checkpoint (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLInputStream.h 56 struct Checkpoint {
57 Checkpoint(const SegmentedString& i, size_t n, size_t t) : input(i), numberOfSegmentsAlreadyAppended(n), tokensExtractedSincePreviousCheckpoint(t) { }
71 Vector<Checkpoint> m_checkpoints;
HTMLPreloadScanner.h 76 struct Checkpoint {
77 Checkpoint(const KURL& predictedBaseElementURL, bool inStyle, size_t templateCount)
98 Vector<Checkpoint> m_checkpoints;
BackgroundHTMLInputStream.cpp 51 HTMLInputCheckpoint checkpoint = m_checkpoints.size(); local
52 m_checkpoints.append(Checkpoint(m_current, m_segments.size(), tokensExtractedSincePreviousCheckpoint));
54 return checkpoint;
60 // There is nothing to do for the first valid checkpoint.
65 const Checkpoint& lastInvalidCheckpoint = m_checkpoints[newFirstValidCheckpointIndex - 1];
82 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex];
83 ASSERT(!checkpoint.isNull());
87 m_current = checkpoint.input;
89 for (size_t i = checkpoint.numberOfSegmentsAlreadyAppended; i < m_segments.size(); ++i)
    [all...]
BackgroundHTMLParser.h 60 struct Checkpoint {
75 void resumeFrom(PassOwnPtr<Checkpoint>);
HTMLTokenizer.h 124 struct Checkpoint {
131 Checkpoint()
142 void createCheckpoint(Checkpoint&) const;
143 void restoreFromCheckpoint(const Checkpoint&);
HTMLPreloadScanner.cpp 388 TokenPreloadScannerCheckpoint checkpoint = m_checkpoints.size(); local
389 m_checkpoints.append(Checkpoint(m_predictedBaseElementURL, m_inStyle, m_templateCount));
390 return checkpoint;
396 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex];
397 m_predictedBaseElementURL = checkpoint.predictedBaseElementURL;
398 m_inStyle = checkpoint.inStyle;
399 m_templateCount = checkpoint.templateCount;
BackgroundHTMLParser.cpp 151 void BackgroundHTMLParser::resumeFrom(PassOwnPtr<Checkpoint> checkpoint)
153 m_parser = checkpoint->parser;
154 m_token = checkpoint->token.release();
155 m_tokenizer = checkpoint->tokenizer.release();
156 m_treeBuilderSimulator.setState(checkpoint->treeBuilderState);
157 m_input.rewindTo(checkpoint->inputCheckpoint, checkpoint->unparsedInput);
158 m_preloadScanner->rewindTo(checkpoint->preloadScannerCheckpoint);
HTMLDocumentParser.cpp 417 OwnPtr<BackgroundHTMLParser::Checkpoint> checkpoint = adoptPtr(new BackgroundHTMLParser::Checkpoint); local
418 checkpoint->parser = m_weakFactory.createWeakPtr();
419 checkpoint->token = token;
420 checkpoint->tokenizer = tokenizer;
421 checkpoint->treeBuilderState = HTMLTreeBuilderSimulator::stateFor(m_treeBuilder.get());
422 checkpoint->inputCheckpoint = lastChunkBeforeScript->inputCheckpoint;
423 checkpoint->preloadScannerCheckpoint = lastChunkBeforeScript->preloadScannerCheckpoint;
424 checkpoint->unparsedInput = m_input.current().toString().isolatedCopy()
    [all...]
HTMLTokenizer.cpp 138 void HTMLTokenizer::createCheckpoint(Checkpoint& result) const
148 void HTMLTokenizer::restoreFromCheckpoint(const Checkpoint& checkpoint)
151 m_options = checkpoint.options;
152 m_state = checkpoint.state;
153 m_additionalAllowedCharacter = checkpoint.additionalAllowedCharacter;
154 m_inputStreamPreprocessor.reset(checkpoint.skipNextNewLine);
155 m_shouldAllowCDATA = checkpoint.shouldAllowCDATA;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImplTest.cpp 40 typedef testing::StrictMock< testing::MockFunction<void(int)> > Checkpoint;
167 Checkpoint checkpoint; local
172 EXPECT_CALL(checkpoint, Call(1));
177 checkpoint.Call(1);
204 Checkpoint checkpoint; local
208 EXPECT_CALL(checkpoint, Call(1));
212 EXPECT_CALL(checkpoint, Call(2));
214 EXPECT_CALL(checkpoint, Call(3))
258 Checkpoint checkpoint; local
374 Checkpoint checkpoint; local
501 Checkpoint checkpoint; local
666 Checkpoint checkpoint; local
695 Checkpoint checkpoint; local
    [all...]
DOMWebSocketTest.cpp 36 typedef testing::StrictMock<testing::MockFunction<void(int)> > Checkpoint; // NOLINT
495 Checkpoint checkpoint; local
516 Checkpoint checkpoint; local
521 EXPECT_CALL(checkpoint, Call(1));
528 checkpoint.Call(1);
596 Checkpoint checkpoint; local
602 EXPECT_CALL(checkpoint, Call(1))
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-int32-to-double-on-set-local-and-exit.js 30 function checkpoint(text) { function
31 debug("Checkpoint: " + text);
36 checkpoint("a");
38 checkpoint("b");
41 checkpoint("c");
46 checkpoint("1");
48 checkpoint("2");
50 checkpoint("3");
dfg-int32-to-double-on-set-local-and-sometimes-exit.js 30 function checkpoint(text) { function
31 debug("Checkpoint: " + text);
36 checkpoint("a");
38 checkpoint("b");
43 checkpoint("c");
48 checkpoint("1");
50 checkpoint("2");
52 checkpoint("3");
  /external/chromium_org/third_party/WebKit/Source/core/streams/
ReadableStreamTest.cpp 30 typedef ::testing::StrictMock<::testing::MockFunction<void(int)> > Checkpoint;
155 Checkpoint checkpoint; local
163 EXPECT_CALL(checkpoint, Call(0));
165 EXPECT_CALL(checkpoint, Call(1));
168 checkpoint.Call(0);
171 checkpoint.Call(1);
181 Checkpoint checkpoint; local
189 EXPECT_CALL(checkpoint, Call(0))
445 Checkpoint checkpoint; local
480 Checkpoint checkpoint; local
    [all...]
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 143 typedef StrictMock< MockFunction<void(int)> > Checkpoint; // NOLINT
1456 Checkpoint checkpoint; local
1757 Checkpoint checkpoint; local
1778 Checkpoint checkpoint; local
1825 Checkpoint checkpoint; local
2152 Checkpoint checkpoint; local
2185 Checkpoint checkpoint; local
2205 Checkpoint checkpoint; local
2230 Checkpoint checkpoint; local
2269 Checkpoint checkpoint; local
2295 Checkpoint checkpoint; local
2359 Checkpoint checkpoint; local
2552 Checkpoint checkpoint; local
2764 Checkpoint checkpoint; local
3347 Checkpoint checkpoint; local
    [all...]
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.h 259 // Preserve a checkpoint of the environment for the IR graph. Any
261 Node* Checkpoint(BailoutId ast_id, OutputFrameStateCombine combine);
ast-graph-builder.cc 220 Node* AstGraphBuilder::Environment::Checkpoint(
    [all...]
  /external/chromium_org/v8/src/
preparser.cc 35 class PreParserTraits::Checkpoint
38 explicit Checkpoint(ParserBase<PreParserTraits>* parser)
preparser.h 126 friend class Traits::Checkpoint;
    [all...]
parser.h 377 class Checkpoint;
    [all...]
parser.cc 345 class ParserTraits::Checkpoint
348 explicit Checkpoint(ParserBase<ParserTraits>* parser)
    [all...]
  /external/chromium_org/media/filters/
chunk_demuxer_unittest.cc     [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 312 // Checkpoint the state of the tables. Future calls to Rollback() will
316 // Checkpoint() before it starts building and Rollback() if it encounters
318 void Checkpoint();
320 // Roll back the Tables to the state of the last Checkpoint(), removing
502 void DescriptorPool::Tables::Checkpoint() {
    [all...]

Completed in 249 milliseconds