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,81 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderValueFormatter implements HeaderValueFormatter {
public static final BasicHeaderValueFormatter DEFAULT = null;
public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
public static final String UNSAFE_CHARS = "\"\\";
public BasicHeaderValueFormatter() {
throw new RuntimeException("Stub!");
}
public static final String formatElements(HeaderElement[] headerElementArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatElements(CharArrayBuffer charArrayBuffer, HeaderElement[] headerElementArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateElementsLen(HeaderElement[] headerElementArr) {
throw new RuntimeException("Stub!");
}
public static final String formatHeaderElement(HeaderElement headerElement, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatHeaderElement(CharArrayBuffer charArrayBuffer, HeaderElement headerElement, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateHeaderElementLen(HeaderElement headerElement) {
throw new RuntimeException("Stub!");
}
public static final String formatParameters(NameValuePair[] nameValuePairArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatParameters(CharArrayBuffer charArrayBuffer, NameValuePair[] nameValuePairArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateParametersLen(NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public static final String formatNameValuePair(NameValuePair nameValuePair, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatNameValuePair(CharArrayBuffer charArrayBuffer, NameValuePair nameValuePair, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateNameValuePairLen(NameValuePair nameValuePair) {
throw new RuntimeException("Stub!");
}
public void doFormatValue(CharArrayBuffer charArrayBuffer, String str, boolean z) {
throw new RuntimeException("Stub!");
}
public boolean isSeparator(char c) {
throw new RuntimeException("Stub!");
}
public boolean isUnsafe(char c) {
throw new RuntimeException("Stub!");
}
}