Lines Matching refs:icicle
273 protected void onCreate(Bundle icicle) { in onCreate() argument
274 super.onCreate(icicle); in onCreate()
276 if (icicle != null && icicle.containsKey(BUNDLE_KEY_CHECK_ACCOUNTS)) { in onCreate()
277 mCheckForAccounts = icicle.getBoolean(BUNDLE_KEY_CHECK_ACCOUNTS); in onCreate()
297 if (icicle != null) { in onCreate()
298 timeMillis = icicle.getLong(BUNDLE_KEY_RESTORE_TIME); in onCreate()
299 viewType = icicle.getInt(BUNDLE_KEY_RESTORE_VIEW, -1); in onCreate()
320 if (icicle != null && intent != null) { in onCreate()
321 Log.d(TAG, "both, icicle:" + icicle.toString() + " intent:" + intent.toString()); in onCreate()
323 Log.d(TAG, "not both, icicle:" + icicle + " intent:" + intent); in onCreate()
387 initFragments(timeMillis, viewType, icicle); in onCreate()
564 private void initFragments(long timeMillis, int viewType, Bundle icicle) { in initFragments() argument
596 } else if (icicle != null && icicle.containsKey(BUNDLE_KEY_EVENT_ID)) { in initFragments()
597 eventId = icicle.getLong(BUNDLE_KEY_EVENT_ID); in initFragments()