Home | History | Annotate | Download | only in impl

Lines Matching defs:currentValue

203         int currentValue    = m_nextValue_;
207 if (!checkBlockDetail(currentValue)) {
209 currentValue);
231 if (!checkBlock(currentValue)) {
233 currentValue);
261 int currentValue = m_nextValue_;
269 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
271 currentValue);
278 if (!checkTrailBlock(currentValue)) {
280 currentValue);
294 if (currentValue != m_initialValue_) {
299 currentValue);
323 if (currentValue != m_initialValue_) {
328 currentValue);
335 if (!checkTrailBlock(currentValue)) {
337 currentValue);
347 currentValue);
358 * @param currentValue the value which other codepoints are tested against
359 * @return true if the whole block has the same value as currentValue or if
362 private final boolean checkBlockDetail(int currentValue)
367 if (m_nextValue_ != currentValue) {
383 * @param currentBlock the initial block containing all currentValue
384 * @param currentValue the value which other codepoints are tested against
385 * @return true if the whole block has the same value as currentValue or if
388 private final boolean checkBlock(int currentValue)
396 // currentValue
401 if (currentValue != m_initialValue_) {
409 if (!checkBlockDetail(currentValue)) {
423 * @param currentValue the value which other codepoints are tested against
424 * @return true if the whole block has the same value as currentValue or if
427 private final boolean checkTrailBlock(int currentValue)
435 if (!checkBlock(currentValue)) {