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

/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DCaretManager.java54 if (idx < 0 || idx > breaker.getCharCount()) {
68 if (idx >= 0 && idx < breaker.getCharCount()) {
76 return breaker.isLTR() ? 0: breaker.getCharCount();
78 return breaker.isLTR() ? breaker.getCharCount() : 0;
90 if (!(first || visual == breaker.getCharCount())) {
98 TextHitInfo.leading(breaker.getCharCount());
101 TextHitInfo.leading(breaker.getCharCount()) :
120 if (visual < breaker.getCharCount()) {
151 if (visual == breaker.getCharCount()) {
157 while(visual <= breaker.getCharCount()) {
[all...]
H A DTextRunBreaker.java669 public int getCharCount() { method in class:TextRunBreaker
/frameworks/base/awt/java/awt/font/
H A DTextLayout.java494 if (offset < 0 || offset > breaker.getCharCount()) {
509 return breaker.getCharCount();
605 if (secondEndpoint < 0 || firstEndpoint > breaker.getCharCount()) {
612 if (firstEndpoint < 0 || secondEndpoint > breaker.getCharCount()) {
672 if (offset < 0 || offset > breaker.getCharCount()) {
727 if (offset < 0 || offset > breaker.getCharCount()) {
897 return breaker.isLTR() ? TextHitInfo.trailing(breaker.getCharCount() - 1) : TextHitInfo
903 .getCharCount() - 1);

Completed in 63 milliseconds