ESP-IDF
ot::
::Match()
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::
::Match()
ot::
::Match() function
Syntax
Show:
Summary
Declaration
from
string.cpp:53
MatchType
Match
(
const
char
*
aString
,
const
char
*
aPrefixString
,
StringMatchMode
aMode
)
;
Arguments
Argument
aString
aPrefixString
aMode
Examples
References
from
examples
Code
Location
Referrer
MatchType
Match
(
const
char
*
aString
,
const
char
*
aPrefixString
,
StringMatchMode
aMode
)
string.cpp:53
if
(
Match
(
&
aString
[
index
]
,
aSubString
,
aMode
)
!=
kNoMatch
)
string.cpp:131
ot::StringFind()
return
Match
(
aString
,
aPrefixString
,
aMode
)
!=
kNoMatch
;
string.cpp:143
ot::StringStartsWith()
return
(
subLen
>
0
)
&&
(
len
>=
subLen
)
&&
(
Match
(
&
aString
[
len
-
subLen
]
,
aSubString
,
aMode
)
!=
kNoMatch
)
;
string.cpp:158
ot::StringEndsWith()
return
Match
(
aFirstString
,
aSecondString
,
kStringExactMatch
)
==
kFullMatch
;
string.cpp:163
ot::StringMatch()
return
Match
(
aFirstString
,
aSecondString
,
aMode
)
==
kFullMatch
;
string.cpp:168
ot::StringMatch()
Call Tree
from
examples
ot::
::Match()
is called by 4 functions and calls 1 function:
ot::StringFind()
ot::StringStartsWith()
ot::StringEndsWith()
ot::StringMatch()
All items filtered out
ot::
::Match()
ot::ToLowercase()
All items filtered out
Data Use
from
examples
ot::
::Match()
reads 6 variables:
ot::StringMatchMode::kStringExactMatch
ot::StringMatchMode::kStringCaseInsensitiveMatch
ot::kNullChar
ot::
::MatchType::kNoMatch
ot::
::MatchType::kPrefixMatch
ot::
::MatchType::kFullMatch
All items filtered out
ot::
::Match()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out