| 1291 | } |
| 1292 | |
| 1293 | static bool StrMatch(const char16_t *src0, const char *src1, int len) |
| 1294 | { |
| 1295 | for(int i=0;i<len;i++) |
| 1296 | if (src0[i]!=src1[i]) |
| 1297 | return false; |
| 1298 | return true; |
| 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | int String::indexOf(const String &inValue, Dynamic inStart) const |
no outgoing calls
no test coverage detected