(String[] a1, String[] a2)
| 3906 | } |
| 3907 | |
| 3908 | static boolean equal(String[] a1, String[] a2) { |
| 3909 | if (a1 == null && a2 == null) |
| 3910 | return true; |
| 3911 | |
| 3912 | if (a1 == null || a2 == null) |
| 3913 | return false; |
| 3914 | |
| 3915 | if (a1.length != a2.length) |
| 3916 | return false; |
| 3917 | |
| 3918 | for (int i = 0; i < a1.length; i++) |
| 3919 | if (!a1[i].equals(a2[i])) |
| 3920 | return false; |
| 3921 | |
| 3922 | return true; |
| 3923 | } |
| 3924 | |
| 3925 | static int getSize(Bundle bundle) { |
| 3926 | Parcel p = Parcel.obtain(); |
no test coverage detected