| 545 | } |
| 546 | |
| 547 | bool process(const UCHAR* str, SLONG length) |
| 548 | { |
| 549 | StrConverter cvt(pool, textType, str, length); |
| 550 | fb_assert(length % sizeof(CharType) == 0); |
| 551 | return evaluator.processNextChunk( |
| 552 | reinterpret_cast<const CharType*>(str), length / sizeof(CharType)); |
| 553 | } |
| 554 | |
| 555 | static ContainsMatcher* create(MemoryPool& pool, TextType* ttype, const UCHAR* str, SLONG length) |
| 556 | { |
nothing calls this directly
no test coverage detected