HomeSort by relevance Sort by last modified time
    Searched refs:passed (Results 101 - 125 of 795) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/iptables/
iptables-test.py 183 passed = 0
234 passed += 1
240 return tests, passed
285 passed = 0
303 passed += file_passed
306 print ("%d test files, %d unit tests, %d passed" %
307 (test_files, tests, passed))
  /external/ltp/testcases/kernel/syscalls/utimensat/
utimensat_tests.sh 150 passed=1
159 passed=0
164 passed=0
171 passed=0
176 passed=0
180 if test $passed -eq 0; then
187 tst_resm TPASS "PASSED test $test_num"
508 echo "Total tests: $test_num; passed: $passed_cnt; failed: $failed_cnt"
  /external/sonic/
wave.c 294 int passed = 1; local
299 passed = 0;
305 passed = 0;
309 passed = 0;
315 passed = 0;
321 return passed;
  /art/test/137-cfi/src/
Main.java 36 private boolean passed; field in class:Main
178 return passed;
182 passed = bar(secondary);
  /external/autotest/contrib/
always_failing_tests.py 65 passed = True
67 passed = False
68 d[t.test] = d.get(t.test, False) or passed
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 211 self.passed = Stat ()
217 if test.passed:
218 self.passed.add (test)
223 return float (self.passed.count) / self.total.count
226 return (float (self.passed.count) / self.total.count) * \
249 passed = 0
254 passed += 1
257 total = passed + failed
258 print ("%d out of %d tests passed. %d failed (%g%%)" % (passed, total, failed, 100. * failed / total)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/serializable/
SerializableChecker.java 120 boolean passed = true;
152 passed = false;
157 if (passed) {
158 System.out.print("test passed.");
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlPolicyBuilderFuzzerTest.java 88 boolean passed = false;
128 passed = true;
130 if (!passed) {
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
TestDeviceStressTest.java 92 int passed = 0; local
101 passed += iterationPassed? 1 : 0;
103 assertEquals(mIterations, passed);
176 return TestAppConstants.UI_TOTAL_TESTS == uilistener.getNumTestsInState(TestStatus.PASSED);
  /external/ltp/
execltp.in 68 3. verbose tells us whether or not we need to include the passed results.
82 passed = 0
85 passed = []
109 passed.append(match.group('tag'))
111 passed += 1
124 search_tags += passed
193 return failed, passed, context
267 'failed and passed test context, as well as the '
430 # Print out passed testcases with context.
432 'PASSED TESTCASES for %s' % testsuite
    [all...]
  /external/testng/src/main/java/org/testng/reporters/jq/
NavigatorPanel.java 45 int passed = 0; local
50 passed += context.getPassedTests().size();
70 generateResult(header, failed, skipped, passed, suite, suiteName);
87 private void generateResult(XMLStringBuffer header, int failed, int skipped, int passed,
99 int total = failed + skipped + passed;
104 maybe(passed, "passed", ""));
115 generateMethodList("Passed methods", new ResultsByStatus(suite, "passed", ITestResult.SUCCESS),
  /cts/suite/audio_quality/lib/src/
Report.cpp 91 std::list<StringPair>::const_iterator end, bool passed)
95 if (passed) {
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
EventOrderingVerificationTest.java 100 private void verifyStats(SensorStats stats, boolean passed, int count) {
101 assertEquals(passed, stats.getValue(EventOrderingVerification.PASSED_KEY));
JitterVerificationTest.java 116 private void verifyStats(SensorStats stats, boolean passed, double percentageJitter) {
117 assertEquals(passed, stats.getValue(JitterVerification.PASSED_KEY));
  /dalvik/dx/tests/
run-all-tests 63 passed=()
75 printf "Pass: % 4d\n" ${#passed[@]}
118 passed+=(${test_name})
  /external/curl/docs/cmdline-opts/
data-urlencode.d 12 by a separator and a content specification. The <data> part can be passed to
  /external/swiftshader/src/OpenGL/libEGL/
Config.cpp 358 vector<const Config*> passed;
359 passed.reserve(mSet.size());
429 passed.push_back(&*config);
435 sort(passed.begin(), passed.end(), SortConfig(attribList));
438 for(index = 0; index < configSize && index < static_cast<EGLint>(passed.size()); index++)
440 configs[index] = passed[index]->getHandle();
447 *numConfig = static_cast<EGLint>(passed.size());
  /prebuilts/go/darwin-x86/src/log/syslog/
syslog.go 191 // passed to New.
198 // passed to New.
205 // passed to New.
212 // passed to New.
219 // severity passed to New.
226 // severity passed to New.
233 // passed to New.
240 // passed to New.
306 // argument is the flag set passed through to log.New to create
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10607.go 8 // Test that a -B option is passed through when using both internal
issue7867.go 23 // These types always passed
  /prebuilts/go/linux-x86/src/log/syslog/
syslog.go 191 // passed to New.
198 // passed to New.
205 // passed to New.
212 // passed to New.
219 // severity passed to New.
226 // severity passed to New.
233 // passed to New.
240 // passed to New.
306 // argument is the flag set passed through to log.New to create
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10607.go 8 // Test that a -B option is passed through when using both internal
issue7867.go 23 // These types always passed
  /art/build/
Android.common_test.mk 157 # The command checks prints "PASSED" then checks to see if this was a top-level make target (e.g.
163 (mkdir -p $(ART_HOST_TEST_DIR)/passed/ && touch $(ART_HOST_TEST_DIR)/passed/$(1))))
172 (([ -d $(ART_HOST_TEST_DIR)/passed/ ] \
173 && (echo -e "\e[92mPASSING TESTS\e[0m" && ls -1 $(ART_HOST_TEST_DIR)/passed/) \
174 || (echo -e "\e[91mNO TESTS PASSED\e[0m")) && \
  /build/make/tools/
dump-package-stats 43 name: the name of the package as passed to $PROGNAME

Completed in 7046 milliseconds

1 2 3 45 6 7 8 91011>>