HomeSort by relevance Sort by last modified time
    Searched refs:getVariance (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
StatisticalSummary.java 37 double getVariance();
StatisticalSummaryValues.java 119 public double getVariance() {
145 MathUtils.equalsIncludingNaN(stat.getVariance(), getVariance());
160 result = result * 31 + MathUtils.hash(getVariance());
181 outBuffer.append("variance: ").append(getVariance()).append(endl);
AggregateSummaryStatistics.java 201 * @see StatisticalSummary#getVariance()
203 public double getVariance() {
205 return statistics.getVariance();
267 return new StatisticalSummaryValues(getMean(), getVariance(), getN(),
SynchronizedSummaryStatistics.java 113 public synchronized double getVariance() {
114 return super.getVariance();
SummaryStatistics.java 139 return new StatisticalSummaryValues(getMean(), getVariance(), getN(),
221 stdDev = FastMath.sqrt(getVariance());
236 public double getVariance() {
321 outBuffer.append("variance: ").append(getVariance()).append(endl);
372 MathUtils.equalsIncludingNaN(stat.getVariance(), getVariance());
389 result = result * 31 + MathUtils.hash(getVariance());
DescriptiveStatistics.java 212 public double getVariance() {
225 stdDev = FastMath.sqrt(getVariance());
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
TTestImpl.java 214 return t(sampleStats.getMean(), mu, sampleStats.getVariance(),
334 sampleStats1.getVariance(), sampleStats2.getVariance(),
379 sampleStats1.getVariance(), sampleStats2.getVariance(),
488 return tTest(sampleStats.getMean(), mu, sampleStats.getVariance(),
    [all...]
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorCtsHelper.java 96 public static <TValue extends Number> double getVariance(Collection<TValue> collection) {
133 return Math.sqrt(getVariance(collection));
  /external/clang/lib/Sema/
SemaDeclObjC.cpp 779 if (newTypeParam->getVariance() != prevTypeParam->getVariance()) {
780 if (newTypeParam->getVariance() == ObjCTypeParamVariance::Invariant &&
784 newTypeParam->setVariance(prevTypeParam->getVariance());
785 } else if (prevTypeParam->getVariance()
802 << static_cast<unsigned>(newTypeParam->getVariance())
804 << static_cast<unsigned>(prevTypeParam->getVariance())
806 switch (prevTypeParam->getVariance()) {
814 = prevTypeParam->getVariance() == ObjCTypeParamVariance::Covariant
817 if (newTypeParam->getVariance()
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 1033 switch (Param->getVariance()) {
    [all...]
ASTDumper.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.1.51/
kotlin-runtime-1.1.51.jar 
  /external/clang/include/clang/AST/
DeclObjC.h 572 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
DeclObjC.h 577 ObjCTypeParamVariance getVariance() const {
    [all...]

Completed in 1419 milliseconds

1 2 3