Home | History | Annotate | Download | only in images

Lines Matching refs:pattern

873 //			Find first occurance of a pattern string in a page
876 // pattern - A zero-terminated unicode string to be found.
890 FPDFEMB_RESULT FPDFEMB_FindFirst(FPDFEMB_PAGE page, const FPDFEMB_WCHAR* pattern,
894 // Find first occurance of a pattern string in a page, from a particular position
897 // pattern - A zero-terminated unicode string to be found.
909 FPDFEMB_RESULT FPDFEMB_FindFrom(FPDFEMB_PAGE page, const FPDFEMB_WCHAR* pattern,
969 // Search a pattern in a page quickly, without the page to be parsed
973 // pattern - A zero-terminated unicode string to be found.
976 // FPDFERR_SUCCESS if pattern found, FPDFERR_NOTFOUND if pattern not found.
980 // The quick search will not generate an exact result saying where the pattern is
981 // found, and, it might be possible if a quick search result is "pattern found", and
982 // a real search for the same pattern, in the same page, will result in "not found".
984 // However, if quick search doesn't find a pattern in a page, then we can be sure the
985 // pattern won't be found in this page when we do a real search. So, this function is
987 // those pages in which the pattern can't possibly be found.
990 const FPDFEMB_WCHAR* pattern, int case_sensitive);