/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/lldb/tools/lldb-perf/lib/ |
Gauge.h | 51 Results::ResultSP GetResult (const char *description, T value); 54 Results::ResultSP GetResult (const char *description, double value); 57 Results::ResultSP GetResult (const char *description, uint64_t value); 60 Results::ResultSP GetResult (const char *description, std::string value);
|
Gauge.cpp | 15 lldb_perf::GetResult (const char *description, double value) 29 lldb_perf::GetResult (const char *description, uint64_t value) 43 lldb_perf::GetResult (const char *description, std::string value)
|
Measurement.h | 98 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStartValue())); 105 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStopValue())); 112 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetAverage())); 119 auto dictionary = (Results::Dictionary*)results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetAverage())).get(); 122 dictionary->Add("stddev", NULL, lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStandardDeviation())); 130 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStandardDeviation()));
|
/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());
|
package.html | 33 style="font-weight: bold;">stat.getResult()</span>);<br/> for (int i = 0; 37 stat2.getResult()</span>);<br/> }<br/> <span style="font-weight: bold;"> 39 + <span style="font-weight: bold;">stat.getResult()</span>);</code>
|
/packages/apps/Exchange/src/com/android/exchange/ |
MockParserStream.java | 27 * After parsing is done, the result can be obtained with getResult 52 public Object getResult() {
|
/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);
|
/libcore/luni/src/test/java/libcore/java/util/prefs/ |
OldPreferenceChangeEventTest.java | 66 assertTrue(pl.getResult()); 91 assertTrue(pl.getResult()); 96 assertTrue(pl.getResult()); 121 assertTrue(pl.getResult()); 146 public synchronized boolean getResult() {
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocationAndResult.java | 38 public Result getResult() {
|
/external/jarjar/src/main/com/tonicsystems/jarjar/ |
Rule.java | 27 public String getResult() {
|
/external/skia/src/animator/ |
SkScriptRuntime.h | 35 bool getResult(SkOperand2* result);
|
/frameworks/volley/src/test/java/com/android/volley/toolbox/ |
AndroidAuthenticatorTest.java | 56 when(mFuture.getResult()).thenThrow(new AuthenticatorException("sadness!")); 66 when(mFuture.getResult()).thenReturn(bundle); 76 when(mFuture.getResult()).thenReturn(bundle); 93 when(mFuture.getResult()).thenReturn(bundle);
|
/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();
|
DeadCodeRemover.java | 151 RegisterSpec result = insn.getResult(); 194 RegisterSpec result = use.getResult(); 245 noSideEffectRegs.set(insn.getResult().getReg()); 253 noSideEffectRegs.set(phi.getResult().getReg()); 259 RegisterSpec result = insn.getResult();
|
LiteralOpUpgrader.java | 148 RegisterSpec result = insn.getResult(); 152 TypeBearer type = insn.getResult().getTypeBearer(); 189 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst); 193 insn.getResult(), newSources); 196 insn.getResult(), newSources, cst);
|
/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/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();
|
LiteralOpUpgrader.java | 149 RegisterSpec result = insn.getResult(); 153 TypeBearer type = insn.getResult().getTypeBearer(); 190 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst); 194 insn.getResult(), newSources); 197 insn.getResult(), newSources, cst);
|
/cts/tests/tests/accounts/src/android/accounts/cts/ |
AccountManagerTest.java | 300 Bundle resultBundle = futureBundle.getResult(); 311 Account renamedAccount = futureAccount.getResult(); 323 Boolean resultBoolean = futureBoolean.getResult(); 337 Bundle resultBundle = futureBundle.getResult(); 351 Bundle resultBundle = futureBundle.getResult(); 378 Bundle resultBundle = futureBundle.getResult(); 456 resultBundle = bundleFuture.getResult(); 744 Account[] accounts = futureAccounts.getResult(); 754 accounts = futureAccounts.getResult(); 781 Account[] accounts = accountsFuture.getResult(); [all...] |
/cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/ |
AccountManagementTest.java | 94 .getResult(); 106 null, null, null, null, null, null).getResult(); 132 mAccountManager.removeAccount(ACCOUNT_0, null, null).getResult(); 143 assertTrue(mAccountManager.removeAccount(ACCOUNT_0, null, null).getResult()); 154 assertTrue(mAccountManager.removeAccount(ACCOUNT_1, null, null).getResult());
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
PlainInsn.java | 92 getResult().withOffset(delta), 119 getResult(), newSources, (Constant)lastType); 126 getResult(), newSources, cst);
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AccountManagerTest.java | 69 future.getResult(); 84 Bundle result = future.getResult(); 95 Bundle result = future.getResult();
|
/frameworks/base/test-runner/src/android/test/ |
IsolatedContext.java | 175 public T getResult() 180 public T getResult(long timeout, TimeUnit unit) 182 return getResult();
|