HomeSort by relevance Sort by last modified time
    Searched refs:charIdx (Results 1 - 5 of 5) sorted by null

  /frameworks/base/awt/java/awt/font/
TextHitInfo.java 42 private int charIdx; // Represents character index in the line
58 charIdx = idx;
69 return new String("TextHitInfo[" + charIdx + ", " + //$NON-NLS-1$ //$NON-NLS-2$
99 return thi != null && thi.charIdx == charIdx && thi.isTrailing == isTrailing;
111 return new TextHitInfo(charIdx + offset, isTrailing);
120 return isTrailing ? new TextHitInfo(charIdx + 1, false)
121 : new TextHitInfo(charIdx - 1, true);
142 return HashCode.combine(charIdx, isTrailing);
152 return isTrailing ? charIdx + 1 : charIdx
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
CaretManager.java 326 int charIdx = hitInfo.getCharIndex();
328 if (charIdx >= 0 && charIdx < breaker.getCharCount()) {
329 TextRunSegment segment = breaker.runSegments.get(breaker.logical2segment[charIdx]);
333 x1 = x2 = segment.getCharPosition(charIdx) + (hitInfo.isLeadingEdge() ?
334 0 : segment.getCharAdvance(charIdx));
355 x1 = x2 = ((breaker.getBaseLevel() & 0x1) == 0 ^ charIdx < 0) ?
TextRunSegmentImpl.java 460 int charIdx = getGlyphVector().getGlyphCharIndex(glyphIdx);
463 TextHitInfo.leading(charIdx + info.start) :
464 TextHitInfo.trailing(charIdx + info.start);
    [all...]
  /external/icu4c/test/intltest/
rbbitst.cpp     [all...]
  /development/simulator/app/
DeviceManager.cpp 713 int charIdx;
715 charIdx = runtimeExe.Find('/', true);
716 if (charIdx == -1) {
719 launchWrapperExe = runtimeExe.Mid(0, charIdx+1);
    [all...]

Completed in 94 milliseconds