OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:numstops
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSGradientValue.cpp
159
size_t
numStops
= m_stops.size();
161
Vector<GradientStop> stops(
numStops
);
173
for (size_t i = 0; i <
numStops
; ++i) {
203
} else if (
numStops
> 1 && i ==
numStops
- 1) {
224
ASSERT(stops[0].specified && stops[
numStops
- 1].specified);
229
if (
numStops
> 2) {
233
for (size_t i = 0; i <
numStops
; ++i) {
257
if (m_repeating &&
numStops
> 1) {
260
float gradientRange = stops[
numStops
- 1].offset - stops[0].offset
[
all
...]
/development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java
339
if (mAxisXPositionsBuffer.length < mXStopsBuffer.
numStops
) {
340
mAxisXPositionsBuffer = new float[mXStopsBuffer.
numStops
];
342
if (mAxisYPositionsBuffer.length < mYStopsBuffer.
numStops
) {
343
mAxisYPositionsBuffer = new float[mYStopsBuffer.
numStops
];
345
if (mAxisXLinesBuffer.length < mXStopsBuffer.
numStops
* 4) {
346
mAxisXLinesBuffer = new float[mXStopsBuffer.
numStops
* 4];
348
if (mAxisYLinesBuffer.length < mYStopsBuffer.
numStops
* 4) {
349
mAxisYLinesBuffer = new float[mYStopsBuffer.
numStops
* 4];
353
for (i = 0; i < mXStopsBuffer.
numStops
; i++) {
356
for (i = 0; i < mYStopsBuffer.
numStops
; i++)
[
all
...]
Completed in 2436 milliseconds