Home
last modified time | relevance | path

Searched refs:getResult (Results 1 – 25 of 250) sorted by relevance

12345678910

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DAbstractStorelessUnivariateStatistic.java91 return getResult(); in evaluate()
108 public abstract double getResult(); in getResult() method in AbstractStorelessUnivariateStatistic
169 return MathUtils.equalsIncludingNaN(stat.getResult(), this.getResult()) && in equals()
180 return 31* (31 + MathUtils.hash(getResult())) + MathUtils.hash(getN()); in hashCode()
DSummaryStatistics.java181 return sumImpl.getResult(); in getSum()
192 return sumsqImpl.getResult(); in getSumsq()
204 return new Mean(secondMoment).getResult(); in getMean()
206 return meanImpl.getResult(); in getMean()
238 return new Variance(secondMoment).getResult(); in getVariance()
240 return varianceImpl.getResult(); in getVariance()
252 return maxImpl.getResult(); in getMax()
263 return minImpl.getResult(); in getMin()
274 return geoMeanImpl.getResult(); in getGeometricMean()
286 return sumLogImpl.getResult(); in getSumOfLogs()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DOneWayAnovaImpl.java168 double ss = sumsq.getResult() - sum.getResult() * sum.getResult() / num; in anovaStats()
171 double sst = totsumsq.getResult() - totsum.getResult() * in anovaStats()
172 totsum.getResult()/totnum; in anovaStats()
/external/llvm/lib/Analysis/
DAliasAnalysis.cpp594 AAR->addAAResult(getAnalysis<BasicAAWrapperPass>().getResult()); in runOnFunction()
598 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
600 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
603 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
605 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
607 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
609 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
611 AAR->addAAResult(WrapperPass->getResult()); in runOnFunction()
652 AAR.addAAResult(WrapperPass->getResult()); in createLegacyPMAAResults()
654 AAR.addAAResult(WrapperPass->getResult()); in createLegacyPMAAResults()
[all …]
DMemoryDependenceAnalysis.cpp770 if (Entry.getResult().isDirty()) in getNonLocalCallDependency()
818 if (!Entry->getResult().isDirty()) in getNonLocalCallDependency()
829 if (Instruction *Inst = ExistingResult->getResult().getInst()) { in getNonLocalCallDependency()
947 if (ExistingResult && !ExistingResult->getResult().isDirty()) { in GetNonLocalInfoForBlock()
949 return ExistingResult->getResult(); in GetNonLocalInfoForBlock()
956 if (ExistingResult && ExistingResult->getResult().getInst()) { in GetNonLocalInfoForBlock()
957 assert(ExistingResult->getResult().getInst()->getParent() == BB && in GetNonLocalInfoForBlock()
960 ScanPos = ExistingResult->getResult().getInst()->getIterator(); in GetNonLocalInfoForBlock()
1076 if (Instruction *Inst = Entry.getResult().getInst()) in getNonLocalPointerDepFromBB()
1095 if (Instruction *Inst = Entry.getResult().getInst()) in getNonLocalPointerDepFromBB()
[all …]
DRegionInfo.cpp189 auto *DT = &AM.getResult<DominatorTreeAnalysis>(F); in run()
190 auto *PDT = &AM.getResult<PostDominatorTreeAnalysis>(F); in run()
191 auto *DF = &AM.getResult<DominanceFrontierAnalysis>(F); in run()
203 AM.getResult<RegionInfoAnalysis>(F).print(OS); in run()
210 AM.getResult<RegionInfoAnalysis>(F).verifyAnalysis(); in run()
DDominanceFrontier.cpp64 DF.analyze(AM.getResult<DominatorTreeAnalysis>(F)); in run()
74 AM.getResult<DominanceFrontierAnalysis>(F).print(OS); in run()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAccountManagerTest.java302 assertThat(future.getResult()).isFalse(); in removeAccount_doesNotRemoveAccountOfDifferentName()
313 assertThat(future.getResult()).isTrue(); in removeAccount_does()
470 Bundle resultBundle = result.getResult(); in addAccount_noActivitySpecified()
480 Bundle resultBundle = result.getResult(); in addAccount_activitySpecified()
500 Bundle resultBundle = callback.getResult(); in addAccount_shouldCallCallback()
519 Bundle resultBundle = callback.getResult(); in addAccount_whenSchedulerPaused_shouldCallCallbackAfterSchedulerUnpaused()
528 future.getResult(); in addAccount_noAuthenticatorDefined()
573 futureResult.getResult(); in addAccount_withNoAuthenticatorForType_throwsExceptionInGetResult()
610 … assertThat(future.getResult().getString(AccountManager.KEY_ACCOUNT_NAME)).isEqualTo(account.name); in getAuthToken_withActivity_returnsCorrectToken()
611 … assertThat(future.getResult().getString(AccountManager.KEY_ACCOUNT_TYPE)).isEqualTo(account.type); in getAuthToken_withActivity_returnsCorrectToken()
[all …]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
DParseResultTest.java44 assertThat(result.getResult().isPresent()).isTrue(); in whenParsingSucceedsThenWeGetResultsAndNoProblems()
45 assertThat(result.getResult().get().getParsed()).isEqualTo(PARSED); in whenParsingSucceedsThenWeGetResultsAndNoProblems()
56 assertThat(result.getResult().isPresent()).isTrue(); in whenParsingFailsThenWeGetProblemsAndABadResult()
57 assertThat(result.getResult().get().getParsed()).isEqualTo(UNPARSABLE); in whenParsingFailsThenWeGetProblemsAndABadResult()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/
DParseErrorRecoveryTest.java18 … CompilationUnit cu = parser.parse(ParseStart.COMPILATION_UNIT, provider("XXX")).getResult().get(); in compilationUnitRecovery()
24 …n cu = parser.parse(ParseStart.CLASS_BODY, provider("int x(){X X X;}")).getResult().get().asMethod… in bodystatementSemicolonRecovery()
31 …on cu = parser.parse(ParseStart.CLASS_BODY, provider("int x(){X X X}")).getResult().get().asMethod… in bodystatementClosingBraceRecovery()
38 …ser.parse(ParseStart.COMPILATION_UNIT, provider("class X{int x(){aaa:X X X;}}")).getResult().get(); in labeledStatementSemicolonRecovery()
DParserConfigurationTest.java20 assertFalse(result.getResult().get().getTokenRange().isPresent()); in storeNoTokens()
21 …assertTrue(result.getResult().get().findAll(Node.class).stream().noneMatch(node -> node.getTokenRa… in storeNoTokens()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DSourceRoot.java114 result.getResult().ifPresent(cu -> cu.setStorage(path)); in tryToParse()
243 return result.getResult().get(); in parse()
284 result.getResult().ifPresent(cu -> cu.setStorage(absolutePath)); in parse()
286 if (result.getResult().isPresent()) { in parse()
287 save(result.getResult().get(), path); in parse()
332 result.getResult().ifPresent(cu -> cu.setStorage(file)); in parseParallelized()
334 if (result.getResult().isPresent()) { in parseParallelized()
335 save(result.getResult().get(), path); in parseParallelized()
433 if (cu.getValue().getResult().isPresent()) { in saveAll()
435 save(cu.getValue().getResult().get(), path); in saveAll()
[all …]
/external/llvm/unittests/Analysis/
DCGSCCPassManagerTest.cpp134 (void)AM.getResult<TestModuleAnalysis>(M); in run()
156 AM.getResult<ModuleAnalysisManagerCGSCCProxy>(C).getManager(); in run()
158 AM.getResult<FunctionAnalysisManagerCGSCCProxy>(C).getManager(); in run()
174 TestSCCAnalysis::Result &AR = AM.getResult<TestSCCAnalysis>(C); in run()
178 FAM.getResult<TestFunctionAnalysis>(N.getFunction()); in run()
182 (void)FAM.getResult<TestImmutableFunctionAnalysis>(N.getFunction()); in run()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DTestThread.java94 assertSame(null, getResponse(methodName).getResult()); in callAndAssertReturns()
106 assertEquals(expected, getResponse(methodName).getResult()); in callAndAssertReturns()
118 assertEquals(expected, getResponse(methodName).getResult()); in callAndAssertReturns()
173 assertEquals(null, getResponse(methodName).getResult()); in assertPriorCallReturns()
182 assertEquals(expected, getResponse(methodName).getResult()); in assertPriorCallReturns()
284 Object getResult() { in getResult() method in TestThread.Response
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/
DVarTypeTest.java29 ….parse(ParseStart.COMPILATION_UNIT, provider("class X{void x(){var abc = 1;}}")).getResult().get(); in resolveAPrimitive()
39 …rse(ParseStart.COMPILATION_UNIT, provider("class X{void x(){var abc = \"\";}}")).getResult().get(); in resolveAReferenceType()
49 …rser.parse(ParseStart.COMPILATION_UNIT, provider("class X{void x(){var abc;}}")).getResult().get(); in failResolveNoInitializer()
57 …Parser.parse(ParseStart.COMPILATION_UNIT, provider("class X{void x(var x){};}")).getResult().get(); in failResolveWrongLocation()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DMemoryDependenceAnalysis.cpp614 if (I->getResult().isDirty()) in getNonLocalCallDependency()
662 if (!Entry->getResult().isDirty()) in getNonLocalCallDependency()
673 if (Instruction *Inst = ExistingResult->getResult().getInst()) { in getNonLocalCallDependency()
774 if (ExistingResult && !ExistingResult->getResult().isDirty()) { in GetNonLocalInfoForBlock()
776 return ExistingResult->getResult(); in GetNonLocalInfoForBlock()
783 if (ExistingResult && ExistingResult->getResult().getInst()) { in GetNonLocalInfoForBlock()
784 assert(ExistingResult->getResult().getInst()->getParent() == BB && in GetNonLocalInfoForBlock()
787 ScanPos = ExistingResult->getResult().getInst(); in GetNonLocalInfoForBlock()
904 if (Instruction *Inst = DI->getResult().getInst()) in getNonLocalPointerDepFromBB()
925 if (Instruction *Inst = DI->getResult().getInst()) in getNonLocalPointerDepFromBB()
[all …]
/external/volley/src/test/java/com/android/volley/toolbox/
DAndroidAuthenticatorTest.java56 when(mFuture.getResult()).thenThrow(new AuthenticatorException("sadness!")); in failedGetAuthToken()
66 when(mFuture.getResult()).thenReturn(bundle); in resultContainsIntent()
76 when(mFuture.getResult()).thenReturn(bundle); in missingAuthToken()
93 when(mFuture.getResult()).thenReturn(bundle); in goodToken()
/external/vogar/src/vogar/
DXmlReportPrinter.java91 if (outcome.getResult() == Result.UNSUPPORTED) { in testsToSuites()
106 if (outcome.getResult() == Result.EXEC_FAILED) { in testsToSuites()
154 switch (outcome.getResult()) { in print()
166 … serializer.attribute(ns, XmlReportConstants.ATTR_TYPE, outcome.getResult().toString()); in print()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowAccountManager.java68 public Bundle getResult(long timeout, TimeUnit unit) throws OperationCanceledException, in getAuthToken() method
79 public Bundle getResult() throws OperationCanceledException, in getAuthToken() method
126 public Bundle getResult(long timeout, TimeUnit unit) throws OperationCanceledException, in getAuthTokenByFeatures() method
137 public Bundle getResult() throws OperationCanceledException, in getAuthTokenByFeatures() method
/external/llvm/include/llvm/Analysis/
DCFLAndersAliasAnalysis.h70 CFLAndersAAResult &getResult() { return *Result; } in getResult() function
71 const CFLAndersAAResult &getResult() const { return *Result; } in getResult() function
DScalarEvolutionAliasAnalysis.h60 SCEVAAResult &getResult() { return *Result; } in getResult() function
61 const SCEVAAResult &getResult() const { return *Result; } in getResult() function
DObjCARCAliasAnalysis.h83 ObjCARCAAResult &getResult() { return *Result; } in getResult() function
84 const ObjCARCAAResult &getResult() const { return *Result; } in getResult() function
/external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/
DFeatureMatcherTest.java50 public String getResult() { in getResult() method in FeatureMatcherTest.Thingy
63 return actual.getResult(); in resultMatcher()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DVectorialMean.java65 public double[] getResult() { in getResult() method in VectorialMean
68 result[i] = means[i].getResult(); in getResult()
/external/deqp/framework/common/
DtcuResultCollector.cpp67 qpTestResult ResultCollector::getResult (void) const in getResult() function in tcu::ResultCollector
106 testCtx.setTestResult(getResult(), getMessage().c_str()); in setTestContextResult()

12345678910