Lines Matching defs:parameter

1818 // Also use it after a variable or parameter declaration to tell the
1819 // compiler the variable/parameter does not have to be used.
2247 // Derived must be a subclass of Base. The parameter MUST
2374 // // The thread_can_start parameter is optional; you can supply NULL.
2414 const T param_; // User-supplied parameter to the thread function.
5318 // parameter, as a type. TemplateSel<Tmpl>::Bind<T>::type is defined
7146 // The ignoring_case parameter is true iff the assertion is a
7188 // Template parameter:
7441 // type_param the name of the test's type parameter, or NULL if
7443 // value_param text representation of the test's value parameter,
7524 // template parameter. It's defined in gtest-type-util.h.
7545 NULL, // No value parameter.
7603 // the gtest_stack_trace_depth flag. The skip_count parameter
7834 // "typename EnableIf<expression>::type* = 0" as the last parameter.
8439 // parameter iff EXPECT_DEATH compiles with it.
8441 // the output of statement. This parameter has to be
8784 // class hierarchies), where the type of your parameter values.
8798 // Inside a test, access the test parameter with the GetParam() method
8811 // (surprise!) parameter generators. Here is a summary of them, which
8830 // each with parameter values "meeny", "miny", and "moe".
8853 // with parameter values "cat" and "dog":
8879 // In the future, we plan to publish the API for defining new parameter
8885 // testing::WithParamInterface<T>, where T is the type of the parameter
10349 // Stores a parameter value and later creates tests parameterized with that
10355 explicit ParameterizedTestFactory(ParamType parameter) :
10356 parameter_(parameter) {}
10377 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
10396 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) {
10397 return new ParameterizedTestFactory<TestCase>(parameter);
10463 // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
10510 NULL, // No type parameter.
15765 // Functions producing parameter generators.
15773 // each three times with parameter values 3, 5, and 8:
15860 // each with parameter values 'a' and 'b':
15907 // The exact type of values will depend on the type of parameter in BazTest.
16809 // the parameter values tuple("cat", BLACK), tuple("cat", WHITE),
17289 // Inside a test, refer to TypeParam to get the type parameter.
17340 // Inside a test, refer to TypeParam to get the type parameter.
18046 // Returns the name of the parameter type, or NULL if this is not a typed
18054 // Returns the text representation of the value parameter, or NULL if this
18135 // Name of the parameter type, or NULL if this is not a typed or a
18138 // Text representation of the value parameter, or NULL if this is not a
18169 // a_type_param: the name of the test's type parameter, or NULL if
18183 // Returns the name of the parameter type, or NULL if this is not a
18313 // Name of the parameter type, or NULL if this is not a typed or a
18947 // We used to have a second template parameter instead of Secret*. That
18948 // template parameter would deduce to 'long', making this a better match
19093 // Template parameter:
19184 // This interface has support for accessing the test parameter value via
19187 // Use it with one of the parameter generator defining functions, like Range(),
19218 // The current parameter value. Is also available in the test fixture's
19222 // uses a fixture whose parameter type is int.
19231 // Sets parameter value. The caller is responsible for making sure the value
19233 static void SetParam(const ParamType* parameter) {
19234 parameter_ = parameter;
19237 // Static value used for accessing parameter during a test lifetime.
19982 // The first parameter is the name of the test case, and the second
19983 // parameter is the name of the test within the test case.
20017 // The first parameter is the name of the test fixture class, which
20018 // also doubles as the test case name. The second parameter is the