/external/pdfium/third_party/googletest/ |
D | BUILD.gn | 10 # necessary. The definition in gtest-port.h at the time of this writing 14 # In order to allow regex matches in gtest to be shared between Windows 15 # and other systems, we tell gtest to always use its internal engine. 21 # Prevents gtest from including both <tr1/tuple> and <tuple>. 25 # Gtest headers need to be able to find themselves. 41 # Do NOT depend on this directly. Use //testing/gtest instead. 43 source_set("gtest") { 46 "src/googletest/include/gtest/gtest-death-test.h", 47 "src/googletest/include/gtest/gtest-matchers.h", 48 "src/googletest/include/gtest/gtest-message.h", [all …]
|
/external/pigweed/third_party/googletest/ |
D | BUILD.gn | 41 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest.h", 61 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-death-test.h", 62 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-matchers.h", 63 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-message.h", 64 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-param-test.h", 65 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-printers.h", 66 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-spi.h", 67 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-test-part.h", 68 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest-typed-test.h", 69 "$dir_pw_third_party_googletest/googletest/include/gtest/gtest_pred_impl.h", [all …]
|
/external/googletest/googletest/scripts/ |
D | fuse_gtest_files.py | 39 two files: OUTPUT_DIR/gtest/gtest.h and OUTPUT_DIR/gtest/gtest-all.cc. 41 search path and linking with OUTPUT_DIR/gtest/gtest-all.cc. These 50 ./fuse_gtest_files.py path/to/unpacked/gtest fused_gtest 73 # Regex for matching '#include "gtest/..."'. 74 INCLUDE_GTEST_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(gtest/.+)"') 80 GTEST_H_SEED = 'include/gtest/gtest.h' 81 GTEST_SPI_H_SEED = 'include/gtest/gtest-spi.h' 82 GTEST_ALL_CC_SEED = 'src/gtest-all.cc' 85 GTEST_H_OUTPUT = 'gtest/gtest.h' 86 GTEST_ALL_CC_OUTPUT = 'gtest/gtest-all.cc' [all …]
|
/external/googletest/googlemock/scripts/ |
D | fuse_gmock_files.py | 41 OUTPUT_DIR/gtest/gtest.h, OUTPUT_DIR/gmock/gmock.h, and 42 OUTPUT_DIR/gmock-gtest-all.cc. Then you can build your tests 44 with OUTPUT_DIR/gmock-gtest-all.cc. These three files contain 77 import fuse_gtest_files as gtest # pylint:disable=g-import-not-at-top namespace 88 GTEST_H_OUTPUT = 'gtest/gtest.h' 90 GMOCK_GTEST_ALL_CC_OUTPUT = 'gmock-gtest-all.cc' 108 gtest.ValidateGTestRootDir(GetGTestRootDir(gmock_root)) 109 gtest.VerifyFileExists(gmock_root, GMOCK_H_SEED) 110 gtest.VerifyFileExists(gmock_root, GMOCK_ALL_CC_SEED) 122 gtest.VerifyOutputFile(output_dir, gtest.GTEST_H_OUTPUT) [all …]
|
/external/googletest/googletest/ |
D | Android.mk | 27 # The upstream gtest configuration builds each of these as separate executables. 36 define gtest-unit-test 51 # The NDK variant of gtest-death-test_test is disabled because we don't have 53 define gtest-test-suite 54 $(eval $(call gtest-unit-test,googletest-death-test-test,,libgtest_main)) \ 55 $(eval $(call gtest-unit-test,googletest-filepath-test,,libgtest_main)) \ 56 $(eval $(call gtest-unit-test,googletest-listener-test,,libgtest_main)) \ 57 $(eval $(call gtest-unit-test,googletest-message-test,,libgtest_main)) \ 58 $(eval $(call gtest-unit-test,googletest-options-test,,libgtest_main)) \ 59 $(eval $(call gtest-unit-test,googletest-param-test-test, \ [all …]
|
D | CMakeLists.txt | 18 option(gtest_build_tests "Build all of gtest's own tests." OFF) 20 option(gtest_build_samples "Build gtest's sample programs." OFF) 22 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) 26 "Build gtest with internal symbols hidden in shared libraries." 50 project(gtest CXX C) project 54 project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C) project 67 if(CMAKE_PROJECT_NAME STREQUAL "gtest" OR CMAKE_PROJECT_NAME STREQUAL "googletest-distribution") 97 set(cmake_package_name GTest CACHE INTERNAL "") 125 # Defines the gtest & gtest_main libraries. User tests should link 129 # are used for other targets, to ensure that gtest can be compiled by a user [all …]
|
/external/libaom/libaom/third_party/googletest/src/googletest/ |
D | CMakeLists.txt | 15 option(gtest_build_tests "Build all of gtest's own tests." OFF) 17 option(gtest_build_samples "Build gtest's sample programs." OFF) 19 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) 23 "Build gtest with internal symbols hidden in shared libraries." 44 project(gtest CXX C) project 47 project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C) project 60 if(CMAKE_PROJECT_NAME STREQUAL "gtest" OR CMAKE_PROJECT_NAME STREQUAL "googletest-distribution") 91 set(cmake_package_name GTest) 127 # Defines the gtest & gtest_main libraries. User tests should link 131 # are used for other targets, to ensure that gtest can be compiled by a user [all …]
|
D | README.md | 15 ${GTEST_DIR}/src/gtest-all.cc 22 -pthread -c ${GTEST_DIR}/src/gtest-all.cc 23 ar -rv libgtest.a gtest-all.o 28 the system header search path, and link it with gtest and any other necessary 78 directory. Just type 'make' to build gtest. 80 If you use Windows and have Visual Studio installed, a `gtest.sln` file and 88 If you want to use gtest in a project which already uses CMake, then a more 89 robust and flexible approach is to build gtest as part of that project directly. 93 between gtest and the rest of your project, so issues associated with using 156 # the gtest and gtest_main targets. [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/ |
D | CMakeLists.txt | 15 option(gtest_build_tests "Build all of gtest's own tests." OFF) 17 option(gtest_build_samples "Build gtest's sample programs." OFF) 19 option(gtest_disable_pthreads "Disable uses of pthreads in gtest." OFF) 23 "Build gtest with internal symbols hidden in shared libraries." 47 project(gtest CXX C) project 51 project(gtest VERSION ${GOOGLETEST_VERSION} LANGUAGES CXX C) project 64 if(CMAKE_PROJECT_NAME STREQUAL "gtest" OR CMAKE_PROJECT_NAME STREQUAL "googletest-distribution") 95 set(cmake_package_name GTest) 119 # Defines the gtest & gtest_main libraries. User tests should link 123 # are used for other targets, to ensure that gtest can be compiled by a user [all …]
|
/external/OpenCL-CTS/ |
D | Android.bp | 128 gtest: false 137 gtest: false 146 gtest: false 155 gtest: false 164 gtest: false 173 gtest: false 182 gtest: false 192 gtest: false 201 gtest: false 210 gtest: false [all …]
|
/external/google-breakpad/src/processor/testdata/ |
D | microdump.stackwalk.machine_readable-arm.out | 12 …Setup_Test::TestBody|/s/clank/src/out_arm/Release/../../testing/gtest/include/gtest/gtest.h|1481|0… 13 …nittests|testing::Test::Run|/s/clank/src/out_arm/Release/../../testing/gtest/src/gtest.cc|2435|0x17 14 …tests|testing::TestInfo::Run|/s/clank/src/out_arm/Release/../../testing/gtest/src/gtest.cc|2610|0x5 15 …tests|testing::TestCase::Run|/s/clank/src/out_arm/Release/../../testing/gtest/src/gtest.cc|2728|0x3 16 …l::UnitTestImpl::RunAllTests|/s/clank/src/out_arm/Release/../../testing/gtest/src/gtest.cc|4591|0x3 17 …tests|testing::UnitTest::Run|/s/clank/src/out_arm/Release/../../testing/gtest/src/gtest.cc|2418|0x5 18 0|6|breakpad_unittests|main|/s/clank/src/out_arm/Release/../../testing/gtest/include/gtest/gtest.h|…
|
D | microdump.stackwalk.machine_readable-arm64.out | 15 …IfSupported<testing::Test, void>|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc|2418|0x4 16 0|2|breakpad_unittests|testing::Test::Run|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc… 17 …unittests|testing::TestInfo::Run|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc|2610|0x4 18 …unittests|testing::TestCase::Run|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc|2728|0x0 19 …ernal::UnitTestImpl::RunAllTests|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc|4591|0x0 20 …unittests|testing::UnitTest::Run|/s/clank/src/out/Release/../../testing/gtest/src/gtest.cc|2418|0x4 21 0|7|breakpad_unittests|main|/s/clank/src/out/Release/../../testing/gtest/include/gtest/gtest.h|2326…
|
/external/cpuinfo/ |
D | CMakeLists.txt | 290 IF(NOT TARGET gtest) 328 TARGET_LINK_LIBRARIES(atm7029b-tablet-test PRIVATE cpuinfo_mock gtest) 333 TARGET_LINK_LIBRARIES(blu-r1-hd-test PRIVATE cpuinfo_mock gtest) 338 TARGET_LINK_LIBRARIES(galaxy-a3-2016-eu-test PRIVATE cpuinfo_mock gtest) 343 TARGET_LINK_LIBRARIES(galaxy-a8-2016-duos-test PRIVATE cpuinfo_mock gtest) 348 TARGET_LINK_LIBRARIES(galaxy-grand-prime-value-edition-test PRIVATE cpuinfo_mock gtest) 353 TARGET_LINK_LIBRARIES(galaxy-j1-2016-test PRIVATE cpuinfo_mock gtest) 358 TARGET_LINK_LIBRARIES(galaxy-j5-test PRIVATE cpuinfo_mock gtest) 363 TARGET_LINK_LIBRARIES(galaxy-j7-prime-test PRIVATE cpuinfo_mock gtest) 368 TARGET_LINK_LIBRARIES(galaxy-j7-tmobile-test PRIVATE cpuinfo_mock gtest) [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | BUILD | 123 "@com_google_googletest//:gtest", 137 "@com_google_googletest//:gtest", 197 "@com_google_googletest//:gtest", 250 "@com_google_googletest//:gtest", 285 "@com_google_googletest//:gtest", 402 "@com_google_googletest//:gtest", 452 "@com_google_googletest//:gtest", 499 "@com_google_googletest//:gtest", 510 "@com_google_googletest//:gtest", 728 "@com_google_googletest//:gtest", [all …]
|
/external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
D | BUILD | 82 "@com_google_googletest//:gtest", 100 "@com_google_googletest//:gtest", 117 "@com_google_googletest//:gtest", 135 "@com_google_googletest//:gtest", 153 "@com_google_googletest//:gtest", 170 "@com_google_googletest//:gtest", 187 "@com_google_googletest//:gtest", 204 "@com_google_googletest//:gtest", 222 "@com_google_googletest//:gtest", 239 "@com_google_googletest//:gtest", [all …]
|
/external/pdfium/testing/gtest/ |
D | BUILD.gn | 5 import("//build_overrides/gtest.gni") 20 static_library("gtest") { 24 "include/gtest/gtest-death-test.h", 25 "include/gtest/gtest-message.h", 26 "include/gtest/gtest-param-test.h", 27 "include/gtest/gtest-spi.h", 28 "include/gtest/gtest.h", 29 "include/gtest/gtest_prod.h", 43 public_deps = [ "//third_party/googletest:gtest" ]
|
/external/libvpx/libvpx/third_party/googletest/src/ |
D | README.md | 15 ${GTEST_DIR}/src/gtest-all.cc 22 -pthread -c ${GTEST_DIR}/src/gtest-all.cc 23 ar -rv libgtest.a gtest-all.o 28 the system header search path, and link it with gtest and any other necessary 78 directory. Just type 'make' to build gtest. 80 If you use Windows and have Visual Studio installed, a `gtest.sln` file and 88 If you want to use gtest in a project which already uses CMake, then a more 89 robust and flexible approach is to build gtest as part of that project directly. 93 between gtest and the rest of your project, so issues associated with using 156 # the gtest and gtest_main targets. [all …]
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/src/ |
D | gtest-all.cc | 36 // This line ensures that gtest.h can be compiled on its own, even 38 #include "gtest/gtest.h" 40 // The following lines pull in the real gtest *.cc files. 41 #include "src/gtest.cc" 42 #include "src/gtest-death-test.cc" 43 #include "src/gtest-filepath.cc" 44 #include "src/gtest-matchers.cc" 45 #include "src/gtest-port.cc" 46 #include "src/gtest-printers.cc" 47 #include "src/gtest-test-part.cc" [all …]
|
/external/googletest/googletest/src/ |
D | gtest-all.cc | 36 // This line ensures that gtest.h can be compiled on its own, even 38 #include "gtest/gtest.h" 40 // The following lines pull in the real gtest *.cc files. 41 #include "src/gtest.cc" 42 #include "src/gtest-death-test.cc" 43 #include "src/gtest-filepath.cc" 44 #include "src/gtest-matchers.cc" 45 #include "src/gtest-port.cc" 46 #include "src/gtest-printers.cc" 47 #include "src/gtest-test-part.cc" [all …]
|
/external/libaom/libaom/third_party/googletest/src/googletest/src/ |
D | gtest-all.cc | 36 // This line ensures that gtest.h can be compiled on its own, even 38 #include "gtest/gtest.h" 40 // The following lines pull in the real gtest *.cc files. 41 #include "src/gtest.cc" 42 #include "src/gtest-death-test.cc" 43 #include "src/gtest-filepath.cc" 44 #include "src/gtest-matchers.cc" 45 #include "src/gtest-port.cc" 46 #include "src/gtest-printers.cc" 47 #include "src/gtest-test-part.cc" [all …]
|
/external/mesa3d/src/gtest/src/ |
D | gtest-all.cc | 36 // This line ensures that gtest.h can be compiled on its own, even 38 #include "gtest/gtest.h" 40 // The following lines pull in the real gtest *.cc files. 41 #include "src/gtest.cc" 42 #include "src/gtest-death-test.cc" 43 #include "src/gtest-filepath.cc" 44 #include "src/gtest-matchers.cc" 45 #include "src/gtest-port.cc" 46 #include "src/gtest-printers.cc" 47 #include "src/gtest-test-part.cc" [all …]
|
/external/libchrome/libchrome_tools/patch/ |
D | gtest.patch | 1 # Use system installed gtest library. 4 +++ b/testing/gtest/include/gtest/gtest.h 6 +#include <gtest/gtest.h> 8 +++ b/testing/gtest/include/gtest/gtest_prod.h 10 +#include <gtest/gtest_prod.h>
|
/external/llvm-project/llvm/utils/unittest/ |
D | CMakeLists.txt | 42 add_llvm_library(gtest 43 googletest/src/gtest-all.cc 58 # that warning here for any targets that link to gtest. 61 set_target_properties(gtest PROPERTIES INTERFACE_COMPILE_OPTIONS "-Wno-suggest-override") 64 # Gtest 1.8.0 uses tr1/tuple which is deprecated on MSVC, so we force it off. 65 target_compile_definitions(gtest PUBLIC GTEST_HAS_TR1_TUPLE=0) 68 target_compile_definitions(gtest PUBLIC GTEST_HAS_PTHREAD=0) 71 target_include_directories(gtest 79 # link libraries for gtest and gtest_main. This means that any target, like 80 # unittests for example, that links against gtest will be forced to link [all …]
|
/external/googletest/googletest/test/ |
D | BUILD.bazel | 40 #on windows exclude gtest-tuple.h 46 "gtest-*.cc", 49 "googletest/include/gtest/**/*.h", 52 "gtest-unittest-api_test.cc", 53 "googletest/src/gtest-all.cc", 55 "gtest-death-test_ex_test.cc", 56 "gtest-listener_test.cc", 57 "gtest-unittest-api_test.cc", 116 deps = ["//:gtest"], 128 name = "gtest-unittest-api_test", [all …]
|
/external/libvpx/libvpx/third_party/googletest/src/src/ |
D | gtest-all.cc | 36 // This line ensures that gtest.h can be compiled on its own, even 38 #include "gtest/gtest.h" 40 // The following lines pull in the real gtest *.cc files. 41 #include "src/gtest.cc" 42 #include "src/gtest-death-test.cc" 43 #include "src/gtest-filepath.cc" 44 #include "src/gtest-port.cc" 45 #include "src/gtest-printers.cc" 46 #include "src/gtest-test-part.cc" 47 #include "src/gtest-typed-test.cc"
|