Searched defs:needMoreContext (Results 1 - 1 of 1) sorted by relevance

/external/webkit/WebCore/editing/
H A Dvisible_units.cpp72 typedef unsigned (*BoundarySearchFunction)(const UChar*, unsigned length, unsigned offset, BoundarySearchContextAvailability, bool& needMoreContext);
126 bool needMoreContext = false; local
137 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, MayHaveMoreContext, needMoreContext);
142 if (needMoreContext) {
145 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, DontHaveMoreContext, needMoreContext);
146 ASSERT(!needMoreContext);
212 bool needMoreContext = false; local
224 next = searchFunction(string.data(), string.size(), prefixLength, MayHaveMoreContext, needMoreContext);
229 if (needMoreContext) {
232 next = searchFunction(string.data(), string.size(), prefixLength, DontHaveMoreContext, needMoreContext);
258 startWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
288 endWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
317 previousWordPositionBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
333 nextWordPositionBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
[all...]

Completed in 12 milliseconds