Lines Matching refs:cbInfo
4760 callBackContext cbInfo = {this, 0, 0, 0};
4766 matcher.setMatchCallback(testCallBackFn, &cbInfo, status);
4771 REGEX_ASSERT(returnedContext == &cbInfo);
4775 cbInfo.reset(1);
4780 REGEX_ASSERT(cbInfo.numCalls == 0);
4785 cbInfo.reset(4);
4790 REGEX_ASSERT(cbInfo.numCalls > 0);
4794 cbInfo.reset(4);
4799 REGEX_ASSERT(cbInfo.numCalls == 4);
4852 progressCallBackContext cbInfo = {this, 0, 0, 0};
4858 matcher.setFindProgressCallback(testProgressCallBackFn, &cbInfo, status);
4863 REGEX_ASSERT(returnedContext == &cbInfo);
4867 cbInfo.reset(100);
4875 REGEX_ASSERT(cbInfo.numCalls == 0);
4880 cbInfo.reset(s.length()); // Some upper limit for number of calls that is greater than size of our input string
4884 REGEX_ASSERT(cbInfo.numCalls > 0 && cbInfo.numCalls < 25);
4889 cbInfo.reset(s1.length() - 5); // Bail early somewhere near the end of input string
4893 REGEX_ASSERT(cbInfo.numCalls == s1.length() - 5);
4899 cbInfo.reset(s2.length() - 10); // Bail early somewhere near the end of input string
4904 cbInfo.maxCalls = 100; // No callback limit
4905 REGEX_ASSERT(matcher.find(cbInfo.lastIndex, status));