Searched defs:getN (Results 1 - 25 of 38) sorted by relevance

12

/external/testng/src/test/java/test/factory/
H A DBaseFactory.java13 public int getN() { method in class:BaseFactory
27 return "[" + getClass().getName() + " " + getN() + "]";
/external/testng/src/test/java/test/thread/
H A DParallelWithFactorySampleTest.java24 protected int getN() { method in class:ParallelWithFactorySampleTest
31 addId("f1 " + getN(), Thread.currentThread().getId());
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DStatisticalSummary.java58 long getN(); method in interface:StatisticalSummary
H A DStatisticalMultivariateSummary.java82 long getN(); method in interface:StatisticalMultivariateSummary
H A DStorelessUnivariateStatistic.java72 long getN(); method in interface:StorelessUnivariateStatistic
H A DStatisticalSummaryValues.java98 public long getN() { method in class:StatisticalSummaryValues
143 MathUtils.equalsIncludingNaN(stat.getN(), getN()) &&
158 result = result * 31 + MathUtils.hash(getN());
175 outBuffer.append("n: ").append(getN()).append(endl);
H A DSynchronizedDescriptiveStatistics.java97 public synchronized long getN() { method in class:SynchronizedDescriptiveStatistics
98 return super.getN();
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
H A DPolynomialSplineFunction.java176 public int getN() { method in class:PolynomialSplineFunction
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
H A DCovariance.java149 public int getN() { method in class:Covariance
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DVectorialMean.java77 public long getN() { method in class:VectorialMean
78 return (means.length == 0) ? 0 : means[0].getN();
H A DFirstMoment.java131 public long getN() { method in class:FirstMoment
H A DGeometricMean.java109 if (sumOfLogs.getN() > 0) {
110 return FastMath.exp(sumOfLogs.getResult() / sumOfLogs.getN());
150 public long getN() { method in class:GeometricMean
151 return sumOfLogs.getN();
198 if (getN() > 0) {
201 getN());
H A DKurtosis.java110 if (moment.getN() > 3) {
141 public long getN() { method in class:Kurtosis
142 return moment.getN();
H A DMean.java133 public long getN() { method in class:Mean
134 return moment.getN();
H A DSkewness.java111 double n0 = moment.getN();
120 public long getN() { method in class:Skewness
121 return moment.getN();
H A DStandardDeviation.java117 public long getN() { method in class:StandardDeviation
118 return variance.getN();
H A DVectorialCovariance.java108 public long getN() { method in class:VectorialCovariance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDSAParameterGenerationParameters.java61 public int getN() method in class:DSAParameterGenerationParameters
H A DECDomainParameters.java60 public BigInteger getN() method in class:ECDomainParameters
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECParameterSpec.java82 public BigInteger getN() method in class:ECParameterSpec
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
H A DMax.java100 public long getN() { method in class:Max
H A DMin.java100 public long getN() { method in class:Min
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java93 public long getN() { method in class:Product
H A DSum.java92 public long getN() { method in class:Sum
H A DSumOfLogs.java100 public long getN() { method in class:SumOfLogs

Completed in 397 milliseconds

12