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

1 2

  /external/v8/tools/clang/base_bind_rewriters/tests/
callback.h 25 internal::PassedWrapper<T> Passed(T&& scoper) {
30 internal::PassedWrapper<T> Passed(T* scoper) {
  /external/libchrome/base/
bind.h 28 // passed when invoking the callback with Run().
31 // // two must be passed when calling Run() on the callback object.
83 // reference with repeating callbacks--is used instead of base::Passed().
88 "Ensure |Arg| is bound using base::Passed(), not std::move().");
143 // Transform |T| into `Unwrapped` type, which is passed to the target function.
317 // When the callback is called, the object is passed as a raw pointer.
390 // Passed() is for transferring movable-but-not-copyable types (eg. unique_ptr)
393 // Callback::Run() twice on a Callback that was created with a Passed()
397 // Note that Passed() is not necessary with BindOnce(), as std::move() does the
398 // same thing. Avoid Passed() in favor of std::move() with BindOnce()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/opt-viewer/
optrecord.py 250 class Passed(Remark):
251 yaml_tag = '!Passed'
  /external/google-breakpad/src/testing/gtest/test/
gtest-death-test_test.cc 826 int status, bool passed);
848 // The value a MockDeathTest will return from its Passed method.
855 // The arguments to the calls to Passed since the last call to
874 TestRole role, int status, bool passed) :
875 parent_(parent), role_(role), status_(status), passed_(passed) {
888 virtual bool Passed(bool exit_status_ok) {
920 int status, bool passed) {
924 passed_ = passed;
1000 // and that the Passed method returns false when the (simulated)
1015 // Tests that the Passed method was given the argument "true" whe
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
Messages.cs 72 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Testing.ReconnectInfo), global::Grpc.Testing.ReconnectInfo.Parser, new[]{ "Passed", "BackoffMs" }, null, null, null)
    [all...]
  /external/google-breakpad/src/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/googletest/googletest/src/
gtest-internal-inl.h 576 // Returns true iff the unit test passed (i.e. all test suites passed).
577 bool Passed() const { return !Failed(); }
    [all...]
gtest-death-test.cc 411 bool Passed(bool status_ok) override;
568 bool DeathTestImpl::Passed(bool status_ok) {
612 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/src/
gtest-death-test.cc 388 virtual bool Passed(bool status_ok);
541 bool DeathTestImpl::Passed(bool status_ok) {
583 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 566 // Returns true iff the unit test passed (i.e. all test cases passed).
567 bool Passed() const { return !Failed(); }
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 404 virtual bool Passed(bool status_ok);
557 bool DeathTestImpl::Passed(bool status_ok) {
604 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 572 // Returns true iff the unit test passed (i.e. all test cases passed).
573 bool Passed() const { return !Failed(); }
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 340 bool Passed(bool status_ok) override;
493 bool DeathTestImpl::Passed(bool status_ok) {
534 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
gtest-internal-inl.h 557 // Returns true iff the unit test passed (i.e. all test cases passed).
558 bool Passed() const { return !Failed(); }
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 388 virtual bool Passed(bool status_ok);
541 bool DeathTestImpl::Passed(bool status_ok) {
583 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
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...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
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/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 388 virtual bool Passed(bool status_ok);
541 bool DeathTestImpl::Passed(bool status_ok) {
583 << "DeathTest::Passed somehow called before conclusion of test";
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest.h 524 // Returns true iff the test passed (i.e. no test part failed).
525 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...]
  /external/googletest/googletest/include/gtest/
gtest.h 588 // Returns true iff the test passed (i.e. no test part failed).
589 bool Passed() const { return !Skipped() && !Failed(); }
890 // Returns true iff the test suite passed.
891 bool Passed() const { return !Failed(); }
    [all...]
  /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/
gtest.h 538 // Returns true iff the test passed (i.e. no test part failed).
539 bool Passed() const { return !Failed(); }
834 // Returns true iff the test case passed.
835 bool Passed() const { return !Failed(); }
893 // Returns true iff test passed.
895 return test_info->should_run() && test_info->result()->Passed();
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h 576 // Returns true iff the test passed (i.e. no test part failed).
577 bool Passed() const { return !Failed(); }
875 // Returns true iff the test case passed.
876 bool Passed() const { return !Failed(); }
    [all...]
  /external/llvm/utils/unittest/googletest/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...]
  /external/mesa3d/src/gtest/include/gtest/
gtest.h 538 // Returns true iff the test passed (i.e. no test part failed).
539 bool Passed() const { return !Failed(); }
834 // Returns true iff the test case passed.
835 bool Passed() const { return !Failed(); }
893 // Returns true iff test passed.
895 return test_info->should_run() && test_info->result()->Passed();
    [all...]

Completed in 984 milliseconds

1 2