Home
last modified time | relevance | path

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

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYStep.java25 private final float stepCount; field in XYStep
31 public XYStep(float stepCount, float stepPix, double stepVal) { in XYStep() argument
32 this.stepCount = stepCount; in XYStep()
38 return stepCount; in getStepCount()
DXYStepCalculator.java55 float stepCount = 0; in getStep() local
60 stepCount = plotPixelSize /stepPix; in getStep()
64 stepCount = plotPixelSize /stepPix; in getStep()
68 stepCount = new Double(stepValue).floatValue(); in getStep()
69 stepPix = (plotPixelSize /(stepCount-1)); in getStep()
73 return new XYStep(stepCount, stepPix, stepVal); in getStep()
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DWalkerFactory.java562 int stepCount = 0; in isOptimizableForDescendantIterator() local
576 stepCount++; in isOptimizableForDescendantIterator()
577 if(stepCount > 3) in isOptimizableForDescendantIterator()
604 if(1 != stepCount) in isOptimizableForDescendantIterator()
614 if(3 == stepCount) in isOptimizableForDescendantIterator()
619 if(1 != stepCount) in isOptimizableForDescendantIterator()
670 int stepCount = 0; in analyze() local
675 stepCount++; in analyze()
720 if (2 == stepCount && BIT_ROOT == analysisResult) in analyze()
770 analysisResult |= (stepCount & BITS_COUNT); in analyze()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DRedundentExprEliminator.java612 int stepCount = countSteps(lpi); in findAndEliminateRedundant() local
625 head = new MultistepExprHolder(firstOccuranceOwner, stepCount, null); in findAndEliminateRedundant()
629 tail.m_next = new MultistepExprHolder(owner2, stepCount, null); in findAndEliminateRedundant()
644 head = new MultistepExprHolder(firstOccuranceOwner, stepCount, null); in findAndEliminateRedundant()
1321 MultistepExprHolder(ExpressionOwner exprOwner, int stepCount, MultistepExprHolder next) in MultistepExprHolder() argument
1325 m_stepCount = stepCount; in MultistepExprHolder()
1337 MultistepExprHolder addInSortedOrder(ExpressionOwner exprOwner, int stepCount) in addInSortedOrder() argument
1344 if(stepCount >= next.m_stepCount) in addInSortedOrder()
1346 MultistepExprHolder newholder = new MultistepExprHolder(exprOwner, stepCount, next); in addInSortedOrder()
1358 prev.m_next = new MultistepExprHolder(exprOwner, stepCount, null); in addInSortedOrder()
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java822 int opPos, int stepCount, StepPattern ancestorPattern) in stepPattern() argument
932 StepPattern relativePathPattern = stepPattern(endStep, stepCount + 1, in stepPattern()
/external/deqp/framework/common/
DtcuTexLookupVerifier.cpp146 const Vec4 stepCount = d / prec.colorThreshold; in computeBilinearSearchStepFromFloatLine() local
147 const Vec4 minStep = 1.0f / (stepCount + 1.0f); in computeBilinearSearchStepFromFloatLine()
164 const Vec4 stepCount = maxD / prec.colorThreshold; in computeBilinearSearchStepFromFloatQuad() local
165 const Vec4 minStep = 1.0f / (stepCount + 1.0f); in computeBilinearSearchStepFromFloatQuad()
175 const Vec4 stepCount = 1.0f / prec.colorThreshold; in computeBilinearSearchStepForUnorm() local
176 const Vec4 minStep = 1.0f / (stepCount + 1.0f); in computeBilinearSearchStepForUnorm()
186 const Vec4 stepCount = 2.0f / prec.colorThreshold; in computeBilinearSearchStepForSnorm() local
187 const Vec4 minStep = 1.0f / (stepCount + 1.0f); in computeBilinearSearchStepForSnorm()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
DWifiScannerFacade.java360 result.stepCount = j.getInt("stepCount"); in parseScanSettings()