HomeSort by relevance Sort by last modified time
    Searched full:tagbalance (Results 1 - 2 of 2) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlCharacterMatcher.java 147 int tagBalance = 0;
169 tagBalance--;
171 if (tagBalance == targetTagBalance) {
175 tagBalance++;
200 int tagBalance = 0;
217 tagBalance++;
219 tagBalance--;
220 if (tagBalance == targetTagBalance) {
224 tagBalance--;
225 if (tagBalance == targetTagBalance)
    [all...]
AndroidXmlAutoEditStrategy.java 104 int tagBalance = balance.getFirst();
144 } else if (tagBalance > 0 || bracketBalance > 0) {
168 if (tagBalance > 0 && bracketBalance < 0) {
400 // <foo></foo> has tagBalance = 0, <foo> has tagBalance = 1
401 int tagBalance = 0;
427 tagBalance++;
429 tagBalance--;
443 return Pair.of(tagBalance, bracketBalance);

Completed in 177 milliseconds