OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPf
(Results
1 - 9
of
9
) sorted by null
/external/parameter-framework/upstream/test/functional-tests/
Basic.cpp
119
CHECK_THROWS_AS(
mPf
->start(), Exception);
136
CHECK_THROWS_AS(
mPf
->start(), Exception);
140
mPf
->setFailureOnMissingSubsystem(true);
142
CHECK_THROWS_AS(
mPf
->start(), Exception);
146
mPf
->setFailureOnMissingSubsystem(false);
148
CHECK_NOTHROW(
mPf
->start());
160
CHECK_THROWS_AS(
mPf
->start(), Exception);
163
mPf
->setFailureOnFailedSettingsLoad(false);
165
CHECK_NOTHROW(
mPf
->start());
Linear.cpp
74
CHECK_THROWS_AS(
mPf
->start(), Exception);
Logarithmic.cpp
76
CHECK_THROWS_AS(
mPf
->start(), Exception);
FixedPoint.cpp
68
CHECK_THROWS_AS(
mPf
->start(), Exception);
BitParameter.cpp
69
CHECK_THROWS_AS(
mPf
->start(), Exception);
EnumParameter.cpp
65
CHECK_THROWS_AS(
mPf
->start(), Exception);
FloatingPoint.cpp
69
CHECK_THROWS_AS(
mPf
->start(), Exception);
Integer.cpp
98
CHECK_THROWS_AS(
mPf
->start(), Exception);
/external/parameter-framework/upstream/test/functional-tests/include/
Test.hpp
119
void create(Config &&configFile) {
mPf
.reset(new PF{std::move(configFile)}); }
120
std::unique_ptr<PF>
mPf
;
Completed in 73 milliseconds