/openjdk7/jdk/test/java/util/Formatter/ |
H A D | BasicDateTime.java | 144 private static void testDateTime(String fs, String exp, Calendar c, boolean upper) { argument 173 if (upper) 174 // repeat all tests for upper case variant (%T)
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/ |
H A D | BoundaryStatisticImpl.java | 48 public BoundaryStatisticImpl(long lower, long upper, String name, argument 52 upperBound = upper;
|
H A D | BoundedRangeStatisticImpl.java | 69 long upper, long lower, String name, 79 upperBound = upper; 80 initUpperBound = upper; 68 BoundedRangeStatisticImpl(long curVal, long highMark, long lowMark, long upper, long lower, String name, String unit, String desc, long startTime, long sampleTime) argument
|
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | ConditionalSpecialCasing.java | 439 char [] upper; field in class:ConditionalSpecialCasing.Entry 443 Entry(int ch, char[] lower, char[] upper, String lang, int condition) { argument 446 this.upper = upper; 460 return upper;
|
/openjdk7/langtools/test/tools/javac/types/ |
H A D | TypeHarness.java | 321 public CapturedType CapturedVariable(Type upper, Type lower) { argument 322 return new CapturedType(syntheticName(), predef.noSymbol, upper, lower, null);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | loopPredicate.cpp | 648 Node* range, bool upper) { 657 if ((stride_con > 0) == (scale > 0) == upper) { 843 // Build if's for the upper and lower bound tests. The 844 // lower_bound test will dominate the upper bound test and all 867 // Test the upper bound 872 if (TraceLoopPredicate) tty->print_cr("upper bound check if: %d", lower_bound_iff->_idx); 875 // any dependent nodes onto the upper bound test. 645 rc_predicate(IdealLoopTree *loop, Node* ctrl, int scale, Node* offset, Node* init, Node* limit, Node* stride, Node* range, bool upper) argument
|
/openjdk7/jdk/src/share/classes/sun/tools/jar/ |
H A D | Main.java | 502 * argument must contain only upper-case ASCII characters. 506 private boolean equalsIgnoreCase(String s, String upper) { argument 507 assert upper.toUpperCase(java.util.Locale.ENGLISH).equals(upper); 509 if ((len = s.length()) != upper.length()) 513 char c2 = upper.charAt(i);
|
/openjdk7/hotspot/src/share/vm/adlc/ |
H A D | archDesc.cpp | 36 char *upper = new char[strlen(str)+1]; local 37 char *result = upper; 39 for (; str < end; ++str, ++upper) { 40 *upper = toUpper(*str); 42 *upper = '\0';
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Type.java | 997 /** The upper bound of this type variable; set from outside. 1057 * both upper and lower bound. CapturedType extends TypeVar with 1066 Type upper, 1071 this.bound = upper; 1154 * upper bound constraint (a type variable must be instantiated 1064 CapturedType(Name name, Symbol owner, Type upper, Type lower, WildcardType wildcard) argument
|
/openjdk7/jdk/src/share/classes/java/util/regex/ |
H A D | Pattern.java | 170 * <td headers="matches">An upper-case alphabetic character:<tt>[A-Z]</tt></td></tr> 3290 int lower, upper; 3292 upper = Character.toUpperCase(ch); 3293 lower = Character.toLowerCase(upper); 3294 if (upper != lower) 3298 upper = ASCII.toUpper(ch); 3299 if (lower != upper) 3300 return new SingleI(lower, upper); 3751 final int upper; field in class:Pattern.SingleI 3752 SingleI(int lower, int upper) { argument 3998 inRange(int lower, int ch, int upper) argument 4005 rangeFor(final int lower, final int upper) argument 4016 caseInsensitiveRangeFor(final int lower, final int upper) argument 5467 defRange(String name, final int lower, final int upper) argument [all...] |
/openjdk7/hotspot/src/share/vm/code/ |
H A D | nmethod.cpp | 1942 PcDesc* upper = nm->scopes_pcs_end(); local 1945 for (PcDesc* p = lower; p < upper; p++) { 1981 PcDesc* upper = scopes_pcs_end(); local 1982 upper -= 1; // exclude final sentinel 1983 if (lower >= upper) return NULL; // native method; no PcDescs at all 1986 /* invariant on lower..upper during the following search: */ \ 1988 assert(upper->pc_offset() >= pc_offset, "sanity") 1997 upper = mid; 2004 while ((mid = lower + step) < upper) { 2010 upper [all...] |
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | gtk2_interface.h | 489 gdouble upper; member in struct:_GtkAdjustment
|