/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
D | StatisticalSummaryValues.java | 119 public double getVariance() { in getVariance() method in StatisticalSummaryValues 145 MathUtils.equalsIncludingNaN(stat.getVariance(), getVariance()); in equals() 160 result = result * 31 + MathUtils.hash(getVariance()); in hashCode() 181 outBuffer.append("variance: ").append(getVariance()).append(endl); in toString()
|
D | SummaryStatistics.java | 139 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary() 221 stdDev = FastMath.sqrt(getVariance()); in getStandardDeviation() 236 public double getVariance() { in getVariance() method in SummaryStatistics 321 outBuffer.append("variance: ").append(getVariance()).append(endl); in toString() 372 MathUtils.equalsIncludingNaN(stat.getVariance(), getVariance()); in equals() 389 result = result * 31 + MathUtils.hash(getVariance()); in hashCode()
|
D | AggregateSummaryStatistics.java | 203 public double getVariance() { in getVariance() method in AggregateSummaryStatistics 205 return statistics.getVariance(); in getVariance() 267 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary()
|
D | SynchronizedSummaryStatistics.java | 113 public synchronized double getVariance() { in getVariance() method in SynchronizedSummaryStatistics 114 return super.getVariance(); in getVariance()
|
D | StatisticalSummary.java | 37 double getVariance(); in getVariance() method
|
D | DescriptiveStatistics.java | 212 public double getVariance() { in getVariance() method in DescriptiveStatistics 225 stdDev = FastMath.sqrt(getVariance()); in getStandardDeviation()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
D | TTestImpl.java | 214 return t(sampleStats.getMean(), mu, sampleStats.getVariance(), in t() 334 sampleStats1.getVariance(), sampleStats2.getVariance(), in t() 379 sampleStats1.getVariance(), sampleStats2.getVariance(), in homoscedasticT() 488 return tTest(sampleStats.getMean(), mu, sampleStats.getVariance(), in tTest() 778 return tTest(sampleStats1.getMean(), sampleStats2.getMean(), sampleStats1.getVariance(), in tTest() 779 sampleStats2.getVariance(), sampleStats1.getN(), in tTest() 822 sampleStats2.getMean(), sampleStats1.getVariance(), in homoscedasticTTest() 823 sampleStats2.getVariance(), sampleStats1.getN(), in homoscedasticTTest()
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 779 if (newTypeParam->getVariance() != prevTypeParam->getVariance()) { in checkTypeParamListConsistency() 780 if (newTypeParam->getVariance() == ObjCTypeParamVariance::Invariant && in checkTypeParamListConsistency() 784 newTypeParam->setVariance(prevTypeParam->getVariance()); in checkTypeParamListConsistency() 785 } else if (prevTypeParam->getVariance() in checkTypeParamListConsistency() 802 << static_cast<unsigned>(newTypeParam->getVariance()) in checkTypeParamListConsistency() 804 << static_cast<unsigned>(prevTypeParam->getVariance()) in checkTypeParamListConsistency() 806 switch (prevTypeParam->getVariance()) { in checkTypeParamListConsistency() 814 = prevTypeParam->getVariance() == ObjCTypeParamVariance::Covariant in checkTypeParamListConsistency() 817 if (newTypeParam->getVariance() in checkTypeParamListConsistency() 833 newTypeParam->setVariance(prevTypeParam->getVariance()); in checkTypeParamListConsistency() [all …]
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 856 if (newTypeParam->getVariance() != prevTypeParam->getVariance()) { in checkTypeParamListConsistency() 857 if (newTypeParam->getVariance() == ObjCTypeParamVariance::Invariant && in checkTypeParamListConsistency() 861 newTypeParam->setVariance(prevTypeParam->getVariance()); in checkTypeParamListConsistency() 862 } else if (prevTypeParam->getVariance() in checkTypeParamListConsistency() 879 << static_cast<unsigned>(newTypeParam->getVariance()) in checkTypeParamListConsistency() 881 << static_cast<unsigned>(prevTypeParam->getVariance()) in checkTypeParamListConsistency() 883 switch (prevTypeParam->getVariance()) { in checkTypeParamListConsistency() 891 = prevTypeParam->getVariance() == ObjCTypeParamVariance::Covariant in checkTypeParamListConsistency() 894 if (newTypeParam->getVariance() in checkTypeParamListConsistency() 910 newTypeParam->setVariance(prevTypeParam->getVariance()); in checkTypeParamListConsistency() [all …]
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | DynamicTypePropagation.cpp | 848 if (TypeParam->getVariance() != ObjCTypeParamVariance::Invariant) in checkPreObjCMessage()
|
/external/clang/lib/AST/ |
D | DeclPrinter.cpp | 1033 switch (Param->getVariance()) { in PrintObjCTypeParams()
|
D | ASTDumper.cpp | 1598 switch (D->getVariance()) { in VisitObjCTypeParamDecl()
|
D | ASTImporter.cpp | 3677 D->getVariance(), in VisitObjCTypeParamDecl()
|
D | ASTContext.cpp | 7156 switch (typeParams->begin()[i]->getVariance()) { in sameObjCTypeArgs()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclPrinter.cpp | 1217 switch (Param->getVariance()) { in PrintObjCTypeParams()
|
D | JSONNodeDumper.cpp | 940 switch (D->getVariance()) { in VisitObjCTypeParamDecl()
|
D | TextNodeDumper.cpp | 2161 switch (D->getVariance()) { in VisitObjCTypeParamDecl()
|
D | ASTContext.cpp | 9014 switch (typeParams->begin()[i]->getVariance()) { in sameObjCTypeArgs()
|
D | ASTImporter.cpp | 4257 Result, D, Importer.getToContext(), DC, D->getVariance(), in VisitObjCTypeParamDecl()
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclObjC.h | 622 ObjCTypeParamVariance getVariance() const { in getVariance() function
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 572 ObjCTypeParamVariance getVariance() const { in getVariance() function
|