Home | History | Annotate | Download | only in impl

Lines Matching refs:currentValue

204         int currentValue    = m_nextValue_;
208 if (!checkBlockDetail(currentValue)) {
210 currentValue);
232 if (!checkBlock(currentValue)) {
234 currentValue);
262 int currentValue = m_nextValue_;
270 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
272 currentValue);
279 if (!checkTrailBlock(currentValue)) {
281 currentValue);
295 if (currentValue != m_initialValue_) {
300 currentValue);
324 if (currentValue != m_initialValue_) {
329 currentValue);
336 if (!checkTrailBlock(currentValue)) {
338 currentValue);
348 currentValue);
359 * @param currentValue the value which other codepoints are tested against
360 * @return true if the whole block has the same value as currentValue or if
363 private final boolean checkBlockDetail(int currentValue)
368 if (m_nextValue_ != currentValue) {
384 * @param currentBlock the initial block containing all currentValue
385 * @param currentValue the value which other codepoints are tested against
386 * @return true if the whole block has the same value as currentValue or if
389 private final boolean checkBlock(int currentValue)
397 // currentValue
402 if (currentValue != m_initialValue_) {
410 if (!checkBlockDetail(currentValue)) {
424 * @param currentValue the value which other codepoints are tested against
425 * @return true if the whole block has the same value as currentValue or if
428 private final boolean checkTrailBlock(int currentValue)
436 if (!checkBlock(currentValue)) {