Searched refs:isSpaceOrTab (Results 1 – 7 of 7) sorted by relevance
31 import static com.github.javaparser.TokenTypes.isSpaceOrTab;61 } else if (isSpaceOrTab(tokenType)) { in CsmToken()
48 public abstract boolean isSpaceOrTab(); in isSpaceOrTab() method in TextElement
86 public boolean isSpaceOrTab() { in isSpaceOrTab() method in ChildTextElement
97 public boolean isSpaceOrTab() { in isSpaceOrTab() method in TokenTextElement
464 if (!nodeText.getElements().get(i).isSpaceOrTab()) { in considerEnforcingIndentation()556 while (nodeText.getElements().get(nodeTextIndex).isSpaceOrTab()) { in apply()628 …ION_SIZE && nodeTextIndex >= 1 && nodeText.getTextElement(nodeTextIndex - 1).isSpaceOrTab(); i++) { in apply()836 …Index<nodeText.getElements().size()) && nodeText.getElements().get(nodeTextIndex).isSpaceOrTab()) { in adjustIndentation()
447 if (!followingNewlines.get(i).isSpaceOrTab()) {
30 public static boolean isSpaceOrTab(int kind) { in isSpaceOrTab() method in TokenTypes