/external/llvm/lib/Support/ |
CrashRecoveryContext.cpp | 29 volatile unsigned Failed : 1; 33 Failed(false) { 45 assert(!Failed && "Crash recovery context already failed!"); 46 Failed = true; 256 assert(CRC->Failed && "No crash was detected!");
|
/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/clang/lib/Rewrite/ |
FixItRewriter.cpp | 117 bool Failed = false; 125 Failed = true; 133 Failed = true; 136 if (Failed) {
|
/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 37 RemoteAdtTestRunner_RunFailedMsg_s=Test run failed: %1$s
|
/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
|
WebSocketHandshake.cpp | 323 m_mode = Failed; 330 m_mode = Failed; 342 LOG(Network, "readHTTPHeaders failed"); 343 m_mode = Failed; 347 LOG(Network, "header process failed"); 348 m_mode = Failed; 358 m_mode = Failed;
|
/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/gtest/src/ |
gtest-internal-inl.h | 535 // Gets the number of failed test parts. 539 // of successful test parts and the number of failed test parts. 542 // Returns true iff the test passed (i.e. no test part failed). 543 bool Passed() const { return !Failed(); } 545 // Returns true iff the test failed. 546 bool Failed() const { return failed_part_count() > 0; } 548 // Returns true iff the test fatally failed. 721 // Gets the number of failed tests in this test case. 734 bool Passed() const { return !Failed(); } 736 // Returns true iff the test case failed [all...] |
/external/protobuf/gtest/test/ |
gtest_xml_output_unittest.py | 82 <failure message="Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]></top>" type=""><![CDATA[gtest_xml_output_unittest_.cc:* 83 Failed 89 <failure message="Failed
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/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());
|
gtest_xml_output_unittest.py | 82 <failure message="Failed
XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]></top>" type=""><![CDATA[gtest_xml_output_unittest_.cc:* 83 Failed 89 <failure message="Failed
Invalid characters in brackets []" type=""><![CDATA[gtest_xml_output_unittest_.cc:* 90 Failed
|
/external/libxml2/ |
xmlcatalog.c | 229 printf("add command failed\n"); 242 printf("add command failed\n"); 251 printf("del command failed\n"); 261 printf("Resolver failed to find an answer\n"); 464 fprintf(stderr, "Failed to remove entry from %s\n", 477 "Failed to remove entry from %s\n", 534 printf("add command failed\n"); 542 fprintf(stderr, "Failed to remove entry %s\n",
|
/external/gtest/test/ |
gtest-test-part_test.cc | 62 // Tests TestPartResult::failed(). 63 TEST_F(TestPartResultTest, Failed) { 64 EXPECT_FALSE(r1_.failed()); 65 EXPECT_TRUE(r2_.failed()); 66 EXPECT_TRUE(r3_.failed());
|
/frameworks/compile/slang/tests/ |
test.py | 124 print 'Command failed on valid input' 165 failed = 0 198 failed += 1 202 print 'Tests Failed: %d\n' % failed, 203 if failed: 208 return failed != 0
|
/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) { 408 bool Failed = false; 415 Failed = true; 423 Failed = true; 435 Failed = true [all...] |
/external/oprofile/events/mips/5K/ |
events | 17 event:0x5 counters:0 um:zero minimum:500 name:FAILED_COND_STORES : Failed conditional stores
|
/external/clang/include/clang/Sema/ |
Initialization.h | 484 /// \brief A failed initialization sequence. The failure kind tells what 590 /// \brief Describes why initialization failed. 605 /// \brief Overloading due to reference initialization failed. 616 /// \brief Reference binding failed. 618 /// \brief Implicit conversion failed. 620 /// \brief Implicit conversion failed. 629 /// \brief Overloading for a user-defined conversion failed. 631 /// \brief Overloaded for initialization by constructor failed. 643 /// \brief The failed result of overload resolution. 646 /// \brief The candidate set created when initialization failed [all...] |