/external/parameter-framework/upstream/utility/ |
ErrorContext.hpp | 38 class ErrorContext : private NonCopyable 41 ErrorContext(std::string &error) : mError(error) {}
|
/external/parameter-framework/upstream/parameter/ |
EnumValuePair.h | 52 std::string logValue(utility::ErrorContext &errorContext) const override;
|
CompoundRule.h | 59 std::string logValue(utility::ErrorContext &errorContext) const override;
|
Element.h | 45 class ErrorContext; 129 std::string dumpContent(utility::ErrorContext &errorContext, const size_t depth = 0) const; 158 virtual std::string logValue(utility::ErrorContext &errorContext) const;
|
EnumValuePair.cpp | 70 string CEnumValuePair::logValue(utility::ErrorContext & /*ctx*/) const
|
ParameterAccessContext.h | 33 #include "ErrorContext.hpp" 38 class CParameterAccessContext : public utility::ErrorContext
|
SelectionCriterionRule.h | 78 std::string logValue(utility::ErrorContext &errorContext) const override;
|
CompoundRule.cpp | 53 string CCompoundRule::logValue(utility::ErrorContext & /*ctx*/) const
|
InstanceConfigurableElement.h | 117 utility::ErrorContext &errorContext);
|
ParameterAccessContext.cpp | 32 #define base utility::ErrorContext
|
ConfigurableElement.h | 213 std::string logValue(utility::ErrorContext &errorContext) const override final;
|
InstanceConfigurableElement.cpp | 204 utility::ErrorContext &errorContext) 211 errorContext.setError("Path not found: " + pathNavigator.getCurrentPath());
|
SelectionCriterionRule.cpp | 54 string CSelectionCriterionRule::logValue(utility::ErrorContext & /*cxt*/) const
|
ConfigurableDomain.h | 161 std::string logValue(utility::ErrorContext &errorContext) const override;
|
Element.cpp | 33 #include "ErrorContext.hpp" 83 string CElement::dumpContent(utility::ErrorContext &errorContext, const size_t depth) const 105 string strValue = logValue(errorContext); 116 output += pChild->dumpContent(errorContext, depth + 1); 137 string CElement::logValue(utility::ErrorContext & /*ctx*/) const
|
ConfigurableElement.cpp | 316 std::string CConfigurableElement::logValue(utility::ErrorContext &context) const
|
ConfigurableDomain.cpp | 83 string CConfigurableDomain::logValue(utility::ErrorContext & /*ctx*/) const [all...] |
/external/parameter-framework/upstream/xmlserializer/ |
XmlSerializingContext.h | 32 #include "ErrorContext.hpp" 49 class CXmlSerializingContext : public utility::ErrorContext
|
XmlSerializingContext.cpp | 35 : utility::ErrorContext(strError)
|
/prebuilts/go/darwin-x86/src/text/template/parse/ |
parse_test.go | 375 wantLocation, wantContext := tree.ErrorContext(tree.Root.Nodes[0]) 376 gotLocation, gotContext := treeCopy.ErrorContext(treeCopy.Root.Nodes[0])
|
parse.go | 132 // ErrorContext returns a textual representation of the location of the node in the input text. 135 func (t *Tree) ErrorContext(n Node) (location, context string) {
|
/prebuilts/go/linux-x86/src/text/template/parse/ |
parse_test.go | 375 wantLocation, wantContext := tree.ErrorContext(tree.Root.Nodes[0]) 376 gotLocation, gotContext := treeCopy.ErrorContext(treeCopy.Root.Nodes[0])
|
parse.go | 132 // ErrorContext returns a textual representation of the location of the node in the input text. 135 func (t *Tree) ErrorContext(n Node) (location, context string) {
|
/prebuilts/go/darwin-x86/src/html/template/ |
error.go | 219 loc, _ := (*parse.Tree)(nil).ErrorContext(e.Node)
|
/prebuilts/go/linux-x86/src/html/template/ |
error.go | 219 loc, _ := (*parse.Tree)(nil).ErrorContext(e.Node)
|