- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
77 lines
2.1 KiB
Java
77 lines
2.1 KiB
Java
package org.apache.http.message;
|
|
|
|
import java.util.NoSuchElementException;
|
|
import org.apache.http.HeaderIterator;
|
|
import org.apache.http.ParseException;
|
|
import org.apache.http.TokenIterator;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class BasicTokenIterator implements TokenIterator {
|
|
public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
|
|
protected String currentHeader;
|
|
protected String currentToken;
|
|
protected final HeaderIterator headerIt;
|
|
protected int searchPos;
|
|
|
|
public BasicTokenIterator(HeaderIterator headerIterator) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.TokenIterator, java.util.Iterator
|
|
public boolean hasNext() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.TokenIterator
|
|
public String nextToken() throws NoSuchElementException, ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public final Object next() throws NoSuchElementException, ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public final void remove() throws UnsupportedOperationException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int findNext(int i) throws ParseException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public String createToken(String str, int i, int i2) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int findTokenStart(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int findTokenSeparator(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int findTokenEnd(int i) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public boolean isTokenSeparator(char c) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public boolean isWhitespace(char c) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public boolean isTokenChar(char c) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public boolean isHttpSeparator(char c) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|