Searched refs:excess (Results 1 - 12 of 12) sorted by relevance

/openjdk9/langtools/test/tools/javac/tree/
H A DJavacTreeScannerTest.java112 Set<JCTree> excess = new HashSet<JCTree>();
113 excess.addAll(found);
114 excess.removeAll(expect);
115 for (JCTree t: excess)
H A DSourceTreeScannerTest.java115 Set<Tree> excess = new HashSet<Tree>();
116 excess.addAll(found);
117 excess.removeAll(expect);
118 for (Tree t: excess)
/openjdk9/jdk/src/java.base/share/classes/java/io/
H A DFile.java1917 private static int shortenSubName(int subNameLength, int excess, argument
1919 int newLength = Math.max(nameMin, subNameLength - excess);
1940 int excess = prefixLength + nusLength + suffixLength - nameMax;
1941 if (excess <= 0) {
1947 prefixLength = shortenSubName(prefixLength, excess, 3);
1948 excess = prefixLength + nusLength + suffixLength - nameMax;
1950 if (excess > 0) {
1953 suffixLength = shortenSubName(suffixLength, excess,
1955 suffixLength = shortenSubName(suffixLength, excess, 3);
1956 excess
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/text/
H A DMergeCollation.java214 private transient StringBuffer excess = new StringBuffer(); field in class:MergeCollation
280 excess.setLength(0);
281 int lastIndex = findLastEntry(lastEntry, excess);
283 if (excess.length() != 0) {
284 newEntry.extension = excess + newEntry.extension;
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/common/
H A DUtils.java334 int excess = src.remaining() - amount;
335 assert excess >= 0;
336 if (excess > 0) {
338 src.limit(srclimit - excess);
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-shape-complex-arabic.cc546 hb_position_t excess = (n_copies + 1) * sign * w_repeating - sign * w_remaining; local
547 if (excess > 0)
548 extra_repeat_overlap = excess / (n_copies * n_repeating);
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java520 long excess = oldEntries - newEntries;
523 newGroups[groups.length] = (int) excess;
/openjdk9/jdk/src/java.base/share/classes/java/lang/invoke/
H A DMemberName.java987 int excess = bufCount - buf.length;
991 len2 = Math.max(len2, excess);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/
H A Djquery-1.10.2.js1984 var excess,
1995 // Strip excess characters from unquoted arguments
1997 // Get excess from tokenize (recursively)
1998 (excess = tokenize( unquoted, true )) &&
2000 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
2002 // excess is a negative index
2003 match[0] = match[0].slice( 0, excess );
2004 match[2] = unquoted.slice( 0, excess );
2454 // Return the length of the invalid excess
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/external/jquery/
H A Djquery.js1984 var excess,
1995 // Strip excess characters from unquoted arguments
1997 // Get excess from tokenize (recursively)
1998 (excess = tokenize( unquoted, true )) &&
2000 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
2002 // excess is a negative index
2003 match[0] = match[0].slice( 0, excess );
2004 match[2] = unquoted.slice( 0, excess );
2454 // Return the length of the invalid excess
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/
H A Djquery-1.10.2.js1984 var excess,
1995 // Strip excess characters from unquoted arguments
1997 // Get excess from tokenize (recursively)
1998 (excess = tokenize( unquoted, true )) &&
2000 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
2002 // excess is a negative index
2003 match[0] = match[0].slice( 0, excess );
2004 match[2] = unquoted.slice( 0, excess );
2454 // Return the length of the invalid excess
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/external/jquery/
H A Djquery.js1984 var excess,
1995 // Strip excess characters from unquoted arguments
1997 // Get excess from tokenize (recursively)
1998 (excess = tokenize( unquoted, true )) &&
2000 (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) {
2002 // excess is a negative index
2003 match[0] = match[0].slice( 0, excess );
2004 match[2] = unquoted.slice( 0, excess );
2454 // Return the length of the invalid excess
[all...]

Completed in 124 milliseconds