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

1 2 3 4

  /external/clang/test/SemaCXX/
constexpr-nqueens.cpp 7 bool Failed;
9 constexpr Board() : State(0), Failed(false) {}
10 constexpr Board(const Board &O) : State(O.State), Failed(O.Failed) {}
11 constexpr Board(uint64_t State, bool Failed = false) :
12 State(State), Failed(Failed) {}
39 return Try.Failed ? buildBoardScan(N, Col, Row, B) : Try;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/handshake/
__init__.py 101 'Failed to complete opening handshake as %s protocol: %r',
112 'Failed to complete opening handshake for all available protocols',
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
messages.properties 20 ParseFileFailure_s=Failed to parse %1$s file
24 AndroidJUnitLaunchAction_LaunchFail=Failed to launch test
31 AndroidJUnitTab_LoadInstrError_s=Failed to load instrumentations from %1$s
38 RemoteAdtTestRunner_RunFailedMsg_s=Test run failed: %1$s
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 30 volatile unsigned Failed : 1;
34 Failed(false) {
46 assert(!Failed && "Crash recovery context already failed!");
47 Failed = true;
321 assert(CRC->Failed && "No crash was detected!");
  /frameworks/compile/llvm-ndk-cc/tests/
test.py 115 print('Command failed on valid input.')
164 Failed = 0
194 Failed += 1
199 print('Tests Failed: {0}'.format(Failed))
200 if Failed:
206 return Failed != 0
  /gdk/sources/llvm-ndk-cc/tests/
test.py 115 print('Command failed on valid input.')
164 Failed = 0
194 Failed += 1
199 print('Tests Failed: {0}'.format(Failed))
200 if Failed:
206 return Failed != 0
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
lexical-048.js 20 var result = "Failed";
lexical-049.js 19 var result = "Failed";
  /external/protobuf/python/google/protobuf/
service.py 47 """Exception raised on failed blocking RPC method call."""
87 * If the RPC failed, the response value passed to "done" will be None.
140 def Failed(self):
141 """Returns true if the call failed.
143 After a call has finished, returns true if the call failed. The possible
144 reasons for failure depend on the RPC implementation. Failed() must not
145 be called before a call has finished. If Failed() returns true, the
151 """If Failed is true, returns a human-readable description of the error."""
161 will indicate that the call failed at that time.
170 Causes Failed() to return true on the client side. "reason" will b
    [all...]
  /external/protobuf/src/google/protobuf/
service.h 163 // * If the RPC failed, "response"'s contents are undefined. The
215 // After a call has finished, returns true if the call failed. The possible
216 // reasons for failure depend on the RPC implementation. Failed() must not
217 // be called before a call has finished. If Failed() returns true, the
219 virtual bool Failed() const = 0;
221 // If Failed() is true, returns a human-readable description of the error.
228 // will indicate that the call failed at that time.
235 // Causes Failed() to return true on the client side. "reason" will be
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.h 49 Incomplete, Normal, Failed, Connected
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 473 // Gets the number of failed test parts.
477 // of successful test parts and the number of failed test parts.
480 // Returns true iff the test passed (i.e. no test part failed).
481 bool Passed() const { return !Failed(); }
483 // Returns true iff the test failed.
484 bool Failed() const { return failed_part_count() > 0; }
486 // Returns true iff the test fatally failed.
646 // Gets the number of failed tests in this test case.
659 bool Passed() const { return !Failed(); }
661 // Returns true iff the test case failed
    [all...]
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 82 <failure message="Failed&#x0A;XML output: &lt;?xml encoding=&quot;utf-8&quot;&gt;&lt;top&gt;&lt;![CDATA[cdata text]]&gt;&lt;/top&gt;" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
83 Failed
89 <failure message="Failed&#x0A;Invalid characters in brackets []" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
90 Failed
gtest-unittest-api_test.cc 244 EXPECT_FALSE(unit_test->Failed());
257 EXPECT_FALSE(test_cases[0]->Failed());
277 EXPECT_FALSE(test_cases[2]->Failed());
gtest-test-part_test.cc 87 // Tests TestPartResult::failed().
88 TEST_F(TestPartResultTest, Failed) {
89 EXPECT_FALSE(r1_.failed());
90 EXPECT_TRUE(r2_.failed());
91 EXPECT_TRUE(r3_.failed());
  /external/chromium/testing/gtest/samples/
sample9_unittest.cc 59 fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED");
72 // Called after a failed assertion or a SUCCEED() invocation.
76 test_part_result.failed() ? "*** Failure" : "Success",
146 // Counts failed tests that were not meant to fail (those without
148 if (test_info.result()->Failed() &&
  /external/gtest/samples/
sample9_unittest.cc 59 fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED");
72 // Called after a failed assertion or a SUCCEED() invocation.
76 test_part_result.failed() ? "*** Failure" : "Success",
146 // Counts failed tests that were not meant to fail (those without
148 if (test_info.result()->Failed() &&
  /external/protobuf/gtest/samples/
sample9_unittest.cc 59 fprintf(stdout, "TEST %s\n", unit_test.Passed() ? "PASSED" : "FAILED");
72 // Called after a failed assertion or a SUCCESS().
76 test_part_result.failed() ? "*** Failure" : "Success",
146 // Counts failed tests that were not meant to fail (those without
148 if (test_info.result()->Failed() &&
  /external/chromium/testing/gtest/test/
gtest-unittest-api_test.cc 244 EXPECT_FALSE(unit_test->Failed());
257 EXPECT_FALSE(test_cases[0]->Failed());
276 EXPECT_FALSE(test_cases[2]->Failed());
  /external/gtest/test/
gtest-unittest-api_test.cc 244 EXPECT_FALSE(unit_test->Failed());
257 EXPECT_FALSE(test_cases[0]->Failed());
276 EXPECT_FALSE(test_cases[2]->Failed());
  /external/libxml2/
xmlcatalog.c 226 printf("add command failed\n");
239 printf("add command failed\n");
248 printf("del command failed\n");
258 printf("Resolver failed to find an answer\n");
461 fprintf(stderr, "Failed to remove entry from %s\n",
474 "Failed to remove entry from %s\n",
531 printf("add command failed\n");
539 fprintf(stderr, "Failed to remove entry %s\n",
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeRewriter.cs 66 if (Failed)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeRewriter.cs 76 if ( Failed )
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 82 bool Failed = false;
127 Failed = true;
132 Failed = true;
137 Failed = true;
140 Failed = true;
144 if (Failed) {
404 bool Failed = false;
411 Failed = true;
419 Failed = true;
431 Failed = true
    [all...]

Completed in 660 milliseconds

1 2 3 4