Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.ParseException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderValueParser implements HeaderValueParser {
public static final BasicHeaderValueParser DEFAULT = null;
public BasicHeaderValueParser() {
throw new RuntimeException("Stub!");
}
public static final HeaderElement[] parseElements(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public HeaderElement[] parseElements(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public static final HeaderElement parseHeaderElement(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public HeaderElement parseHeaderElement(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public HeaderElement createHeaderElement(String str, String str2, NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public static final NameValuePair[] parseParameters(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public NameValuePair[] parseParameters(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public static final NameValuePair parseNameValuePair(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public NameValuePair parseNameValuePair(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public NameValuePair parseNameValuePair(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor, char[] cArr) {
throw new RuntimeException("Stub!");
}
public NameValuePair createNameValuePair(String str, String str2) {
throw new RuntimeException("Stub!");
}
}