Searched refs:lastVersion (Results 1 - 3 of 3) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DMainMenuActivity.java209 final int lastVersion = prefs.getInt(PreferenceConstants.PREFERENCE_LAST_VERSION, 0);
210 if (lastVersion == 0) {
245 if (Math.abs(lastVersion) < Math.abs(AndouKun.VERSION)) {
267 if (lastVersion > 0 && lastVersion < 14) {
281 if (lastVersion > 0 && lastVersion < 14 &&
287 } else if (lastVersion == 0) {
/external/webkit/Tools/WebKitLauncher/
H A Dmain.m60 static void saveLastVersionShown(int lastVersion)
62 [[NSUserDefaults standardUserDefaults] setInteger:lastVersion forKey:@"StartPageShownInVersion"];
/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp1794 int64_t lastVersion = -1; local
1795 if (!getInt(db, lastVersionKey, lastVersion))
1796 lastVersion = 0;
1798 ASSERT(lastVersion >= 0);
1800 int64_t version = lastVersion + 1;
1804 ASSERT(version > lastVersion); // FIXME: Think about how we want to handle the overflow scenario.

Completed in 118 milliseconds