HomeSort by relevance Sort by last modified time
    Searched refs:strResult (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/parameter-framework/upstream/parameter/
LinearParameterAdaptation.cpp 45 void CLinearParameterAdaptation::showProperties(string &strResult) const
47 base::showProperties(strResult);
50 strResult += " - SlopeNumerator: ";
51 strResult += std::to_string(_dSlopeNumerator);
52 strResult += "\n";
55 strResult += " - SlopeDenominator: ";
56 strResult += std::to_string(_dSlopeDenominator);
57 strResult += "\n";
LogarithmicParameterAdaptation.cpp 46 void CLogarithmicParameterAdaptation::showProperties(std::string &strResult) const
48 base::showProperties(strResult);
50 strResult += " - LogarithmBase: ";
51 strResult += std::to_string(_dLogarithmBase);
52 strResult += "\n";
53 strResult += " - FloorValue: ";
54 strResult += std::to_string(_dFloorValue);
55 strResult += "\n";
ParameterAdaptation.cpp 52 void CParameterAdaptation::showProperties(string &strResult) const
55 strResult += " - Type: ";
56 strResult += getName();
57 strResult += "\n";
60 strResult += " - Offset: ";
61 strResult += std::to_string(_iOffset);
62 strResult += "\n";
StringParameterType.cpp 49 void CStringParameterType::showProperties(string &strResult) const
51 base::showProperties(strResult);
54 strResult += "Max length: ";
55 strResult += std::to_string(_maxLength);
56 strResult += "\n";
ParameterMgr.h 263 std::string &strResult);
265 std::string &strResult);
300 std::string &strResult);
379 * @param[out] strResult contains the xml description or the error description in case false is
388 std::string &strResult) const;
409 const IRemoteCommand &remoteCommand, std::string &strResult);
424 std::string &strResult);
427 std::string &strResult);
430 std::string &strResult);
432 std::string &strResult);
    [all...]
ParameterMgr.cpp 862 const IRemoteCommand & /*command*/, string &strResult)
865 strResult = getVersion();
    [all...]
BitParameterType.cpp 53 void CBitParameterType::showProperties(string &strResult) const
55 base::showProperties(strResult);
58 strResult += "Bit pos: ";
59 strResult += std::to_string(_bitPos);
60 strResult += "\n";
63 strResult += "Bit size: ";
64 strResult += std::to_string(_uiBitSize);
65 strResult += "\n";
68 strResult += "Max: ";
69 strResult += std::to_string(_uiMax)
    [all...]
LinearParameterAdaptation.h 47 virtual void showProperties(std::string &strResult) const;
LogarithmicParameterAdaptation.h 59 virtual void showProperties(std::string &strResult) const;
ParameterAdaptation.h 42 virtual void showProperties(std::string &strResult) const;
IntegerParameterType.cpp 62 void CIntegerParameterType::showProperties(string &strResult) const
64 base::showProperties(strResult);
67 strResult += "Signed: ";
68 strResult += _bSigned ? "yes" : "no";
69 strResult += "\n";
72 strResult += "Min: ";
73 strResult += _bSigned ? std::to_string((int32_t)_uiMin) : std::to_string(_uiMin);
74 strResult += "\n";
77 strResult += "Max: ";
78 strResult += _bSigned ? std::to_string((int32_t)_uiMax) : std::to_string(_uiMax)
    [all...]
ConfigurableDomains.h 81 bool listDomainElements(const std::string &strDomain, std::string &strResult) const;
93 void listAssociatedElements(std::string &strResult) const;
94 void listConflictingElements(std::string &strResult) const;
95 void listDomains(std::string &strResult) const;
97 bool listConfigurations(const std::string &strDomain, std::string &strResult) const;
124 std::string &strResult) const;
132 std::string &strResult) const;
135 void listLastAppliedConfigurations(std::string &strResult) const;
EnumParameterType.cpp 54 void CEnumParameterType::showProperties(string &strResult) const
56 base::showProperties(strResult);
58 strResult += "Value Pairs:\n";
68 strResult += "\tLiteral: \"";
69 strResult += pValuePair->getName();
70 strResult += "\", Numerical: ";
71 strResult += pValuePair->getNumericalAsString();
72 strResult += "\n";
ConfigurableDomains.cpp 224 bool CConfigurableDomains::listConfigurations(const string &strDomain, string &strResult) const
226 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strResult);
233 pConfigurableDomain->listChildren(strResult);
285 bool CConfigurableDomains::listDomainElements(const string &strDomain, string &strResult) const
288 const CConfigurableDomain *pConfigurableDomain = findConfigurableDomain(strDomain, strResult);
295 pConfigurableDomain->listAssociatedToElements(strResult);
318 void CConfigurableDomains::listAssociatedElements(string &strResult) const
336 strResult += pConfigurableElement->getPath() + " [" + strAssociatedDomainList + "]\n";
340 void CConfigurableDomains::listConflictingElements(string &strResult) const
360 strResult += pConfigurableElement->getPath() + " contained in multiple domains: "
    [all...]
StringParameterType.h 53 virtual void showProperties(std::string &strResult) const;
ConfigurableElement.h 72 void listBelongingDomains(std::string &strResult, bool bVertical = true) const;
81 void listAssociatedDomains(std::string &strResult, bool bVertical = true) const;
85 void listRogueElements(std::string &strResult) const;
146 virtual void showProperties(std::string &strResult) const;
226 std::string &strResult, bool bVertical) const;
SelectionCriteria.h 67 void listSelectionCriteria(std::list<std::string> &strResult, bool bWithTypeInfo,
ConfigurableElement.cpp 309 void CConfigurableElement::showProperties(std::string &strResult) const
311 base::showProperties(strResult);
313 strResult += "Total size: " + getFootprintAsString() + "\n";
457 void CConfigurableElement::listBelongingDomains(std::string &strResult, bool bVertical) const
465 listDomains(configurableDomainList, strResult, bVertical);
469 void CConfigurableElement::listRogueElements(std::string &strResult) const
486 strResult += pConfigurableElement->getPath() + "\n";
549 void CConfigurableElement::listAssociatedDomains(std::string &strResult, bool bVertical) const
552 listDomains(_configurableDomainList, strResult, bVertical);
566 const std::list<const CConfigurableDomain *> &configurableDomainList, std::string &strResult,
    [all...]
FixedPointParameterType.cpp 57 void CFixedPointParameterType::showProperties(string &strResult) const
59 base::showProperties(strResult);
62 strResult += "Notation: Q";
63 strResult += std::to_string(_uiIntegral);
64 strResult += ".";
65 strResult += std::to_string(_uiFractional);
66 strResult += "\n";
Element.cpp 123 void CElement::showProperties(string &strResult) const
125 strResult += "Kind: " + getKind() + "\n";
126 showDescriptionProperty(strResult);
129 void CElement::showDescriptionProperty(std::string &strResult) const
132 strResult += gDescriptionPropertyName + ": " + getDescription() + "\n";
341 string strResult;
346 strResult = getQualifiedPath() + "\n";
353 strResult += pChild->listQualifiedPaths(bDive, level + 1);
356 return strResult;
InstanceConfigurableElement.cpp 118 void CInstanceConfigurableElement::showProperties(std::string &strResult) const
120 base::showProperties(strResult);
123 _pTypeElement->showProperties(strResult);
  /external/parameter-framework/upstream/remote-processor/
RemoteCommandHandler.h 40 std::string &strResult) = 0;
RemoteCommandHandlerTemplate.h 51 * @param[out] strResult a string containing the result of the command.
56 const IRemoteCommand &remoteCommand, std::string &strResult);
80 std::string &strResult) const
85 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage();
90 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) {
92 strResult = "Done";
97 strResult = usage();
150 bool remoteCommandProcess(const IRemoteCommand &remoteCommand, std::string &strResult)
159 strResult = "Command not found!\nUse \"help\" to show available commands";
166 helpCommandProcess(strResult);
    [all...]
  /external/parameter-framework/upstream/test/test-platform/
TestPlatform.h 58 const IRemoteCommand &remoteCommand, std::string &strResult);
60 const IRemoteCommand &remoteCommand, std::string &strResult);
63 std::string &strResult);
65 std::string &strResult);
79 CommandReturn setCriterionState(const IRemoteCommand &remoteCommand, std::string &strResult);
86 CommandReturn startParameterMgr(const IRemoteCommand &remoteCommand, std::string &strResult);
95 CommandReturn applyConfigurations(const IRemoteCommand &remoteCommand, std::string &strResult);
103 CommandReturn exit(const IRemoteCommand &remoteCommand, std::string &strResult);
117 CommandReturn setter(const IRemoteCommand &remoteCommand, std::string &strResult);
133 CommandReturn getter(const IRemoteCommand &remoteCommand, std::string &strResult);
    [all...]
TestPlatform.cpp 52 string & /*strResult*/)
139 const IRemoteCommand &remoteCommand, string &strResult)
142 remoteCommand, strResult)
148 const IRemoteCommand &remoteCommand, string &strResult)
151 remoteCommand, strResult)
157 const IRemoteCommand &remoteCommand, string &strResult)
161 strResult)
167 const IRemoteCommand &remoteCommand, string &strResult)
171 strResult)
177 const IRemoteCommand & /*remoteCommand*/, string &strResult)
    [all...]

Completed in 67 milliseconds

1 2 3