Searched defs:version (Results 1 - 25 of 34) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DCacheManager.java40 int maxEntries, int maxBytes, int version) {
52 version);
39 getCache(Context context, String filename, int maxEntries, int maxBytes, int version) argument
/packages/apps/Calculator/src/com/android/calculator2/
H A DHistoryEntry.java33 HistoryEntry(int version, DataInput in) throws IOException { argument
34 if (version >= VERSION_1) {
39 throw new IOException("invalid version " + version);
H A DHistory.java37 History(int version, DataInput in) throws IOException { argument
38 if (version >= VERSION_1) {
41 mEntries.add(new HistoryEntry(version, in));
45 throw new IOException("invalid version " + version);
/packages/apps/Mms/src/com/android/mms/util/
H A DCacheManager.java41 int maxEntries, int maxBytes, int version) {
55 version);
40 getCache(Context context, String filename, int maxEntries, int maxBytes, int version) argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DAbstractInternalSource.java71 * Shortcuts from previous version are compatible with shortcuts from this version, so we just
73 * version code should be added here.
76 public boolean isVersionCodeCompatible(int version) { argument
H A DAbstractSource.java67 public boolean isVersionCodeCompatible(int version) { argument
68 return getVersionCode() == version;
H A DSource.java44 * Gets the version code of the source. This is expected to change when the app that
50 * Indicates if shortcuts from the given version of this source are compatible with the
51 * currently installed version. The version code given will only differ from the currently
52 * installed version after the source has been upgraded.
54 * @param version version of the source (as returned by {@link #getVersionCode} which originally
57 boolean isVersionCodeCompatible(int version); argument
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocalMediaItem.java50 public LocalMediaItem(Path path, long version) { argument
51 super(path, version);
H A DMediaItem.java61 public MediaItem(Path path, long version) { argument
62 super(path, version);
H A DMediaSet.java57 public MediaSet(Path path, long version) { argument
58 super(path, version);
179 // Reload the content. Return the current data version. reload() should be called
H A DMediaObject.java78 public MediaObject(Path path, long version) { argument
81 mDataVersion = version;
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEas.java42 // Define our default protocol version as 2.5 (Exchange 2003)
109 static public Double getProtocolVersionDouble(String version) { argument
110 if (SUPPORTED_PROTOCOL_EX2003.equals(version)) {
112 } else if (SUPPORTED_PROTOCOL_EX2007.equals(version)) {
114 } if (SUPPORTED_PROTOCOL_EX2007_SP1.equals(version)) {
116 } if (SUPPORTED_PROTOCOL_EX2010.equals(version)) {
118 } if (SUPPORTED_PROTOCOL_EX2010_SP1.equals(version)) {
121 throw new IllegalArgumentException("illegal protocol version");
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
H A DPicasaSource.java60 public EmptyAlbumSet(Path path, long version) { argument
61 super(path, version);
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepMessage.java105 SnepMessage(byte version, byte field, int length, int acceptableLength, argument
107 mVersion = version;
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DMockSource.java83 public boolean isVersionCodeCompatible(int version) { argument
84 return version == mVersionCode;
/packages/inputmethods/LatinIME/tools/dicttool/src/android/inputmethod/latin/dicttool/
H A DDictionaryMaker.java119 + " Binary version 1 (Ice Cream Sandwich), 2 (Jelly Bean), 3 and XML outputs\n"
137 int outputBinaryFormatVersion = 2; // the default version is 2.
308 * @param version the binary format version to use.
313 final FusionDictionary dict, final int version)
316 final FormatSpec.FormatOptions formatOptions = new FormatSpec.FormatOptions(version);
312 writeBinaryDictionary(final String outputFilename, final FusionDictionary dict, final int version) argument
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetService.java147 final PendingResult result, final int version) {
152 if (mLoader != null && version >= currentVersion.get()) {
146 createUpdateLoaderRunnable(final String selection, final PendingResult result, final int version) argument
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DRawContactDeltaListTests.java122 static RawContactDelta buildBeforeEntity(Context context, long rawContactId, long version, argument
126 contact.put(RawContacts.VERSION, version);
230 static ContentProviderOperation buildAssertVersion(long version) { argument
232 values.put(RawContacts.VERSION, version);
366 // Merge in second version, verify they match
387 // Merge in the second version, verify diff matches
412 // Merge in the second version, verify that our update changed to
438 // Merge in the second version, verify that our delete remains
462 // Merge in the second version, verify that our insert remains
491 // Merge in the second version, verif
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapStore.java171 * os-version "version; model; build-id"
237 * @param version Build.VERSION.RELEASE
246 static String makeCommonImapId(String packageName, String version, argument
251 // version, model, and vendor strings: a-z A-Z 0-9 - _ + = ; : . , / <space>
256 version = p.matcher(version).replaceAll("");
271 // "os-version" "version; build-id"
272 sb.append(" \"os-version\" \"");
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumDataLoader.java75 // the data version on which last loading failed
237 public long version; field in class:AlbumDataLoader.UpdateInfo
248 public GetUpdateInfo(long version) { argument
249 mVersion = version;
259 long version = mVersion;
260 info.version = mSourceVersion;
265 if (setVersion[index] != version) {
286 mSourceVersion = info.version;
299 mFailedVersion = info.version;
309 mSetVersion[index] = info.version;
[all...]
H A DAlbumSetDataLoader.java235 public long version; field in class:AlbumSetDataLoader.UpdateInfo
248 public GetUpdateInfo(long version) { argument
249 mVersion = version;
252 private int getInvalidIndex(long version) { argument
257 if (setVersion[i % length] != version) return i;
267 info.version = mSourceVersion;
287 mSourceVersion = info.version;
297 mSetVersion[pos] = info.version;
354 long version = mSource.reload();
355 UpdateInfo info = executeAndWait(new GetUpdateInfo(version));
[all...]
/packages/apps/Mms/src/com/android/mms/dom/
H A DNodeImpl.java161 public boolean isSupported(String feature, String version) { argument
261 public Object getFeature(String feature, String version) { argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFormatSpec.java227 public FormatOptions(final int version) { argument
228 this(version, false);
230 public FormatOptions(final int version, final boolean supportsDynamicUpdate) { argument
231 mVersion = version;
232 if (version < FIRST_VERSION_WITH_DYNAMIC_UPDATE && supportsDynamicUpdate) {
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndapi.c583 NJ_UINT32 version; local
596 version = NJ_INT32_READ(addr);
597 if ((version != NJ_DIC_VERSION1) && (version != NJ_DIC_VERSION2) &&
598 (version != NJ_DIC_VERSION2_1) && (version != NJ_DIC_VERSION3)) {
641 if (version != (NJ_UINT32)NJ_DIC_VERSION2) {
648 if (version != (NJ_UINT32)NJ_DIC_VERSION2_1) {
655 if (version != (NJ_UINT32)NJ_DIC_VERSION1) {
662 if (version !
[all...]
/packages/inputmethods/PinyinIME/jni/include/
H A Duserdict.h124 uint32 version; member in struct:ime_pinyin::UserDict::UserDictStat

Completed in 6850 milliseconds

12