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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/accounts/
AccountManagerFuture.java 94 V getResult() throws OperationCanceledException, IOException, AuthenticatorException;
113 V getResult(long timeout, TimeUnit unit)
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Rule.java 27 public String getResult() {
  /external/v8/test/webkit/
date-set-to-nan.js 93 var getResult = date["get" + functionNameRoot]();
94 if (!isNaN(getResult)) {
95 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of NaN");
113 var getResult = date["get" + functionNameRoot]();
114 if (getResult != setValue) {
115 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
129 var getResult = date["get" + functionNameRoot]();
130 if (getResult != setValue) {
131 testFailed("date.get" + functionNameRoot + "() was " + getResult + " instead of " + setValue);
134 getResult = date.getMilliseconds()
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
AbstractStorelessUnivariateStatistic.java 41 * {@link #getResult} to compute the return value.
67 * array, and then uses {@link #getResult} to compute the return value.
91 return getResult();
108 public abstract double getResult();
156 * values as this for <code>getResult()</code> and <code>getN()</code>
169 return MathUtils.equalsIncludingNaN(stat.getResult(), this.getResult()) &&
174 * Returns hash code based on getResult() and getN()
180 return 31* (31 + MathUtils.hash(getResult())) + MathUtils.hash(getN());
StorelessUnivariateStatistic.java 66 double getResult();
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
IInvocationResultRepo.java 40 IInvocationResult getResult(int sessionId);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ITestResultRepo.java 39 public TestResults getResult(int sessionId);
  /external/easymock/src/org/easymock/internal/
ExpectedInvocationAndResult.java 38 public Result getResult() {
  /external/guava/guava/src/com/google/common/io/
ByteProcessor.java 48 T getResult();
LineProcessor.java 44 T getResult();
  /frameworks/base/core/java/android/webkit/
JsResult.java 69 public final boolean getResult() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
OneWayAnovaImpl.java 168 double ss = sumsq.getResult() - sum.getResult() * sum.getResult() / num;
171 double sst = totsumsq.getResult() - totsum.getResult() *
172 totsum.getResult()/totnum;
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionAliasAnalysis.h 67 SCEVAAResult &getResult() { return *Result; }
68 const SCEVAAResult &getResult() const { return *Result; }
  /cts/common/util/src/com/android/compatibility/common/util/
ICaseResult.java 41 ITestResult getResult(String testName);
IModuleResult.java 59 ICaseResult getResult(String caseName);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
BooleanTest.java 48 public String getResult(gUnitTestResult testResult) {
OutputTest.java 54 public String getResult(gUnitTestResult testResult) {
ReturnTest.java 51 public String getResult(gUnitTestResult testResult) {
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 93 getResult().withOffset(delta),
115 Rop newRop = Rops.ropFor(getOpcode().getOpcode(), getResult(),
117 return new PlainCstInsn(newRop, getPosition(), getResult(),
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst);
142 getResult(), newSources, cst);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 93 getResult().withOffset(delta),
115 Rop newRop = Rops.ropFor(getOpcode().getOpcode(), getResult(),
117 return new PlainCstInsn(newRop, getPosition(), getResult(),
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst);
142 getResult(), newSources, cst);
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 40 super(insn.getResult(), block);
51 insn = insn.withNewRegisters(getResult(), newSources);
83 insn = insn.withNewRegisters(getResult(), newSources);
99 insn = insn.withNewRegisters(getResult(), newSources);
126 return insn.withNewRegisters(getResult(), insn.getSources());
151 assignment = getResult();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
NormalSsaInsn.java 35 super(insn.getResult(), block);
46 insn = insn.withNewRegisters(getResult(), newSources);
78 insn = insn.withNewRegisters(getResult(), newSources);
94 insn = insn.withNewRegisters(getResult(), newSources);
121 return insn.withNewRegisters(getResult(), insn.getSources());
146 assignment = getResult();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
PlainInsn.java 92 getResult().withOffset(delta),
119 getResult(), newSources, (Constant)lastType);
126 getResult(), newSources, cst);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
BuildStep.java 178 public int getResult() {
249 String out = resultToString(getResult());
275 return resultToString(getResult()) + vertex.toString();
  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
AccountManagementTest.java 67 null, null, null, null, null, null).getResult();
78 null, null, null, null, null, null).getResult();
99 mAccountManager.removeAccount(ACCOUNT, null, null).getResult();
119 assertTrue(mAccountManager.removeAccount(ACCOUNT, null, null).getResult());

Completed in 1004 milliseconds

1 2 3 4 5 6 7 8 91011>>