Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for nextImpl (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.io.IOException; public int nextTag() throws XmlPullParserExcepti, java.io.IOException; public int next() throws XmlPullParserExcepti, java.io.IOException; public int nextToken() throws XmlPullParserExcepti, java.io.IOException; protected int nextImpl() throws XmlPullParserExcepti, java.io.IOException; protected int parseProlog() throws XmlPullParserExcepti, java.io.IOException; protected int parseEpilog() throws XmlPullParserExcepti, java.io.IOException; public int parseEndTag() throws XmlPullParserExcepti,...
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 164.6K bytes
    - Click Count (0)
  2. guava/src/com/google/common/math/BigIntegerMath.java

        } else {
          BigInteger nextPow = BigInteger.TEN.multiply(approxPow);
          int nextCmp = nextPow.compareTo(x);
          while (nextCmp <= 0) {
            approxLog10++;
            approxPow = nextPow;
            approxCmp = nextCmp;
            nextPow = BigInteger.TEN.multiply(approxPow);
            nextCmp = nextPow.compareTo(x);
          }
        }
    
        int floorLog = approxLog10;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 18.8K bytes
    - Click Count (0)
Back to Top