Home
last modified time | relevance | path

Searched refs:ooffset (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/ability/ability_base/test/unittest/want/
H A Dskills_test.cpp1122 int ooffset = -2; variable
1124 bool result = base_->RegionMatches(type, toffset, other, ooffset, len);
1139 int ooffset = 2; variable
1141 bool result = base_->RegionMatches(type, toffset, other, ooffset, len);
1145 bool result1 = base_->RegionMatches(type, toffset, other, ooffset, len1);
1160 int ooffset = -2; variable
1162 bool result = base_->RegionMatches(type, toffset, other, ooffset, len);
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/src/
H A Dskills.cpp840 …RegionMatches(const std::string &type, int toffset, const std::string &other, int ooffset, int len) in RegionMatches() argument
843 int po = ooffset; in RegionMatches()
845 if ((ooffset < 0) || (toffset < 0) || (toffset > (long)type.size() - len) || in RegionMatches()
846 (ooffset > (long)other.length() - len)) { in RegionMatches()
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/include/
H A Dskills.h492 …bool RegionMatches(const std::string &type, int toffset, const std::string &other, int ooffset, in…