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

/external/webkit/Source/WebCore/editing/
H A Dvisible_units.cpp51 typedef unsigned (*BoundarySearchFunction)(const UChar*, unsigned length, unsigned offset, BoundarySearchContextAvailability, bool& needMoreContext);
96 bool needMoreContext = false; local
107 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, MayHaveMoreContext, needMoreContext);
112 if (needMoreContext) {
115 next = searchFunction(string.data(), string.size(), string.size() - suffixLength, DontHaveMoreContext, needMoreContext);
116 ASSERT(!needMoreContext);
170 bool needMoreContext = false; local
182 next = searchFunction(string.data(), string.size(), prefixLength, MayHaveMoreContext, needMoreContext);
187 if (needMoreContext) {
190 next = searchFunction(string.data(), string.size(), prefixLength, DontHaveMoreContext, needMoreContext);
225 startWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
255 endWordBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
284 previousWordPositionBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
300 nextWordPositionBoundary(const UChar* characters, unsigned length, unsigned offset, BoundarySearchContextAvailability mayHaveMoreContext, bool& needMoreContext) argument
[all...]

Completed in 42 milliseconds