HomeSort by relevance Sort by last modified time
    Searched defs:Passed (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/base/
bind_helpers.h 15 // The wrapper functions are base::Unretained(), base::Owned(), bass::Passed(),
24 // Passed() is for transferring movable-but-not-copyable types (eg. scoped_ptr)
27 // Callback::Run() twice on a Callback that was created with a Passed()
106 // EXAMPLE OF Passed():
115 // Closure cb = Bind(&TakesOwnership, Passed(&f));
122 // cb = Bind(&TakesOwnership, Passed(CreateFoo()));
129 // Passed() is particularly useful with PostTask() when you are transferring
515 // We offer 2 syntaxes for calling Passed(). The first takes a temporary and
518 // to write Passed(scoper.Pass()).
520 static inline internal::PassedWrapper<T> Passed(T scoper)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-death-test.cc 247 virtual bool Passed(bool status_ok);
380 bool ForkingDeathTest::Passed(bool status_ok) {
419 "DeathTest::Passed somehow called before conclusion of test");
  /external/chromium/testing/gtest/test/
gtest-death-test_test.cc 773 int status, bool passed);
795 // The value a MockDeathTest will return from its Passed method.
802 // The arguments to the calls to Passed since the last call to
821 TestRole role, int status, bool passed) :
822 parent_(parent), role_(role), status_(status), passed_(passed) {
835 virtual bool Passed(bool exit_status_ok) {
866 int status, bool passed) {
870 passed_ = passed;
946 // and that the Passed method returns false when the (simulated)
961 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-death-test_test.cc 825 int status, bool passed);
847 // The value a MockDeathTest will return from its Passed method.
854 // The arguments to the calls to Passed since the last call to
873 TestRole role, int status, bool passed) :
874 parent_(parent), role_(role), status_(status), passed_(passed) {
887 virtual bool Passed(bool exit_status_ok) {
919 int status, bool passed) {
923 passed_ = passed;
999 // and that the Passed method returns false when the (simulated)
1014 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /external/gtest/test/
gtest-death-test_test.cc 773 int status, bool passed);
795 // The value a MockDeathTest will return from its Passed method.
802 // The arguments to the calls to Passed since the last call to
821 TestRole role, int status, bool passed) :
822 parent_(parent), role_(role), status_(status), passed_(passed) {
835 virtual bool Passed(bool exit_status_ok) {
866 int status, bool passed) {
870 passed_ = passed;
946 // and that the Passed method returns false when the (simulated)
961 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /external/protobuf/gtest/test/
gtest-death-test_test.cc 727 int status, bool passed);
749 // The value a MockDeathTest will return from its Passed method.
756 // The arguments to the calls to Passed since the last call to
775 TestRole role, int status, bool passed) :
776 parent_(parent), role_(role), status_(status), passed_(passed) {
789 virtual bool Passed(bool exit_status_ok) {
820 int status, bool passed) {
824 passed_ = passed;
900 // and that the Passed method returns false when the (simulated)
915 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-death-test_test.cc 825 int status, bool passed);
847 // The value a MockDeathTest will return from its Passed method.
854 // The arguments to the calls to Passed since the last call to
873 TestRole role, int status, bool passed) :
874 parent_(parent), role_(role), status_(status), passed_(passed) {
887 virtual bool Passed(bool exit_status_ok) {
919 int status, bool passed) {
923 passed_ = passed;
999 // and that the Passed method returns false when the (simulated)
1014 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 480 // Returns true iff the test passed (i.e. no test part failed).
481 bool Passed() const { return !Failed(); }
658 // Returns true iff the test case passed.
659 bool Passed() const { return !Failed(); }
689 // Returns true iff test passed.
692 return impl->should_run() && impl->result()->Passed();
887 // Returns true iff the unit test passed (i.e. all test cases passed).
888 bool Passed() const { return !Failed(); }
    [all...]
  /external/chromium/testing/gtest/src/
gtest-death-test.cc 337 virtual bool Passed(bool status_ok);
490 bool DeathTestImpl::Passed(bool status_ok) {
532 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 547 // Returns true iff the unit test passed (i.e. all test cases passed).
548 bool Passed() const { return !Failed(); }
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc 375 virtual bool Passed(bool status_ok);
528 bool DeathTestImpl::Passed(bool status_ok) {
570 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 568 // Returns true iff the unit test passed (i.e. all test cases passed).
569 bool Passed() const { return !Failed(); }
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 337 virtual bool Passed(bool status_ok);
490 bool DeathTestImpl::Passed(bool status_ok) {
532 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 554 // Returns true iff the unit test passed (i.e. all test cases passed).
555 bool Passed() const { return !Failed(); }
    [all...]
  /external/gtest/src/
gtest-death-test.cc 337 virtual bool Passed(bool status_ok);
490 bool DeathTestImpl::Passed(bool status_ok) {
532 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 554 // Returns true iff the unit test passed (i.e. all test cases passed).
555 bool Passed() const { return !Failed(); }
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest-death-test.cc 337 virtual bool Passed(bool status_ok);
490 bool DeathTestImpl::Passed(bool status_ok) {
531 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal-inl.h 553 // Returns true iff the unit test passed (i.e. all test cases passed).
554 bool Passed() const { return !Failed(); }
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 337 virtual bool Passed(bool status_ok);
490 bool DeathTestImpl::Passed(bool status_ok) {
532 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 554 // Returns true iff the unit test passed (i.e. all test cases passed).
555 bool Passed() const { return !Failed(); }
    [all...]
  /external/open-vcdiff/gtest/src/
gtest-death-test.cc 324 virtual bool Passed(bool status_ok);
447 bool DeathTestImpl::Passed(bool status_ok) {
484 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest.h 425 // Returns true iff the test passed (i.e. no test part failed).
426 bool Passed() const { return !Failed(); }
653 // Returns true iff the test case passed.
654 bool Passed() const { return !Failed(); }
700 // Returns true iff test passed.
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 324 virtual bool Passed(bool status_ok);
447 bool DeathTestImpl::Passed(bool status_ok) {
484 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 377 virtual bool Passed(bool status_ok);
530 bool DeathTestImpl::Passed(bool status_ok) {
572 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest.h 523 // Returns true iff the test passed (i.e. no test part failed).
524 bool Passed() const { return !Failed(); }
790 // Returns true iff the test case passed.
791 bool Passed() const { return !Failed(); }
845 // Returns true iff test passed.
847 return test_info->should_run() && test_info->result()->Passed();
    [all...]

Completed in 862 milliseconds

1 2