Searched defs:exact (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DRegexp.java44 public boolean exact; field in class:Regexp
65 exact = true; // no * s
108 if (exact)
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
/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/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/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/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/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...]

Completed in 49 milliseconds