Searched refs:exact (Results 1 - 18 of 18) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/wildcards/
H A DAssignmentSameType1.java34 Ref<B> exact = null;
39 ; exact = exact; // <<pass>> <A> = <A>
41 ebound = exact; // <<pass>> <? extends A> = <A>
44 sbound = exact; // <<pass>> <? super A> = <A>
47 unbound = exact; // <<pass>> <?> = <A>
H A DAssignmentSameType2.java34 Ref<B> exact = null;
39 exact = ebound; // <<fail>> <A> = <? extends A>
H A DAssignmentSameType3.java34 Ref<B> exact = null;
39 exact = sbound; // <<fail>> <A> = <? super A>
H A DAssignmentSameType4.java34 Ref<B> exact = null;
39 exact = unbound; // <<fail>> <A> = <?>
H A DAssignmentSameType5.java34 Ref<B> exact = null;
H A DAssignmentSameType6.java34 Ref<B> exact = null;
H A DAssignmentSameType7.java34 Ref<B> exact = null;
H A DAssignmentSameType8.java34 Ref<B> exact = null;
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java54 synchronized HttpContextImpl findContext (String protocol, String path, boolean exact) { argument
63 if (exact && !cpath.equals (path)) {
65 } else if (!exact && !path.startsWith(cpath)) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexpPool.java106 && (!p.exact || i == len)) {
124 // delete only if there is an exact match
173 boolean exact = false;
177 exact = true;
181 p.exact = exact;
203 && (!p.exact || i == len)) {
266 boolean exact; field in class:RegexpNode
H A DRegexp.java44 public boolean exact; field in class:Regexp
65 exact = true; // no * s
108 if (exact)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DByteArrayAttachment.java78 // if our buffer isn't exact, switch to the exact one
79 byte[] exact = new byte[len];
80 System.arraycopy(data,start,exact,0,len);
82 data = exact;
/openjdk7/jdk/test/com/sun/jdi/
H A DEvalArgs.sh251 # because there is an exact match.
268 # isn't an exact match and jdb isn't smart enough
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DValueConversions.java264 // be exact, since return casts are hard to compose
272 private static MethodHandle box(Wrapper wrap, boolean exact) { argument
273 EnumMap<Wrapper, MethodHandle> cache = BOX_CONVERSIONS[(exact?1:0)];
293 if (exact) {
300 mh = box(wrap, !exact).asType(type.erase());
307 + wrap + (exact ? " (exact)" : ""));
311 boolean exact = false;
312 // e.g., boxShort(short)Short if exact,
313 // e.g., boxShort(short)Object if !exact
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_colors.c163 no_close_color(float l, float u, float v, int c_tot, int exact) { argument
171 if (dist < (exact ? 0.1 : DIST_THRESHOLD))
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp594 ciType* exact = obj->exact_type(); local
595 if (exact != NULL && exact->is_loaded() && (obj->as_NewInstance() || obj->as_NewArray())) {
596 set_constant(exact->is_subtype_of(x->klass()) ? 1 : 0);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.cpp129 return mid; // exact match
1226 assert(num_notes == 0, "exact multiple, please");
1350 // Also, make sure exact and non-exact variants alias the same.
1373 // Also, make sure exact and non-exact variants alias the same.
1407 // to assume the worst case of an Object. Both exact and
1585 // Scalarizable allocations have exact klass always.
1586 bool exact = !foop->klass_is_exact() || foop->is_known_instance(); local
1587 const TypePtr* xoop = foop->cast_to_exactness(exact)
[all...]
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec2279 "Matches are limited to exact matches of the "
2299 "Matches are limited to exact matches of the "
2384 "Matches are limited to exact matches of the "

Completed in 86 milliseconds