Home
last modified time | relevance | path

Searched refs:checkpoint (Results 1 – 25 of 38) sorted by relevance

12

/external/chromium_org/v8/test/webkit/
Ddfg-int32-to-double-on-set-local-and-exit.js30 function checkpoint(text) { function
36 checkpoint("a");
38 checkpoint("b");
41 checkpoint("c");
46 checkpoint("1");
48 checkpoint("2");
50 checkpoint("3");
Ddfg-int32-to-double-on-set-local-and-sometimes-exit.js30 function checkpoint(text) { function
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/html/parser/
DBackgroundHTMLInputStream.cpp51 HTMLInputCheckpoint checkpoint = m_checkpoints.size(); in createCheckpoint() local
54 return checkpoint; in createCheckpoint()
82 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex]; in rewindTo() local
83 ASSERT(!checkpoint.isNull()); in rewindTo()
87 m_current = checkpoint.input; in rewindTo()
89 for (size_t i = checkpoint.numberOfSegmentsAlreadyAppended; i < m_segments.size(); ++i) { in rewindTo()
DBackgroundHTMLParser.cpp151 void BackgroundHTMLParser::resumeFrom(PassOwnPtr<Checkpoint> checkpoint) in resumeFrom() argument
153 m_parser = checkpoint->parser; in resumeFrom()
154 m_token = checkpoint->token.release(); in resumeFrom()
155 m_tokenizer = checkpoint->tokenizer.release(); in resumeFrom()
156 m_treeBuilderSimulator.setState(checkpoint->treeBuilderState); in resumeFrom()
157 m_input.rewindTo(checkpoint->inputCheckpoint, checkpoint->unparsedInput); in resumeFrom()
158 m_preloadScanner->rewindTo(checkpoint->preloadScannerCheckpoint); in resumeFrom()
DHTMLDocumentParser.cpp415 …OwnPtr<BackgroundHTMLParser::Checkpoint> checkpoint = adoptPtr(new BackgroundHTMLParser::Checkpoin… in discardSpeculationsAndResumeFrom() local
416 checkpoint->parser = m_weakFactory.createWeakPtr(); in discardSpeculationsAndResumeFrom()
417 checkpoint->token = token; in discardSpeculationsAndResumeFrom()
418 checkpoint->tokenizer = tokenizer; in discardSpeculationsAndResumeFrom()
419 checkpoint->treeBuilderState = HTMLTreeBuilderSimulator::stateFor(m_treeBuilder.get()); in discardSpeculationsAndResumeFrom()
420 checkpoint->inputCheckpoint = lastChunkBeforeScript->inputCheckpoint; in discardSpeculationsAndResumeFrom()
421 checkpoint->preloadScannerCheckpoint = lastChunkBeforeScript->preloadScannerCheckpoint; in discardSpeculationsAndResumeFrom()
422 checkpoint->unparsedInput = m_input.current().toString().isolatedCopy(); in discardSpeculationsAndResumeFrom()
425 ASSERT(checkpoint->unparsedInput.isSafeToSendToAnotherThread()); in discardSpeculationsAndResumeFrom()
426 …red()->postTask(bind(&BackgroundHTMLParser::resumeFrom, m_backgroundParser, checkpoint.release())); in discardSpeculationsAndResumeFrom()
DHTMLPreloadScanner.cpp371 TokenPreloadScannerCheckpoint checkpoint = m_checkpoints.size(); in createCheckpoint() local
373 return checkpoint; in createCheckpoint()
379 const Checkpoint& checkpoint = m_checkpoints[checkpointIndex]; in rewindTo() local
380 m_predictedBaseElementURL = checkpoint.predictedBaseElementURL; in rewindTo()
381 m_inStyle = checkpoint.inStyle; in rewindTo()
382 m_templateCount = checkpoint.templateCount; in rewindTo()
DHTMLTokenizer.cpp148 void HTMLTokenizer::restoreFromCheckpoint(const Checkpoint& checkpoint) in restoreFromCheckpoint() argument
151 m_options = checkpoint.options; in restoreFromCheckpoint()
152 m_state = checkpoint.state; in restoreFromCheckpoint()
153 m_additionalAllowedCharacter = checkpoint.additionalAllowedCharacter; in restoreFromCheckpoint()
154 m_inputStreamPreprocessor.reset(checkpoint.skipNextNewLine); in restoreFromCheckpoint()
155 m_shouldAllowCDATA = checkpoint.shouldAllowCDATA; in restoreFromCheckpoint()
/external/chromium_org/net/tools/balsa/
Dbalsa_frame_test.cc228 testing::MockFunction<void(int)> checkpoint; in TEST_F() local
248 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
259 checkpoint.Call(0); in TEST_F()
462 testing::MockFunction<void(int)> checkpoint; in TEST_F() local
473 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
479 EXPECT_CALL(checkpoint, Call(1)); in TEST_F()
491 checkpoint.Call(0); in TEST_F()
495 checkpoint.Call(1); in TEST_F()
515 testing::MockFunction<void(int)> checkpoint; in TEST_F() local
526 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
[all …]
Dbalsa_frame.cc949 const char* checkpoint = message_start; in ProcessHeaders() local
972 checkpoint = message_start = message_current; in ProcessHeaders()
1015 headers_->WriteFromFramer(checkpoint, in ProcessHeaders()
1016 1 + message_current - checkpoint); in ProcessHeaders()
1017 checkpoint = message_current + 1; in ProcessHeaders()
1059 headers_->WriteFromFramer(checkpoint, in ProcessHeaders()
1060 1 + message_current - checkpoint); in ProcessHeaders()
1061 checkpoint = message_current + 1; in ProcessHeaders()
1095 headers_->WriteFromFramer(checkpoint, message_current - checkpoint); in ProcessHeaders()
1146 headers_->WriteFromFramer(checkpoint, message_current - checkpoint); in ProcessHeaders()
/external/chromium_org/net/websockets/
Dwebsocket_channel_test.cc1456 Checkpoint checkpoint; in TEST_F() local
1463 EXPECT_CALL(checkpoint, Call(1)); in TEST_F()
1468 EXPECT_CALL(checkpoint, Call(2)); in TEST_F()
1472 checkpoint.Call(1); in TEST_F()
1474 checkpoint.Call(2); in TEST_F()
1757 Checkpoint checkpoint; in TEST_F() local
1762 EXPECT_CALL(checkpoint, Call(1)); in TEST_F()
1764 EXPECT_CALL(checkpoint, Call(2)); in TEST_F()
1768 checkpoint.Call(1); in TEST_F()
1772 checkpoint.Call(2); in TEST_F()
[all …]
Dwebsocket_deflate_stream_test.cc381 MockCallback mock_callback, checkpoint; in TEST_F() local
389 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
395 checkpoint.Call(0); in TEST_F()
412 MockCallback mock_callback, checkpoint; in TEST_F() local
420 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
426 checkpoint.Call(0); in TEST_F()
460 MockCallback mock_callback, checkpoint; in TEST_F() local
468 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
473 checkpoint.Call(0); in TEST_F()
498 MockCallback mock_callback, checkpoint; in TEST_F() local
[all …]
/external/chromium_org/net/tools/flip_server/
Dhttp_interface_test.cc175 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_F() local
179 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
189 checkpoint.Call(0); in TEST_F()
210 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_F() local
214 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
221 checkpoint.Call(0); in TEST_F()
233 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_F() local
237 EXPECT_CALL(checkpoint, Call(0)); in TEST_F()
246 checkpoint.Call(0); in TEST_F()
Dspdy_interface_test.cc294 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_P() local
307 EXPECT_CALL(checkpoint, Call(0)); in TEST_P()
313 checkpoint.Call(0); in TEST_P()
327 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_P() local
342 EXPECT_CALL(checkpoint, Call(0)); in TEST_P()
348 checkpoint.Call(0); in TEST_P()
461 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_P() local
476 EXPECT_CALL(checkpoint, Call(0)); in TEST_P()
490 checkpoint.Call(0); in TEST_P()
510 testing::MockFunction<void(int)> checkpoint; // NOLINT in TEST_P() local
[all …]
/external/chromium_org/third_party/sqlite/src/test/
Dwal5.test12 # focus of this file is testing the operation of "blocking-checkpoint"
28 # A checkpoint may be requested either using the C API or by executing
110 # Attempt a checkpoint.
123 # Now do a blocking-checkpoint. Set the busy-handler up so that connection
125 # proceed to checkpoint the entire log file. Next write should go to the
164 # This block of tests explores checkpoint operations on more than one
242 # if they cannot obtain those locks. There are three locks that a checkpoint
255 # This test case involves running a checkpoint while there exist other
258 foreach {tn1 checkpoint busy_on ckpt_expected expected} {
299 code1 { do_wal_checkpoint db -mode [string tolower $checkpoint] }
Dwal.test904 # The problem was that after performing a checkpoint using a connection
976 # Test that an error is returned if an attempt is made to checkpoint
1012 # After [db2] drops its lock, [db] may checkpoint the db.
1031 # API, an attempt is made to checkpoint all attached databases.
1318 # the database, so it runs a checkpoint operation. The bug was that
1320 # header before doing so, meaning that it could checkpoint an old
1365 # 3. Using connection 1, checkpoint the database. Make sure all
1369 # file in step 3 and the checkpoint was corrupting the database file.
Dwalthread.test287 # Turn off auto-checkpoint. Otherwise, an auto-checkpoint run by a
288 # writer may cause the dedicated checkpoint thread to return an
/external/chromium_org/chrome/browser/prefs/
Dpref_hash_filter.cc133 base::TimeTicks checkpoint = base::TimeTicks::Now(); in FilterSerializeData() local
152 base::TimeTicks::Now() - checkpoint); in FilterSerializeData()
161 base::TimeTicks checkpoint = base::TimeTicks::Now(); in FinalizeFilterOnLoad() local
199 base::TimeTicks::Now() - checkpoint); in FinalizeFilterOnLoad()
/external/chromium_org/webkit/data/test_shell/frames/iframe1_files/
Dtest.txt89 dt.checkpoint { font-weight: normal; }
123 span.checkpoint { font-weight: bold; margin-top: .75em; }
125 .checkpoint-nb { color: maroon; background: white; }
136 span.checkpoint { richness: 75; }
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocketTest.cpp494 Checkpoint checkpoint; in TEST_F() local
515 Checkpoint checkpoint; in TEST_F() local
520 EXPECT_CALL(checkpoint, Call(1)); in TEST_F()
527 checkpoint.Call(1); in TEST_F()
633 Checkpoint checkpoint; in TEST_F() local
639 EXPECT_CALL(checkpoint, Call(1)); in TEST_F()
646 checkpoint.Call(1); in TEST_F()
/external/chromium_org/chrome/browser/
Denumerate_modules_model_win.cc462 base::TimeTicks checkpoint = base::TimeTicks::Now(); in ScanImpl() local
466 checkpoint2 - checkpoint); in ScanImpl()
468 checkpoint = checkpoint2; in ScanImpl()
472 checkpoint2 - checkpoint); in ScanImpl()
474 checkpoint = checkpoint2; in ScanImpl()
478 checkpoint2 - checkpoint); in ScanImpl()
/external/lldb/include/lldb/Target/
DThread.h995 SaveFrameZeroState (RegisterCheckpoint &checkpoint);
998 RestoreSaveFrameZero (const RegisterCheckpoint &checkpoint);
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
DStyleInvalidator.cpp138 RecursionCheckpoint checkpoint(&m_recursionData); in invalidate() local
/external/lldb/source/Target/
DThread.cpp1893 Thread::SaveFrameZeroState (RegisterCheckpoint &checkpoint) in SaveFrameZeroState() argument
1898 checkpoint.SetStackID(frame_sp->GetStackID()); in SaveFrameZeroState()
1901 return reg_ctx_sp->ReadAllRegisterValues (checkpoint.GetData()); in SaveFrameZeroState()
1907 Thread::RestoreSaveFrameZero (const RegisterCheckpoint &checkpoint) in RestoreSaveFrameZero() argument
1909 return ResetFrameZeroRegisters (checkpoint.GetData()); in RestoreSaveFrameZero()
/external/chromium_org/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc591 const CheckPoint& checkpoint = checkpoints_.back(); in RollbackToLastCheckpoint() local
593 for (int i = checkpoint.pending_symbols_before_checkpoint; in RollbackToLastCheckpoint()
598 for (int i = checkpoint.pending_files_before_checkpoint; in RollbackToLastCheckpoint()
603 for (int i = checkpoint.pending_extensions_before_checkpoint; in RollbackToLastCheckpoint()
610 checkpoint.pending_symbols_before_checkpoint); in RollbackToLastCheckpoint()
611 files_after_checkpoint_.resize(checkpoint.pending_files_before_checkpoint); in RollbackToLastCheckpoint()
613 checkpoint.pending_extensions_before_checkpoint); in RollbackToLastCheckpoint()
616 strings_.begin() + checkpoint.strings_before_checkpoint, strings_.end()); in RollbackToLastCheckpoint()
618 messages_.begin() + checkpoint.messages_before_checkpoint, in RollbackToLastCheckpoint()
621 file_tables_.begin() + checkpoint.file_tables_before_checkpoint, in RollbackToLastCheckpoint()
[all …]
/external/e2fsprogs/lib/et/test_cases/
Dimap_err.et112 "Unable to checkpoint \\Seen state"

12