HomeSort by relevance Sort by last modified time
    Searched refs:checkpoint (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
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.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);
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;
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/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/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/net/tools/balsa/
balsa_frame_test.cc 228 testing::MockFunction<void(int)> checkpoint; local
248 EXPECT_CALL(checkpoint, Call(0));
259 checkpoint.Call(0);
462 testing::MockFunction<void(int)> checkpoint; local
473 EXPECT_CALL(checkpoint, Call(0));
479 EXPECT_CALL(checkpoint, Call(1));
491 checkpoint.Call(0);
495 checkpoint.Call(1);
515 testing::MockFunction<void(int)> checkpoint; local
526 EXPECT_CALL(checkpoint, Call(0))
560 testing::MockFunction<void(int)> checkpoint; local
    [all...]
balsa_frame.cc 962 const char* checkpoint = message_start; local
    [all...]
  /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...]
websocket_deflate_stream_test.cc 382 MockCallback mock_callback, checkpoint; local
390 EXPECT_CALL(checkpoint, Call(0));
396 checkpoint.Call(0);
413 MockCallback mock_callback, checkpoint; local
421 EXPECT_CALL(checkpoint, Call(0));
427 checkpoint.Call(0);
461 MockCallback mock_callback, checkpoint; local
469 EXPECT_CALL(checkpoint, Call(0));
474 checkpoint.Call(0);
499 MockCallback mock_callback, checkpoint; local
1042 MockCallback mock_callback, checkpoint; local
    [all...]
  /external/chromium_org/chrome/browser/prefs/
pref_hash_filter.cc 154 base::TimeTicks checkpoint = base::TimeTicks::Now(); local
173 base::TimeTicks::Now() - checkpoint);
182 base::TimeTicks checkpoint = base::TimeTicks::Now(); local
224 base::TimeTicks::Now() - checkpoint);
  /external/chromium_org/net/tools/flip_server/
spdy_interface_test.cc 295 testing::MockFunction<void(int)> checkpoint; // NOLINT local
308 EXPECT_CALL(checkpoint, Call(0));
314 checkpoint.Call(0);
328 testing::MockFunction<void(int)> checkpoint; // NOLINT local
343 EXPECT_CALL(checkpoint, Call(0));
349 checkpoint.Call(0);
462 testing::MockFunction<void(int)> checkpoint; // NOLINT local
477 EXPECT_CALL(checkpoint, Call(0));
491 checkpoint.Call(0);
511 testing::MockFunction<void(int)> checkpoint; // NOLIN local
845 testing::MockFunction<void(int)> checkpoint; \/\/ NOLINT local
    [all...]
http_interface_test.cc 175 testing::MockFunction<void(int)> checkpoint; // NOLINT local
179 EXPECT_CALL(checkpoint, Call(0));
189 checkpoint.Call(0);
210 testing::MockFunction<void(int)> checkpoint; // NOLINT local
214 EXPECT_CALL(checkpoint, Call(0));
221 checkpoint.Call(0);
233 testing::MockFunction<void(int)> checkpoint; // NOLINT local
237 EXPECT_CALL(checkpoint, Call(0));
246 checkpoint.Call(0);
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 1131 private void checkpoint(boolean yield) throws InterruptedException { method in class:Vpn.LegacyVpnRunner
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleInvalidator.cpp 139 RecursionCheckpoint checkpoint(&recursionData);
  /external/lldb/include/lldb/Target/
Thread.h 133 // TODO: You shouldn't just checkpoint the register state alone, so this should get
    [all...]
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc 461 base::TimeTicks checkpoint = base::TimeTicks::Now(); local
465 checkpoint2 - checkpoint);
467 checkpoint = checkpoint2;
471 checkpoint2 - checkpoint);
473 checkpoint = checkpoint2;
477 checkpoint2 - checkpoint);
    [all...]
  /external/lldb/source/Target/
Thread.cpp     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 340 // checkpoint in the stack during dependency building.
349 // checkpoint.
352 // Mark the last checkpoint as having cleared successfully, removing it from
356 // checkpoint won't be rolled back: if a checkpoint gets rolled back,
361 // Roll back the Tables to the state of the checkpoint at the top of the
447 struct CheckPoint {
448 explicit CheckPoint(const Tables* tables)
468 vector<CheckPoint> checkpoints_;
574 checkpoints_.push_back(CheckPoint(this))
591 const CheckPoint& checkpoint = checkpoints_.back(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 285 def checkpoint(self, mins=0): member in class:bsdTableDB
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 285 def checkpoint(self, mins=0): member in class:bsdTableDB

Completed in 591 milliseconds

1 2