Home
last modified time | relevance | path

Searched refs:m_progress (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Tools/QtTestBrowser/
Dlocationedit.cpp46 , m_progress(0) in LocationEdit()
67 m_progress = progress; in setProgress()
106 if (!m_progress) in paintEvent()
111 gradient.setColorAt(((double) m_progress) / 100, progressColor); in paintEvent()
112 if (m_progress != 100) in paintEvent()
113 gradient.setColorAt((double) m_progress / 100 + 0.001, backgroundColor); in paintEvent()
120 if (m_progress == 100) in paintEvent()
Dlocationedit.h58 int m_progress; variable
/external/webkit/Source/WebCore/bindings/v8/
DScriptProfiler.cpp72 : m_progress(progress), m_firstReport(true) { } in ActivityControlAdapter()
75 ControlOption result = m_progress->isCanceled() ? kAbort : kContinue; in ReportProgressValue()
78 m_progress->Start(total); in ReportProgressValue()
80 m_progress->Worked(done); in ReportProgressValue()
82 m_progress->Done(); in ReportProgressValue()
86 ScriptProfiler::HeapSnapshotProgress* m_progress; member in WebCore::__anonc4ecbe050111::ActivityControlAdapter
/external/webkit/Source/WebCore/svg/
DSVGPathBlender.cpp33 , m_progress(0) in SVGPathBlender()
51 return blendAnimatedFloat(from, to, m_progress); in blendAnimatedDimensonalFloat()
57 …ndAnimatedFloat(from, m_fromMode == AbsoluteCoordinates ? to + toValue : to - toValue, m_progress); in blendAnimatedDimensonalFloat()
63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress); in blendAnimatedDimensonalFloat()
70 return blendFloatPoint(fromPoint, toPoint, m_progress); in blendAnimatedFloatPoint()
79 animatedPoint = blendFloatPoint(fromPoint, animatedPoint, m_progress); in blendAnimatedFloatPoint()
85 FloatPoint currentPoint = blendFloatPoint(m_fromCurrentPoint, m_toCurrentPoint, m_progress); in blendAnimatedFloatPoint()
238 m_consumer->arcTo(blendAnimatedFloat(fromRx, toRx, m_progress), in blendArcToSegment()
239 blendAnimatedFloat(fromRy, toRy, m_progress), in blendArcToSegment()
240 blendAnimatedFloat(fromAngle, toAngle, m_progress), in blendArcToSegment()
[all …]
DSVGPathBlender.h65 float m_progress; variable
/external/webkit/Source/WebCore/page/
DPage.h190 ProgressTracker* progress() const { return m_progress.get(); } in progress()
347 OwnPtr<ProgressTracker> m_progress; variable
DPage.cpp158 , m_progress(adoptPtr(new ProgressTracker)) in Page()