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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSWildcardDecl.java424 String[] intersect2sets(String[] one, String[] theOther){ argument
425 String[] result = new String[Math.min(one.length,theOther.length)];
430 if (elementInSet(one[i], theOther))
440 String[] union2sets(String[] one, String[] theOther){ argument
446 if (!elementInSet(one[i], theOther))
450 String[] result2 = new String[count+theOther.length];
452 System.arraycopy(theOther, 0, result2, count, theOther.length);

Completed in 244 milliseconds