Lines Matching refs:Flag
33 * Flag class is a helper class for constructing a VMOption.
34 * It has the static methods for getting the Flag objects, each
38 class Flag {
45 Flag(String name, Object value, boolean writeable,
70 static Flag getFlag(String name) {
74 List<Flag> flags = getFlags(names, 1);
83 static List<Flag> getAllFlags() {
90 private static List<Flag> getFlags(String[] names, int numFlags) {
91 Flag[] flags = new Flag[numFlags];
94 List<Flag> result = new ArrayList<Flag>();
95 for (Flag f : flags) {
105 // with a Flag object only if the name is valid and the
107 private static native int getFlags(String[] names, Flag[] flags, int count);