OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:errorcontext
(Results
1 - 25
of
127
) sorted by null
1
2
3
4
5
6
/external/parameter-framework/upstream/parameter/
EnumValuePair.h
52
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;
CompoundRule.h
59
std::string logValue(utility::
ErrorContext
&
errorContext
) const override;
ParameterAccessContext.h
33
#include "
ErrorContext
.hpp"
38
class CParameterAccessContext : public utility::
ErrorContext
SelectionCriterionRule.h
78
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
InstanceConfigurableElement.h
117
utility::
ErrorContext
&
errorContext
);
InstanceConfigurableElement.cpp
204
utility::
ErrorContext
&
errorContext
)
211
errorContext
.setError("Path not found: " + pathNavigator.getCurrentPath());
EnumValuePair.cpp
70
string CEnumValuePair::logValue(utility::
ErrorContext
& /*ctx*/) const
ParameterAccessContext.cpp
32
#define base utility::
ErrorContext
CompoundRule.cpp
53
string CCompoundRule::logValue(utility::
ErrorContext
& /*ctx*/) const
ConfigurableElement.h
213
std::string logValue(utility::
ErrorContext
&
errorContext
) const override final;
ConfigurableDomain.h
161
std::string logValue(utility::
ErrorContext
&
errorContext
) const override;
SelectionCriterionRule.cpp
54
string CSelectionCriterionRule::logValue(utility::
ErrorContext
& /*cxt*/) const
/external/parameter-framework/upstream/utility/
ErrorContext.hpp
38
class
ErrorContext
: private NonCopyable
41
ErrorContext
(std::string &error) : mError(error) {}
CMakeLists.txt
48
ErrorContext
.hpp
/external/parameter-framework/upstream/xmlserializer/
XmlSerializingContext.h
32
#include "
ErrorContext
.hpp"
49
class CXmlSerializingContext : public utility::
ErrorContext
CMakeLists.txt
66
PUBLIC pfw_utility # For NonCopyable and
ErrorContext
XmlSerializingContext.cpp
35
: utility::
ErrorContext
(strError)
/prebuilts/go/darwin-x86/src/encoding/json/
decode.go
275
errorContext
struct { // provides context for type errors
293
d.
errorContext
.Struct = ""
294
d.
errorContext
.Field = ""
311
// addErrorContext returns a new error enhanced with information from d.
errorContext
313
if d.
errorContext
.Struct != "" || d.
errorContext
.Field != "" {
316
err.Struct = d.
errorContext
.Struct
317
err.Field = d.
errorContext
.Field
729
d.
errorContext
.Field = f.name
730
d.
errorContext
.Struct = v.Type().Name(
[
all
...]
/prebuilts/go/linux-x86/src/encoding/json/
decode.go
275
errorContext
struct { // provides context for type errors
293
d.
errorContext
.Struct = ""
294
d.
errorContext
.Field = ""
311
// addErrorContext returns a new error enhanced with information from d.
errorContext
313
if d.
errorContext
.Struct != "" || d.
errorContext
.Field != "" {
316
err.Struct = d.
errorContext
.Struct
317
err.Field = d.
errorContext
.Field
729
d.
errorContext
.Field = f.name
730
d.
errorContext
.Struct = v.Type().Name(
[
all
...]
/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)
/prebuilts/go/darwin-x86/src/text/template/parse/
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) {
parse_test.go
375
wantLocation, wantContext := tree.
ErrorContext
(tree.Root.Nodes[0])
376
gotLocation, gotContext := treeCopy.
ErrorContext
(treeCopy.Root.Nodes[0])
Completed in 1160 milliseconds
1
2
3
4
5
6