mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +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)
22 lines
724 B
Java
Generated
22 lines
724 B
Java
Generated
// Generated automatically from android.content.ContentProviderResult for testing purposes
|
|
|
|
package android.content;
|
|
|
|
import android.net.Uri;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
public class ContentProviderResult implements Parcelable
|
|
{
|
|
protected ContentProviderResult() {}
|
|
public ContentProviderResult(Parcel p0){}
|
|
public ContentProviderResult(Uri p0){}
|
|
public ContentProviderResult(int p0){}
|
|
public String toString(){ return null; }
|
|
public final Integer count = null;
|
|
public final Uri uri = null;
|
|
public int describeContents(){ return 0; }
|
|
public static Parcelable.Creator<ContentProviderResult> CREATOR = null;
|
|
public void writeToParcel(Parcel p0, int p1){}
|
|
}
|