Home | History | Annotate | Download | only in latin

Lines Matching defs:Position

368      * @return the position of the character if it's there, or CHARACTER_NOT_FOUND = -1 else.
531 private static class Position {
534 public Position(ArrayList<CharGroup> groups) {
540 final LinkedList<Position> mPositions;
544 mPositions = new LinkedList<Position>();
545 final Position rootPos = new Position(root);
551 for (Position p : mPositions) {
561 Position currentPos = mPositions.getLast();
571 currentPos = new Position(currentGroup.mChildren.mData);