Searched defs:hasSuffix (Results 1 - 2 of 2) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavacOption.java103 boolean hasSuffix; field in class:JavacOption.Option
119 hasSuffix = lastChar == ':' || lastChar == '=';
152 return argsNameKey != null && !hasSuffix;
156 if (!hasSuffix)
203 if (!hasSuffix)
247 if (hasSuffix)
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java132 boolean hasSuffix; field in class:Main.Option
139 hasSuffix = lastChar == ':' || lastChar == '=';
152 return argsNameKey != null && !hasSuffix;
159 return hasSuffix ? arg.startsWith(name) : arg.equals(name);
170 ((hasSuffix ? "" : " ") +
188 if (hasSuffix)
446 hasSuffix = true;
458 hasSuffix = true;

Completed in 62 milliseconds