Searched defs:steps (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/scd/
H A DSCDImpl.java40 * SCD is fundamentally a list of steps.
42 private final Step[] steps; field in class:SCDImpl
49 public SCDImpl(String text, Step[] steps) { argument
51 this.steps = steps;
57 int len = steps.length;
59 if(i!=0 && i!=len-1 && !steps[i-1].axis.isModelGroup() && steps[i].axis.isModelGroup()) {
75 nodeSet = steps[i].evaluate(nodeSet);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp234 int steps = 0 ; local
243 // consider adjusting steps downward:
244 // steps = 0
245 // steps -= NNN
246 // steps >>= 1
247 // steps = MIN(steps, 2000-100)
248 // if (iterations != 0) steps -= NNN
325 ++steps ;
326 if (ncpus > 1 && steps < SafepointSpinBeforeYiel
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java137 Step[] steps = new Step[size];
138 stepsVector.copyInto(steps);
141 return new LocationPath(steps);
379 /** List of steps. */
380 public Step[] steps; field in class:XPath.LocationPath
386 /** Creates a location path from a series of steps. */
387 public LocationPath(Step[] steps) { argument
388 this.steps = steps;
393 steps
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DShapeSpanIterator.c1367 jlong steps = loy; local
1368 steps -= y0 - 1;
1370 x0 += (jint) (steps * seg->bumpx);
1371 steps = err + (steps * seg->bumperr);
1372 x0 += (jint) (steps >> 31);
1373 err = ((jint) steps) & ERRSTEP_MAX;

Completed in 54 milliseconds