reverse            71 Source/core/animation/AnimationPlayer.h     void reverse();
reverse           371 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           382 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           392 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           400 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           407 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           415 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse           420 Source/core/animation/AnimationPlayerTest.cpp     player->reverse();
reverse            61 Source/core/animation/CompositorAnimations.cpp void getKeyframeValuesForProperty(const KeyframeEffectModelBase* effect, CSSPropertyID id, double scale, bool reverse, PropertySpecificKeyframeVector& values)
reverse            66 Source/core/animation/CompositorAnimations.cpp     if (reverse) {
reverse           113 Source/core/animation/CompositorAnimations.cpp         return reverse(linear);
reverse           117 Source/core/animation/CompositorAnimations.cpp         return reverse(cubic);
reverse           321 Source/core/animation/CompositorAnimations.cpp     out.reverse = (timing.direction == Timing::PlaybackDirectionReverse
reverse           396 Source/core/animation/CompositorAnimations.cpp void CompositorAnimationsImpl::addKeyframesToCurve(blink::WebAnimationCurve& curve, const PropertySpecificKeyframeVector& keyframes, bool reverse)
reverse           402 Source/core/animation/CompositorAnimations.cpp             if (reverse) {
reverse           403 Source/core/animation/CompositorAnimations.cpp                 reversedTimingFunction = CompositorAnimationsTimingFunctionReverser::reverse(keyframes[i + 1]->easing());
reverse           452 Source/core/animation/CompositorAnimations.cpp     if (compositorTiming.reverse)
reverse           453 Source/core/animation/CompositorAnimations.cpp         timingFunction = CompositorAnimationsTimingFunctionReverser::reverse(timingFunction.get());
reverse           460 Source/core/animation/CompositorAnimations.cpp         getKeyframeValuesForProperty(&effect, *it, compositorTiming.scaledDuration, compositorTiming.reverse, values);
reverse           469 Source/core/animation/CompositorAnimations.cpp             addKeyframesToCurve(*floatCurve, values, compositorTiming.reverse);
reverse           476 Source/core/animation/CompositorAnimations.cpp             addKeyframesToCurve(*filterCurve, values, compositorTiming.reverse);
reverse           483 Source/core/animation/CompositorAnimations.cpp             addKeyframesToCurve(*transformCurve, values, compositorTiming.reverse);
reverse            50 Source/core/animation/CompositorAnimations.h     static PassRefPtr<TimingFunction> reverse(const LinearTimingFunction* timefunc);
reverse            51 Source/core/animation/CompositorAnimations.h     static PassRefPtr<TimingFunction> reverse(const CubicBezierTimingFunction* timefunc);
reverse            52 Source/core/animation/CompositorAnimations.h     static PassRefPtr<TimingFunction> reverse(const TimingFunction* timefunc);
reverse            42 Source/core/animation/CompositorAnimationsImpl.h         bool reverse;
reverse            53 Source/core/animation/CompositorAnimationsImpl.h     static void addKeyframesToCurve(blink::WebAnimationCurve&, const AnimatableValuePropertySpecificKeyframeVector&, bool reverse);
reverse           365 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_FALSE(m_compositorTiming.reverse);
reverse           370 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_TRUE(m_compositorTiming.reverse);
reverse           375 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_TRUE(m_compositorTiming.reverse);
reverse           388 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_FALSE(m_compositorTiming.reverse);
reverse           398 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_FALSE(m_compositorTiming.reverse);
reverse           408 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_TRUE(m_compositorTiming.reverse);
reverse           418 Source/core/animation/CompositorAnimationsTest.cpp     EXPECT_TRUE(m_compositorTiming.reverse);
reverse            55 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp         return CompositorAnimationsTimingFunctionReverser::reverse(timefunc.get());
reverse            62 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(linearTiming, reverse(linearTiming));
reverse            71 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(cubicEaseOutTiming, reverse(cubicEaseInTiming));
reverse            72 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(cubicEaseInTiming, reverse(cubicEaseOutTiming));
reverse            73 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(cubicEaseInOutTiming, reverse(cubicEaseInOutTiming));
reverse            78 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(cubicCustomTimingReversed, reverse(cubicCustomTiming));
reverse            82 Source/core/animation/CompositorAnimationsTimingFunctionReverserTest.cpp     EXPECT_REFV_EQ(cubicEaseTimingReversed, reverse(cubicEaseTiming));
reverse           128 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp     namespaceStack.reverse();
reverse          1629 Source/core/rendering/InlineFlowBox.cpp                 std::reverse(first, last);
reverse            71 Source/core/xml/XPathNodeSet.h             void reverse();
reverse           635 Source/platform/fonts/Font.cpp         glyphBuffer.reverse(0, glyphBuffer.size());
reverse           117 Source/platform/fonts/GlyphBuffer.h     void reverse(unsigned from, unsigned length)
reverse           118 Source/platform/fonts/WidthIterator.cpp         glyphBuffer->reverse(lastGlyphCount, glyphBufferSize - lastGlyphCount);
reverse           123 Source/platform/fonts/WidthIterator.cpp         glyphBuffer->reverse(lastGlyphCount, glyphBufferSize - lastGlyphCount);
reverse           323 Source/platform/fonts/mac/ComplexTextController.cpp         m_complexTextRuns.reverse();
reverse            88 Source/platform/fonts/mac/FontComplexTextMac.cpp         glyphBuffer.reverse(0, glyphBuffer.size());
reverse          2439 Source/web/WebViewImpl.cpp void WebViewImpl::setInitialFocus(bool reverse)
reverse          2448 Source/web/WebViewImpl.cpp     page()->focusController().setInitialFocus(reverse ? FocusTypeBackward : FocusTypeForward);
reverse          2567 Source/web/WebViewImpl.cpp void WebViewImpl::advanceFocus(bool reverse)
reverse          2569 Source/web/WebViewImpl.cpp     page()->focusController().advanceFocus(reverse ? FocusTypeBackward : FocusTypeForward);
reverse           195 Source/web/WebViewImpl.h     virtual void setInitialFocus(bool reverse) OVERRIDE;
reverse           200 Source/web/WebViewImpl.h     virtual void advanceFocus(bool reverse) OVERRIDE;
reverse           721 Source/wtf/Vector.h         void reverse();
reverse          1154 Source/wtf/Vector.h     inline void Vector<T, inlineCapacity, Allocator>::reverse()
reverse            51 Source/wtf/VectorTest.cpp     intVector.reverse();
reverse            59 Source/wtf/VectorTest.cpp     intVector.reverse();
reverse           206 Source/wtf/text/StringImpl.cpp     std::reverse(all.begin(), all.end());
reverse           171 public/web/WebView.h     virtual void setInitialFocus(bool reverse) = 0;
reverse           187 public/web/WebView.h     virtual void advanceFocus(bool reverse) { }