OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:laststop
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/qt/
GradientQt.cpp
67
qreal
lastStop
(0.0);
71
if (qFuzzyCompare(
lastStop
, qreal(stopIterator->stop)))
72
lastStop
= stopIterator->stop + lastStopDiff;
74
lastStop
= stopIterator->stop;
77
lastStop
=
lastStop
* (1.0f - innerRadius / outerRadius);
79
lastStop
+= innerRadius / outerRadius;
82
qreal stopPosition = qMin(
lastStop
, qreal(1.0f));
88
// Keep the
lastStop
as orginal value, since the following stopColor depend it
89
lastStop
= stopIterator->stop
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/
Gradient.cpp
168
const ColorStop&
lastStop
= m_stops[stop];
170
float stopFraction = (value -
lastStop
.stop) / (nextStop.stop -
lastStop
.stop);
171
*r =
lastStop
.red + (nextStop.red -
lastStop
.red) * stopFraction;
172
*g =
lastStop
.green + (nextStop.green -
lastStop
.green) * stopFraction;
173
*b =
lastStop
.blue + (nextStop.blue -
lastStop
.blue) * stopFraction;
174
*a =
lastStop
.alpha + (nextStop.alpha - lastStop.alpha) * stopFraction
[
all
...]
/external/quake/quake/src/WinQuake/
client.h
185
double
laststop
;
member in struct:__anon10459
view.cpp
149
if (cl.
laststop
== cl.time)
164
cl.
laststop
= cl.time;
/external/quake/quake/src/QW/client/
client.h
255
double
laststop
;
member in struct:__anon10174
view.c
155
if (cl.
laststop
== cl.time)
170
cl.
laststop
= cl.time;
/external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp
[
all
...]
/external/llvm/lib/CodeGen/
SplitKit.cpp
194
SlotIndex
LastStop
= LVI->end;
197
BI.LastUse =
LastStop
;
200
if (
LastStop
< LVI->start) {
209
UseBlocks.back().LastUse =
LastStop
;
[
all
...]
Completed in 813 milliseconds