Searched refs:isSet (Results 26 - 40 of 40) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/util/
H A DJapaneseImperialCalendar.java1882 if (isSet(ERA)) {
1884 year = isSet(YEAR) ? internalGet(YEAR) : 1;
1886 if (isSet(YEAR)) {
2004 // No need to check if MONTH has been set (no isSet(MONTH)
2049 // set. If the isSet call returns false, that means
2053 if (isSet(DAY_OF_MONTH)) {
2369 return isSet(ERA) ? internalGet(ERA) : eras.length - 1;
H A DGregorianCalendar.java2597 int year = isSet(YEAR) ? internalGet(YEAR) : EPOCH_YEAR;
2611 if (year <= 0 && !isSet(ERA)) {
2785 // No need to check if MONTH has been set (no isSet(MONTH)
2808 // offset if DAY_OF_MONTH is set. If the isSet call
2813 if (isSet(DAY_OF_MONTH)) {
3164 return isSet(ERA) ? internalGet(ERA) : CE;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java118 options.isSet(G_CUSTOM, "lines");
121 ? options.isSet(G)
122 : options.isSet(G_CUSTOM, "vars");
123 genCrt = options.isSet(XJCOV);
124 debugCode = options.isSet("debugcode");
125 allowInvokedynamic = target.hasInvokedynamic() || options.isSet("invokedynamic");
129 options.isSet("miranda");
H A DClassReader.java275 verbose = options.isSet(VERBOSE);
276 checkClassFile = options.isSet("-checkclassfile");
282 saveParameterNames = options.isSet("save-parameter-names");
287 options.isSet("failcomplete")
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java385 private static final boolean isSet(int options, int flag) { method in class:Token
436 if (ch < 0x10000 && isSet(options, RegularExpression.IGNORE_CASE)) {
476 if (cha < 0x10000 && isSet(options, RegularExpression.IGNORE_CASE)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DJCDiagnostic.java74 if (options.isSet("onlySyntaxErrorsUnrecoverable"))
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DDatatypeConverterImpl.java825 if (cal.isSet(Calendar.MILLISECOND)) { // milliseconds
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java109 complexInference = options.isSet(COMPLEXINFERENCE);
110 skipAnnotations = options.isSet("skipAnnotations");
111 warnOnSyntheticConflicts = options.isSet("warnOnSyntheticConflicts");
112 suppressAbortOnBadClassFile = options.isSet("suppressAbortOnBadClassFile");
113 enableSunApiLintControl = options.isSet("enableSunApiLintControl");
H A DAttr.java125 relax = (options.isSet("-retrofit") ||
126 options.isSet("-relax"));
129 useBeforeDeclarationWarning = options.isSet("useBeforeDeclarationWarning");
H A DMemberEnter.java106 skipAnnotations = options.isSet("skipAnnotations");
H A DResolve.java114 debugResolve = options.isSet("debugresolve");
H A DLower.java110 debugLower = options.isSet("debuglower");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DUtility.java529 public static final boolean isSet(int flag, int i) { method in class:Utility
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java1087 public boolean isSet(DatatypeConstants.Field field) { method in class:DurationImpl
1090 String methodName = "javax.xml.datatype.Duration" + "#isSet(DatatypeConstants.Field field)" ;
1120 String methodName = "javax.xml.datatype.Duration" + "#isSet(DatatypeConstants.Field field)";
1155 String methodName = "javax.xml.datatype.Duration" + "#isSet(DatatypeConstants.Field field) " ;
1396 // * <li>!x.normalize().isSet(Duration.YEARS)
1397 // * <li>!x.normalize().isSet(Duration.DAYS)
1398 // * <li>!x.normalize().isSet(Duration.HOURS)
1399 // * <li>!x.normalize().isSet(Duration.MINUTES)
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDatatypeConverterImpl.java989 if (cal.isSet(Calendar.MILLISECOND)) { // milliseconds

Completed in 4245 milliseconds

12