| /freebsd/contrib/googletest/googletest/samples/ |
| H A D | sample7_unittest.cc | 47 // function for PrimeTable objects. We will instantiate objects in test's 102 // In order to run value-parameterized tests, you need to instantiate them, 104 // You can instantiate them in a different translation module, or even 105 // instantiate them several times. 107 // Here, we instantiate our tests with a list of two PrimeTable object
|
| H A D | sample8_unittest.cc | 46 // told to instantiate without PrecalcPrimeTable instance at all and use only 140 // In order to run value-parameterized tests, you need to instantiate them, 142 // You can instantiate them in a different translation module, or even 143 // instantiate them several times. 145 // Here, we instantiate our tests with a list of parameters. We must combine
|
| H A D | sample6_unittest.cc | 199 // To turn the abstract test pattern into real tests, you instantiate 201 // in a .h file, and anyone can #include and instantiate it. You can 202 // even instantiate it more than once in the same program. To tell
|
| /freebsd/sys/sys/ |
| H A D | fail.h | 238 * Instantiate a failpoint which returns "RETURN_VALUE" from the function 249 * Instantiate a failpoint which returns (void) from the function when 259 * Instantiate a failpoint which sets an error when triggered. 270 * Instantiate a failpoint which sets an error and then goes to a 283 * Instantiate a failpoint which sets its pre- and post-sleep callback 301 * Instantiate a failpoint which runs arbitrary code when triggered, and sets 330 * Instantiate a failpoint which runs arbitrary code when triggered.
|
| /freebsd/contrib/googletest/googletest/include/gtest/ |
| H A D | gtest-param-test.h | 74 // Finally, you can use INSTANTIATE_TEST_SUITE_P to instantiate the test 95 // The following statement will instantiate tests from the FooTest test suite 103 // can instantiate it more than once) the first argument to the 118 // This statement will instantiate all tests from FooTest again, each 131 // Please note that INSTANTIATE_TEST_SUITE_P will instantiate all tests 280 // This will also instantiate tests from CharTest 374 // This will instantiate tests in test suite AnimalTest each one with 388 // This will instantiate tests in FlagDependentTest with all variations of two 423 // This will instantiate tests in test suite AnimalTest each one with
|
| H A D | gtest-typed-test.h | 117 // each implementation can easily instantiate the test suite to verify 146 // you can instantiate them. The first argument of the macro is the 152 // Finally, you are free to instantiate the pattern with the types you 154 // it in multiple C++ source files and instantiate it multiple times.
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateInstantiateDecl.cpp | 202 // If the attribute has delayed arguments it will have to instantiate those in instantiateDependentAnnotationAttr() 708 // specialization. We should only instantiate attributes that were added in InstantiateAttrsForDecl() 1662 // Instantiate the qualifier. We have to do this first in case in VisitClassTemplateDecl() 2049 // For nested local classes, we will instantiate the members when we in VisitCXXRecordDecl() 2310 // Instantiate the explicit template arguments. in VisitFunctionDecl() 2341 // Instantiate the explicit template arguments. in VisitFunctionDecl() 2497 // Instantiate enclosing template arguments for friends. in VisitCXXMethodDecl() 2707 // If the name of this function was written as a template-id, instantiate in VisitCXXMethodDecl() 2711 // Instantiate the explicit template arguments. in VisitCXXMethodDecl() 2871 // PR17480: Honor the used attribute to instantiate member function in VisitCXXMethodDecl() [all …]
|
| /freebsd/sys/contrib/device-tree/src/arm64/marvell/ |
| H A D | armada-80x0.dtsi | 20 * Instantiate the master CP110 41 * Instantiate the slave CP110
|
| H A D | cn9130.dtsi | 24 * Instantiate the internal CP115
|
| /freebsd/cddl/usr.sbin/zfsd/ |
| H A D | vdev.h | 65 * \brief Instantiate a vdev object for a vdev that is a member 81 * \brief Instantiate a vdev object for a vdev that is a member 97 * \brief Instantiate a vdev object from a ZFS label stored on
|
| H A D | vdev_iterator.h | 66 * \brief Instantiate a VdevIterator for the given ZFS pool. 73 * \brief Instantiate a VdevIterator for the given ZFS pool.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Registry.h | 37 std::unique_ptr<T> instantiate() const { return Ctor(); } in instantiate() function 129 /// Instantiate a registry class. 133 /// them, instead of the two-step process of define then instantiate, but
|
| /freebsd/stand/powerpc/ofw/ |
| H A D | ofwfdt.c | 101 * Instantiate and add reservations for RTAS state if present in ofwfdt_fixups() 117 /* Instantiate RTAS */ in ofwfdt_fixups() 120 OF_call_method("instantiate-rtas", rtas, 1, 1, (cell_t)rtasmem, in ofwfdt_fixups()
|
| /freebsd/sys/powerpc/ofw/ |
| H A D | rtas.c | 66 * After the VM is up, allocate RTAS memory and instantiate it 117 * Instantiate RTAS. We always use the 32-bit version. in rtas_setup() 136 result = OF_call_method("instantiate-rtas", rtasi, 1, 1, in rtas_setup()
|
| /freebsd/contrib/kyua/utils/text/ |
| H A D | templates.hpp | 115 void instantiate(const templates_def&, std::istream&, std::ostream&); 116 void instantiate(const templates_def&, const fs::path&, const fs::path&);
|
| H A D | templates.cpp | 236 /// Stateful class to instantiate the templates in an input stream. 512 instantiate(std::istream& input, std::ostream& output) in instantiate() function in __anon5ef3b49e0111::templates_parser 735 text::instantiate(const templates_def& templates, in instantiate() function in text 739 parser.instantiate(input, output); in instantiate() 752 text::instantiate(const templates_def& templates, in instantiate() function in text 763 instantiate(templates, input, output); in instantiate()
|
| H A D | templates_test.cpp | 62 text::instantiate(templates, input, output); in do_test_ok() 83 text::instantiate(templates, input, output)); in do_test_fail() 910 text::instantiate(templates, fs::path("input.txt"), fs::path("output.txt")); in ATF_TEST_CASE_BODY() 925 text::instantiate(templates, fs::path("input.txt"), in ATF_TEST_CASE_BODY() 944 text::instantiate(templates, fs::path("input.txt"), in ATF_TEST_CASE_BODY()
|
| /freebsd/contrib/libucl/klib/ |
| H A D | khash.h | 582 @abstract Instantiate a hash set containing integer keys 589 @abstract Instantiate a hash map containing integer keys 597 @abstract Instantiate a hash map containing 64-bit integer keys 604 @abstract Instantiate a hash map containing 64-bit integer keys 613 @abstract Instantiate a hash map containing const char* keys 620 @abstract Instantiate a hash map containing const char* keys
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | r335171.sh | 34 # possible that the fault instantiate the page into the original object 38 # the objects lock, which allows the swap pager to instantiate
|
| /freebsd/sys/crypto/skein/ |
| H A D | skein_port.h | 89 #ifdef SKEIN_PORT_CODE /* instantiate the function code here? */ in Skein_Put64_LSB_First() 104 #ifdef SKEIN_PORT_CODE /* instantiate the function code here? */ in Skein_Get64_LSB_First()
|
| /freebsd/share/man/man4/ |
| H A D | geom.4 | 205 instantiate a geom to multiplex according to the contents of the MBR. 333 geoms will instantiate themselves anew. 356 for a particular class to instantiate itself.
|
| /freebsd/crypto/openssl/providers/implementations/rands/ |
| H A D | drbg.c | 33 * instantiation and un-instantiate, and reuse within a new/free 342 * Instantiate |drbg|, after it has been initialized. Use |pers| and 448 if (!drbg->instantiate(drbg, entropy, entropylen, nonce, noncelen, in ossl_prov_drbg_instantiate() 787 int (*instantiate)(PROV_DRBG *drbg, in ossl_rand_drbg_new() 809 drbg->instantiate = instantiate; in ossl_rand_drbg_new()
|
| /freebsd/contrib/googletest/docs/ |
| H A D | advanced.md | 1112 Finally, you can use the `INSTANTIATE_TEST_SUITE_P` macro to instantiate the 1118 For example, the following statement will instantiate tests from the `FooTest` 1142 You can instantiate a test pattern more than once, so to distinguish different 1156 The following statement will instantiate all tests from `FooTest` again, each 1172 Please note that `INSTANTIATE_TEST_SUITE_P` will instantiate *all* tests in the 1194 In the above, we define and instantiate `FooTest` in the *same* source file. 1196 other people instantiate them later. This pattern is known as *abstract tests*. 1200 pass. When someone implements the interface, they can instantiate your suite to 1211 Once they are defined, you can instantiate them by including `foo_param_test.h`, 1213 contains `foo_param_test.cc`. You can instantiate the same abstract test suite [all …]
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | evp_rand.c | 34 OSSL_FUNC_rand_instantiate_fn *instantiate; member 154 if (rand->instantiate != NULL) in evp_rand_from_algorithm() 156 rand->instantiate = OSSL_FUNC_rand_instantiate(fns); in evp_rand_from_algorithm() 517 return ctx->meth->instantiate(ctx->algctx, strength, prediction_resistance, in evp_rand_instantiate_locked()
|
| /freebsd/share/man/man9/ |
| H A D | hhook.9 | 75 to instantiate hook points. 202 macro to instantiate hook points.
|