HomeSort by relevance Sort by last modified time
    Searched refs:failed (Results 51 - 75 of 606) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/regex-re2/re2/testing/
compile_test.cc 105 int failed = 0; local
111 failed++;
118 failed++;
127 failed++;
132 EXPECT_EQ(failed, 0);
dfa_test.cc 208 bool matched, failed = false; local
211 NULL, &failed, NULL);
212 CHECK(!failed);
216 NULL, &failed, NULL);
217 CHECK(!failed);
243 bool matched, failed = false; local
246 NULL, &failed, NULL);
247 CHECK(!failed);
251 NULL, &failed, NULL);
252 CHECK(!failed);
332 bool failed = false; local
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 526 if (state.failed) return ;
539 if (state.failed) return ;
576 if (state.failed) return ;
616 if (state.failed) return ;
    [all...]
  /external/chromium/net/proxy/
proxy_config_service_common_unittest.cc 75 bool failed = false; local
80 failed = true;
84 rules.single_proxy, &failure_details, &failed);
86 rules.proxy_for_http, &failure_details, &failed);
88 rules.proxy_for_https, &failure_details, &failed);
90 rules.fallback_proxy, &failure_details, &failed);
97 failed = true;
103 failed = true;
106 return failed ? failure_details : ::testing::AssertionSuccess();
  /external/protobuf/src/google/protobuf/io/
printer_unittest.cc 58 EXPECT_TRUE(!printer.failed());
74 EXPECT_FALSE(printer.failed());
100 EXPECT_FALSE(printer.failed());
135 EXPECT_FALSE(printer.failed());
160 EXPECT_FALSE(printer.failed());
201 EXPECT_FALSE(printer.failed());
244 EXPECT_FALSE(printer.failed());
248 EXPECT_TRUE(printer.failed());
252 EXPECT_TRUE(printer.failed());
  /dalvik/tests/
run-all-tests 104 failed=0
113 ((failed += 1))
120 echo "failed: $failed test(s)"
123 echo "failed: $i"
  /external/webkit/Tools/BuildSlaveSupport/
build-launcher-dmg 56 die "Removing previous temp source directory failed" if $?;
60 die "Making a new temp source directory failed" if $?;
64 die "Copying WebKit.app to temp source directory failed" if $?;
68 die "Copying Drosera.app to temp source directory failed" if $?;
72 die "Creating disk image failed" if $?;
76 die "Removing temp source directory failed" if $?;
79 system("mv", "-f", $nightlyLauncherDiskImagePath, "$nightlyLauncherDiskImagePath.uncompressed.dmg") == 0 or die "Renaming disk image failed";
81 die "Compressing disk image failed" if $?;
91 system("rsync", "-vP", $nightlyLauncherDiskImagePath, "$nightlyRemoteHost:$nightlyRemoteDiskImagePath") == 0 or die "Failed uploading disk image";
92 system("ssh", $nightlyRemoteHost, $nightlyRemoteLatestPath, $buildTag, "mac", $nightlyRemoteDiskImagePath, $revision) == 0 or die "Failed linking disk image to latest"
    [all...]
  /external/eigen/test/
runtest.sh 13 echo -e $red Test $1 failed: $black
  /external/junit/src/org/junit/rules/
TestWatcher.java 19 * protected void failed(Description d) {
52 failed(t, description); method
75 protected void failed(Throwable e, Description description) {
TestWatchman.java 19 * public void failed(Throwable e, FrameworkMethod method) {
58 failed(t, method); method
81 public void failed(Throwable e, FrameworkMethod method) {
  /external/tcpdump/tests/
mpls-ldp-hello.sh 11 echo failed.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognizerSharedState.cs 81 * has failed to match. Reset to false upon valid token match.
84 public bool failed; field in class:Antlr.Runtime.RecognizerSharedState
167 failed = state.failed;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognizerSharedState.cs 83 * has failed to match. Reset to false upon valid token match.
86 public bool failed; field in class:Antlr.Runtime.RecognizerSharedState
171 failed = state.failed;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 61 * has failed to match. Reset to false upon valid token match.
63 public boolean failed = false; field in class:RecognizerSharedState
130 this.failed = state.failed;
  /external/harfbuzz_ng/util/
shape-consumer.hh 44 failed = false;
58 failed = true;
74 bool failed; member in struct:shape_consumer_t
  /frameworks/base/test-runner/src/android/test/
TestPrinter.java 81 public void failed(String className, Throwable exception) { method in class:TestPrinter
82 Log.i(mTag, "failed: " + className);
88 private void failed(Test test, Throwable t) { method in class:TestPrinter
90 failed(test.toString(), t);
94 failed(test, t); method
98 failed(test, t); method
  /external/chromium/testing/gtest/test/
gtest-test-part_test.cc 82 EXPECT_FALSE(success.failed());
91 EXPECT_TRUE(nonfatal_failure.failed());
100 EXPECT_TRUE(fatal_failure.failed());
136 // Tests TestPartResult::failed().
137 TEST_F(TestPartResultTest, Failed) {
138 EXPECT_FALSE(r1_.failed());
139 EXPECT_TRUE(r2_.failed());
140 EXPECT_TRUE(r3_.failed());
  /external/e2fsprogs/lib/ext2fs/
tst_iscan.c 36 int failed = 0; variable
55 failed++;
179 failed++;
191 failed++;
214 if (!failed)
216 return failed;
  /external/e2fsprogs/tests/
Makefile.in 34 check-failed:
35 @a=`/bin/ls *.failed 2> /dev/null | sed -e 's/.failed//'`; \
37 echo "No failed tests" ; \
69 $(RM) -f *~ *.log *.new *.failed *.ok test.img test_script mke2fs.conf
test_script.in 21 TESTS=`ls -d $SRCDIR/[a-zA-Z]_* | $EGREP -v "\.failed|\.new"`
27 *.failed|*.new) continue ;;
75 num_failed=`ls *.failed 2>/dev/null | wc -l`
77 echo "$num_ok tests succeeded $num_failed tests failed"
  /external/gtest/test/
gtest-test-part_test.cc 82 EXPECT_FALSE(success.failed());
91 EXPECT_TRUE(nonfatal_failure.failed());
100 EXPECT_TRUE(fatal_failure.failed());
136 // Tests TestPartResult::failed().
137 TEST_F(TestPartResultTest, Failed) {
138 EXPECT_FALSE(r1_.failed());
139 EXPECT_TRUE(r2_.failed());
140 EXPECT_TRUE(r3_.failed());
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-test-part_test.cc 82 EXPECT_FALSE(success.failed());
91 EXPECT_TRUE(nonfatal_failure.failed());
100 EXPECT_TRUE(fatal_failure.failed());
136 // Tests TestPartResult::failed().
137 TEST_F(TestPartResultTest, Failed) {
138 EXPECT_FALSE(r1_.failed());
139 EXPECT_TRUE(r2_.failed());
140 EXPECT_TRUE(r3_.failed());
  /external/android-clat/
config.c 172 logmsg(ANDROID_LOG_WARN, "dns64_detection failed, sleeping for %d seconds", backoff_sleep);
241 goto failed;
247 goto failed;
250 goto failed;
253 goto failed;
256 goto failed;
261 goto failed;
270 goto failed;
276 goto failed;
284 failed
    [all...]
  /external/chromium/chrome/browser/chromeos/
network_login_observer.cc 59 network_failures_[wifi->service_path()] = wifi->failed();
64 network_failures_[vpn->service_path()] = vpn->failed();
73 // Check to see if we have any newly failed wifi network.
77 if (wifi->failed()) {
82 // that has previously failed, we don't want to show an error.
86 // If this network was in a failed state previously, then it's not new.
91 // Always re-display the login dialog for added networks that failed to
98 // There should only be one wifi network that failed to connect.
105 // Check to see if we have any newly failed virtual network.
111 if (vpn->failed()) {
    [all...]
  /external/e2fsprogs/tests/defaults/
e_script 37 rm -f $test_name.failed $test_name.ok
43 echo "failed"
44 diff $DIFF_OPTS $EXPECT $OUT > $test_name.failed

Completed in 1073 milliseconds

1 23 4 5 6 7 8 91011>>