Home | History | Annotate | Download | only in editors

Lines Matching refs:balance

52  *        by considering the tag and bracket balance on the current line and using it
103 Pair<Integer,Integer> balance = getBalance(doc, textStart, offset);
104 int tagBalance = balance.getFirst();
105 int bracketBalance = balance.getSecond();
112 // We only care if tag or bracket balance is greater than 0;
390 * Returns a pair of (tag-balance,bracket-balance) for the range textStart to offset.
395 * @return the balance of tags and brackets
399 // Balance of open and closing tags
402 // Balance of open and closing brackets