Searched refs:advanceTo (Results 1 - 25 of 25) sorted by path

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp543 m_lifecycle.advanceTo(DocumentLifecycle::Inactive);
677 m_lifecycle.advanceTo(DocumentLifecycle::Disposed);
1842 m_lifecycle.advanceTo(DocumentLifecycle::InStyleRecalc);
1896 m_lifecycle.advanceTo(DocumentLifecycle::StyleClean);
1935 lifecycle().advanceTo(DocumentLifecycle::LayoutClean);
2145 m_lifecycle.advanceTo(DocumentLifecycle::StyleClean);
2151 m_lifecycle.advanceTo(DocumentLifecycle::Stopping);
2209 m_lifecycle.advanceTo(DocumentLifecycle::Stopped);
H A DDocumentLifecycle.cpp48 m_lifecycle.advanceTo(m_finalState);
166 void DocumentLifecycle::advanceTo(State state) function in class:blink::DocumentLifecycle
H A DDocumentLifecycle.h127 void advanceTo(State);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDeprecatedScheduleStyleRecalcDuringLayout.cpp25 m_lifecycle.advanceTo(DocumentLifecycle::InPerformLayout);
H A DFrameView.cpp692 lifecycle().advanceTo(DocumentLifecycle::InPreLayout);
721 lifecycle().advanceTo(DocumentLifecycle::StyleClean);
731 lifecycle().advanceTo(DocumentLifecycle::InPerformLayout);
749 lifecycle().advanceTo(DocumentLifecycle::AfterPerformLayout);
2713 lifecycle().advanceTo(DocumentLifecycle::InPaintInvalidation);
2715 lifecycle().advanceTo(DocumentLifecycle::PaintInvalidationClean);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFrameLoader.cpp150 m_stateMachine.advanceTo(FrameLoaderStateMachine::DisplayingInitialEmptyDocument);
243 m_stateMachine.advanceTo(FrameLoaderStateMachine::CommittedFirstRealLoad);
275 m_stateMachine.advanceTo(FrameLoaderStateMachine::CommittedFirstRealLoad);
358 m_stateMachine.advanceTo(FrameLoaderStateMachine::CommittedMultipleRealLoads);
H A DFrameLoaderStateMachine.cpp62 void FrameLoaderStateMachine::advanceTo(State state) function in class:blink::FrameLoaderStateMachine
H A DFrameLoaderStateMachine.h57 void advanceTo(State);
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DRenderLayerCompositor.cpp206 lifecycle().advanceTo(DocumentLifecycle::InCompositingUpdate);
208 lifecycle().advanceTo(DocumentLifecycle::CompositingClean);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java4325 if (advanceTo(nextEntry)) {
4339 if (advanceTo(nextEntry) || nextInChain()) {
4351 boolean advanceTo(ReferenceEntry<K, V> entry) { method in class:LocalCache.HashIterator
/external/guava/guava/src/com/google/common/collect/
H A DMapMakerInternalMap.java3691 if (advanceTo(nextEntry)) {
3705 if (advanceTo(nextEntry) || nextInChain()) {
3717 boolean advanceTo(ReferenceEntry<K, V> entry) { method in class:MapMakerInternalMap.HashIterator
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h87 // void advanceTo(KeyT x);
1437 /// advanceTo - Move to the first interval with stop >= x, or end().
1440 void advanceTo(KeyT x) {
2073 posA.advanceTo(posB.start());
2078 posB.advanceTo(posA.start());
2087 posA.advanceTo(posB.start());
2091 posB.advanceTo(posA.start());
2150 /// advanceTo - Move to the first overlapping interval with
2152 void advanceTo(KeyType x) {
2155 // Make sure advanceTo see
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h207 /// advanceTo - Advance the specified iterator to point to the Segment
212 iterator advanceTo(iterator I, SlotIndex Pos) {
221 /// Pos, or end(). This is the same as advanceTo(begin(), Pos), but faster
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp127 // Use advanceTo only when possible.
138 RUI.VirtI.advanceTo(Start);
140 RUI.FixedI = RUI.Fixed->advanceTo(RUI.FixedI, Start);
210 I.advanceTo(Stop);
227 I = LR->advanceTo(I, Stop);
H A DLiveDebugVariables.cpp759 LiveInterval::iterator LII = LI->advanceTo(LI->begin(), LocMapI.start());
763 LII = LI->advanceTo(LII, LocMapI.start());
806 LocMapI.advanceTo(LII->start);
811 LII = LI->advanceTo(LII, LocMapI.start());
H A DLiveIntervalAnalysis.cpp577 I = RRanges.advanceTo(I, RI->end);
708 LiveI = LI.advanceTo(LiveI, *SlotI);
876 LiveRange::iterator NewI = LR.advanceTo(I, NewIdx.getRegSlot());
H A DLiveIntervalUnion.cpp43 SegPos.advanceTo(RegPos->start);
73 RegPos = VirtReg.advanceTo(RegPos, SegPos.start());
77 SegPos.advanceTo(RegPos->start);
169 VirtRegI = VirtReg->advanceTo(VirtRegI, LiveUnionI.start());
178 LiveUnionI.advanceTo(VirtRegI->start);
H A DSplitKit.cpp288 LVI = li->advanceTo(LVI, Stop);
845 AssignI.advanceTo(Start);
/external/llvm/unittests/ADT/
H A DIntervalMapTest.cpp238 // Test advanceTo on flat tree.
240 I.advanceTo(135);
245 I.advanceTo(145);
250 I.advanceTo(200);
253 I.advanceTo(300);
372 // Test advanceTo in same node.
373 I.advanceTo(20);
415 // advanceTo another node.
416 I.advanceTo(200);
511 // Test advanceTo i
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DScheduler.java66 return advanceTo(postedRunnables.get(postedRunnables.size() - 1).scheduledTime);
74 return advanceTo(postedRunnables.get(0).scheduledTime);
79 return advanceTo(endingTime);
82 public boolean advanceTo(long endingTime) { method in class:Scheduler

Completed in 650 milliseconds