HomeSort by relevance Sort by last modified time
    Searched defs:Failed (Results 1 - 18 of 18) sorted by null

  /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/clang/lib/Rewrite/
FixItRewriter.cpp 117 bool Failed = false;
125 Failed = true;
133 Failed = true;
136 if (Failed) {
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.h 49 Incomplete, Normal, Failed, Connected
  /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/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/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]
  /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/chromium/testing/gtest/src/
gtest-internal-inl.h 519 // Gets the number of failed test cases.
532 // Gets the number of failed tests.
548 bool Passed() const { return !Failed(); }
550 // Returns true iff the unit test failed (i.e. some test case failed
551 // or something outside of all tests failed).
552 bool Failed() const {
553 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
639 << "Failed to get the current working directory.";
678 // thrown during a test, this test is considered to be failed, bu
    [all...]
gtest.cc 190 "True iff a failed assertion should be a debugger break-point.");
275 "When this flag is specified, a failed assertion will throw an exception "
328 // Returns true iff the test case failed.
330 return test_case->should_run() && test_case->Failed();
708 // Gets the number of failed test cases.
729 // Gets the number of failed tests.
4195 bool failed = false; local
    [all...]
  /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...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 594 // Gets the number of failed test cases.
607 // Gets the number of failed tests.
623 bool Passed() const { return !Failed(); }
625 // Returns true iff the unit test failed (i.e. some test case failed
626 // or something outside of all tests failed).
627 bool Failed() const {
628 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
712 << "Failed to get the current working directory.";
752 // considered to be failed, but the rest of the tests will still b
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 137 // When this flag is specified, a failed assertion will throw an
180 // remembers a non-empty message that described how it failed.
211 // Declares factory functions for making successful and failed
226 // The constructor used when the assertion failed.
236 // Makes a failed assertion result with the given failure message.
419 // of successful test parts and the number of failed test parts.
425 // Returns true iff the test passed (i.e. no test part failed).
426 bool Passed() const { return !Failed(); }
428 // Returns true iff the test failed.
429 bool Failed() const
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest.h 135 // When this flag is specified, a failed assertion will throw an
188 // remembers a non-empty message that describes how it failed.
208 // Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))
326 // Makes a failed assertion result.
329 // Makes a failed assertion result with the given failure message.
517 // of successful test parts and the number of failed test parts.
523 // Returns true iff the test passed (i.e. no test part failed).
524 bool Passed() const { return !Failed(); }
526 // Returns true iff the test failed.
527 bool Failed() const
    [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/llvm/utils/unittest/googletest/include/gtest/
gtest.h 134 // When this flag is specified, a failed assertion will throw an
177 // remembers a non-empty message that describes how it failed.
197 // Then the failed expectation EXPECT_TRUE(IsEven(Fib(5)))
311 // Makes a failed assertion result.
314 // Makes a failed assertion result with the given failure message.
498 // of successful test parts and the number of failed test parts.
504 // Returns true iff the test passed (i.e. no test part failed).
505 bool Passed() const { return !Failed(); }
507 // Returns true iff the test failed.
508 bool Failed() const
    [all...]
  /external/protobuf/gtest/src/
gtest-internal-inl.h 765 // Gets the number of failed test cases.
778 // Gets the number of failed tests.
794 bool Passed() const { return !Failed(); }
796 // Returns true iff the unit test failed (i.e. some test case failed
797 // or something outside of all tests failed).
798 bool Failed() const {
799 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
    [all...]
gtest.cc 174 "True iff a failed assertion should be a debugger break-point.");
252 "When this flag is specified, a failed assertion will throw an exception "
309 // Returns true iff the test case failed.
311 return test_case->should_run() && test_case->Failed();
678 // Gets the number of failed test cases.
699 // Gets the number of failed tests.
3956 bool failed = false; local
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc 186 "True iff a failed assertion should be a debugger break-point.");
264 "When this flag is specified, a failed assertion will throw an exception "
317 // Returns true iff the test case failed.
319 return test_case->should_run() && test_case->Failed();
686 // Gets the number of failed test cases.
707 // Gets the number of failed tests.
3955 bool failed = false; local
    [all...]

Completed in 540 milliseconds