Searched defs:intersection (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.cpp32 MemRegion MemRegion::intersection(const MemRegion mr2) const { function in class:MemRegion
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DTypeSet.java49 * Calculate the TypeSet formed by the intersection of two
54 * @return the intersection of a and b
56 public static TypeSet intersection(final TypeSet a, final TypeSet b) { method in class:TypeSet
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltSets.java118 * The set:intersection function returns a node set comprising the nodes that are within
128 public static NodeList intersection(NodeList nl1, NodeList nl2) method in class:ExsltSets
H A DExtensions.java138 * Returns the intersection of two node-sets.
148 public static NodeList intersection(NodeList nl1, NodeList nl2) method in class:Extensions
150 return ExsltSets.intersection(nl1, nl2);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DMemRegion.java86 public MemRegion intersection(MemRegion mr2) { method in class:MemRegion
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DCMStateSet.java145 public final void intersection(CMStateSet setToAnd) method in class:CMStateSet
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java47 * operations such as union and intersection can be performed.) The
506 * Returns the intersection of two CharSets.
508 public CharSet intersection(CharSet that) { method in class:CharSet
520 * The internal implementation of the two intersection functions
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.cpp84 // Is there an intersection with the address space?
85 MemRegion intersection = last_setup_region().intersection(mr); local
86 if (intersection.is_empty()) {
87 intersection = MemRegion(mr.end(), mr.end());
91 if (mr.start() <= intersection.start()) {
92 head_size = pointer_delta(intersection.start(), mr.start());
94 if(intersection.end() <= mr.end()) {
95 tail_size = pointer_delta(mr.end(), intersection.end());
106 head = MemRegion(intersection
[all...]
H A DmutableNUMASpace.cpp232 // Compute lgrp intersection. Add/remove spaces.
463 // |----bottom_region--|---intersection---|------top_region------|
464 void MutableNUMASpace::select_tails(MemRegion new_region, MemRegion intersection, argument
467 if (new_region.start() < intersection.start()) { // Yes
470 HeapWord* p = (HeapWord*)round_to((intptr_t) intersection.start(), alignment());
473 if (intersection.contains(p)) {
474 intersection = MemRegion(p, intersection.end());
476 intersection = MemRegion(p, p);
480 *bottom_region = MemRegion(new_region.start(), intersection
512 merge_regions(MemRegion new_region, MemRegion* intersection, MemRegion *invalid_region) argument
585 MemRegion intersection = new_region.intersection(old_region); local
660 MemRegion intersection = old_region.intersection(new_region); local
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java384 // The intersection with the "maximal integer rectangle"
776 * their intersection is nonempty.
807 * Computes the intersection of this <code>Rectangle</code> with the
809 * that represents the intersection of the two rectangles.
819 public Rectangle intersection(Rectangle r) { method in class:Rectangle
1164 return intersection((Rectangle) r);
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java138 * <td headers="matches"><tt>d</tt>, <tt>e</tt>, or <tt>f</tt> (intersection)</tr>
392 * may be composed by the union operator (implicit) and the intersection
395 * in at least one of its operand classes. The intersection operator
711 * <li><p> Character-class union and intersection as described
2482 prev = intersection(prev, node);
5155 * Returns the set intersection of two CharProperty nodes.
5157 private static CharProperty intersection(final CharProperty lhs, method in class:Pattern
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java1065 void intersection(Rectangle r1, Rectangle r2, Rectangle r3) { method in class:OSXSurfaceData
1110 intersection(srcCopyAreaRect, copyAreaBounds, srcCopyAreaRect);
1118 intersection(dstCopyAreaRect, copyAreaBounds, dstCopyAreaRect);

Completed in 105 milliseconds