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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
pth_cancel1.stdout.exp 3 result is correct
  /external/chromium_org/cc/base/
util_unittest.cc 15 // determine the correct value before it's needed.
16 int correct; local
19 correct = attempt;
20 EXPECT_EQ(correct, RoundUp(attempt, multiplier))
27 // determine the correct value before it's needed.
28 unsigned correct; local
31 correct = attempt;
32 EXPECT_EQ(correct, RoundUp(attempt, multiplier))
43 // determine the correct value before it's needed.
44 int correct; local
56 unsigned correct; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
persistent_object_store_test.py 12 mock it out for tests anyway. Who knows whether it's correct.
  /external/chromium/chrome/browser/
spellcheck_message_filter.h 22 void OnPlatformCheckSpelling(const string16& word, int tag, bool* correct);
spellcheck_message_filter.cc 40 bool* correct) {
41 *correct = SpellCheckerPlatform::CheckSpelling(word, tag);
  /external/srec/tools/cmd/
srecres2utd.pl 15 my @fields = ("file", "correct", "invocab", "gdiff", "sd", "sd13", "spf", "abs", "gdiffpf", "rejrslt", "rankc", "match", "ortho", "choice1", "choice2", "score1", "conf", "gender");
128 $rr = $results{correct}/$results{total} * 100;
130 print sprintf("%-45s RR %4.1f %d/%d (%d oovs)\n", $base, $rr, $results{correct}, $results{total}, $results{numoovs});
153 $token->{correct} = "0";
157 $results->{correct}++;
158 $token->{correct} = "1";
170 $token->{correct} = "0";
173 $token->{correct} = "1";
174 $results->{correct}++ ;
176 $token->{correct} = "0"
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
cstdint.hpp 215 # error defaults not correct; you must hand modify boost/cstdint.hpp
254 # error defaults not correct; you must hand modify boost/cstdint.hpp
289 # error defaults not correct; you must hand modify boost/cstdint.hpp
303 # error defaults not correct; you must hand modify boost/cstdint.hpp
327 # error defaults not correct; you must hand modify boost/cstdint.hpp
472 # error defaults not correct; you must hand modify boost/cstdint.hpp
480 # error defaults not correct; you must hand modify boost/cstdint.hpp
488 # error defaults not correct; you must hand modify boost/cstdint.hpp
491 # error defaults not correct; you must hand modify boost/cstdint.hpp
  /external/compiler-rt/test/Unit/
powidf2_test.c 25 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
26 if (!correct)
29 return !correct;
powisf2_test.c 25 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
26 if (!correct)
29 return !correct;
powitf2_test.c 27 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
28 if (!correct)
31 return !correct;
powixf2_test.c 27 int correct = (x == expected) && (signbit(x) == signbit(expected)); local
28 if (!correct)
31 return !correct;
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_mac.h 40 void OnCheckSpelling(const string16& word, int route_id, bool* correct);
  /external/llvm/utils/
llvm-native-gcc 117 run "llc -enable-correct-eh-support -march=c -f -o $GeneratedCode $BCFile";
124 run "llc -enable-correct-eh-support -f -o $GeneratedCode $BCFile";
148 run "llc -enable-correct-eh-support -march=c -f -o $GeneratedCode $BCFile";
151 run "llc -enable-correct-eh-support -f -o $GeneratedCode $BCFile";
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_browsertest.js 21 // Test opening the autofill options has correct location.
content_options_browsertest.js 21 // Test opening the content options has correct location.
font_settings_browsertest.js 21 // Test opening font settings has correct location.
language_options_browsertest.js 21 // Test opening languages options has correct location.
password_manager_browsertest.js 21 // Test opening the password manager has correct location.
profile_settings_reset_browsertest.js 21 // Test opening the profile settings reset has correct location.
browser_options_browsertest.js 21 // Test opening the browser options has correct location.
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
EventRecurrenceTest.java 680 private static void cmp(int vlen, int[] v, int[] correct, String name) {
681 if ((correct == null && v != null)
682 || (correct != null && v == null)) {
684 + ": correct=" + Arrays.toString(correct)
687 if ((correct == null && vlen != 0)
688 || (vlen != (correct == null ? 0 : correct.length))) {
690 + ": correct=" + ((correct == null) ? "null" : correct.length
    [all...]
  /external/ceres-solver/internal/ceres/
residual_block.cc 173 // Correct for the effects of the loss function. The jacobians need to be
175 Corrector correct(squared_norm, rho);
181 // Correct the jacobians for the loss function.
182 correct.CorrectJacobian(num_residuals,
190 // Correct the residuals with the loss function.
192 correct.CorrectResiduals(num_residuals, residuals);
  /external/chromium_org/third_party/re2/re2/testing/
tester.cc 453 // Checks whether r is okay given that correct is the right answer.
456 static bool ResultOkay(const Result& r, const Result& correct) {
459 if (r.matched != correct.matched)
463 if (correct.submatch[i].begin() != r.submatch[i].begin() ||
464 correct.submatch[i].size() != r.submatch[i].size())
477 Result correct; local
478 RunSearch(kEngineBacktrack, text, context, anchor, &correct);
479 if (correct.skipped) {
501 if (ResultOkay(r, correct)) {
520 if (r.matched != correct.matched)
    [all...]
  /external/regex-re2/re2/testing/
tester.cc 453 // Checks whether r is okay given that correct is the right answer.
456 static bool ResultOkay(const Result& r, const Result& correct) {
459 if (r.matched != correct.matched)
463 if (correct.submatch[i].begin() != r.submatch[i].begin() ||
464 correct.submatch[i].size() != r.submatch[i].size())
477 Result correct; local
478 RunSearch(kEngineBacktrack, text, context, anchor, &correct);
479 if (correct.skipped) {
501 if (ResultOkay(r, correct)) {
520 if (r.matched != correct.matched)
    [all...]
  /external/chromium_org/v8/test/webkit/
function-prototype-descriptor.js 30 // test function.prototype has the correct attributes - writable, enumerable, non-configurable.
37 // Test prototype's attributes are correct.
41 // Test prototype's attributes are correct, if assigned without first having being accessed.

Completed in 466 milliseconds

1 2 3 4 5 6 7 8 91011>>