mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
* Account for changed dataflow graph shape using external flow * Account for BaseBundle only existing as of Android 5 * Properly implement Parcelable, which we previously got away with due to a partial stub * Restore an Android 11 function that had been added to the Android 9 Context class (I won't get into enforcing the difference in this PR)
13 lines
344 B
Java
Generated
13 lines
344 B
Java
Generated
// Generated automatically from android.content.res.XmlResourceParser for testing purposes
|
|
|
|
package android.content.res;
|
|
|
|
import android.util.AttributeSet;
|
|
import org.xmlpull.v1.XmlPullParser;
|
|
|
|
public interface XmlResourceParser extends AttributeSet, AutoCloseable, XmlPullParser
|
|
{
|
|
String getAttributeNamespace(int p0);
|
|
void close();
|
|
}
|