/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
SuggestionCursorUtil.java | 44 SuggestionCursor expected, SuggestionCursor observed) { 45 assertSameSuggestion(message, expected, position, observed, position); 50 SuggestionCursor observed, int positionObserved) { 52 + positionObserved + " (observed)"; 54 observed.moveTo(positionObserved); 55 assertSuggestionEquals(message, expected, observed); 58 public static void assertSameSuggestions(SuggestionCursor expected, SuggestionCursor observed) { 59 assertSameSuggestions("", expected, observed); 63 String message, SuggestionCursor expected, SuggestionCursor observed) { 65 assertNotNull(message + ", observed == null", observed) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
ChiSquareTest.java | 32 * Chi-Square statistic</a> comparing <code>observed</code> and <code>expected</code> 36 * the observed counts follow the expected distribution.</p> 41 * <li>Observed counts must all be >= 0. 43 * <li>The observed and expected arrays must have the same length and 49 * @param observed array of observed frequency counts 54 double chiSquare(double[] expected, long[] observed) 58 * Returns the <i>observed significance level</i>, or <a href= 62 * Chi-square goodness of fit test</a> comparing the <code>observed</code> 66 * the null hypothesis that the observed counts conform to the frequency distributio [all...] |
ChiSquareTestImpl.java | 58 * expected and observed counts are equal.</p> 60 * @param observed array of observed frequency counts 66 public double chiSquare(double[] expected, long[] observed) 72 if (expected.length != observed.length) { 74 LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, expected.length, observed.length); 77 checkNonNegative(observed); 80 for (int i = 0; i < observed.length; i++) { 82 sumObserved += observed[i]; 91 for (int i = 0; i < observed.length; i++) [all...] |
TestUtils.java | 226 public static double t(double mu, double[] observed) 228 return tTest.t(mu, observed); 326 public static double chiSquare(double[] expected, long[] observed) 328 return chiSquareTest.chiSquare(expected, observed); 342 public static boolean chiSquareTest(double[] expected, long[] observed, 345 return chiSquareTest.chiSquareTest(expected, observed, alpha); 351 public static double chiSquareTest(double[] expected, long[] observed) 353 return chiSquareTest.chiSquareTest(expected, observed);
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-490680.js | 8 throw { toString: function() { sentinel = "observed"; } }; 13 throw { toString: function() { sentinel = "observed"; } };
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/ |
CurveFitter.java | 35 * observed points (x<sub>0</sub>, y<sub>0</sub>), (x<sub>1</sub>, 48 /** Observed points. */ 59 /** Add an observed (x,y) point to the sample with unit weight. 63 * @param y observed value of the point at x, after fitting we should 73 /** Add an observed weighted (x,y) point to the sample. 74 * @param weight weight of the observed point in the fit 76 * @param y observed value of the point at x, after fitting we should 86 /** Add an observed weighted (x,y) point to the sample. 87 * @param observed observed point to ad [all...] |
/external/valgrind/drd/tests/ |
tc18_semabuse.stderr.exp | 5 semaphore 0x........ was first observed at: 12 semaphore 0x........ was first observed at:
|
annotate_hb_err.stderr.exp | 5 mutex 0x........ was first observed at: 12 cond 0x........ was first observed at: 19 order annotation 0x........ was first observed at:
|
pth_cond_race.stderr.exp | 7 cond 0x........ was first observed at: 10 mutex 0x........ was first observed at:
|
rwlock_type_checking.stderr.exp | 5 rwlock 0x........ was first observed at: 10 rwlock 0x........ was first observed at:
|
bar_bad.stderr.exp | 13 barrier 0x........ was first observed at: 22 barrier 0x........ was first observed at: 31 barrier 0x........ was first observed at: 44 barrier 0x........ was first observed at:
|
pth_barrier_reinit.stderr.exp | 5 barrier 0x........ was first observed at:
|
pth_cond_destroy_busy.stderr.exp | 5 cond 0x........ was first observed at:
|
pth_mutex_reinit.stderr.exp | 5 mutex 0x........ was first observed at:
|
tc12_rwl_trivial.stderr.exp | 6 rwlock 0x........ was first observed at:
|
hold_lock_1.stderr.exp | 9 mutex 0x........ was first observed at: 20 rwlock 0x........ was first observed at:
|
hold_lock_2.stderr.exp | 11 rwlock 0x........ was first observed at:
|
pth_barrier_race.stderr.exp | 9 barrier 0x........ was first observed at:
|
pth_cancel_locked.stderr.exp | 5 mutex 0x........ was first observed at:
|
tc10_rec_lock.stderr.exp | 13 mutex 0x........ was first observed at:
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldObserverTest.java | 28 public void update(Observable observed, Object arg) {
|
/external/valgrind/helgrind/tests/ |
tc12_rwl_trivial.stderr.exp | 13 Lock at 0x........ was first observed
|
tc14_laog_dinphils.stderr.exp | 13 Observed (incorrect) order is: acquisition of lock at 0x........ 27 Lock at 0x........ was first observed 32 Lock at 0x........ was first observed
|
locked_vs_unlocked2.stderr.exp | 17 Lock at 0x........ was first observed 22 Lock at 0x........ was first observed 27 Lock at 0x........ was first observed
|
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/ |
HpackDecodeTestBase.java | 79 * Checks if {@code expected} and {@code observed} are equal when viewed as a 85 String message, List<Header> expected, List<Header> observed) { 86 assertEquals(message, new LinkedHashSet<>(expected), new LinkedHashSet<>(observed));
|