Searched refs:version (Results 51 - 75 of 118) sorted by relevance

12345

/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasProvision.java203 final double version = getProtocolVersion();
204 if (version == Eas.SUPPORTED_PROTOCOL_EX2007_SP1_DOUBLE
205 || version == Eas.SUPPORTED_PROTOCOL_EX2010_DOUBLE) {
230 * @param protocolVersion The version of the EAS protocol that we should speak.
243 // The "inner" version of this function is being used because it is
245 // everything, the other version of this function still lives so that
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DMediaSetSource.java177 long version = mSource.reload();
178 if (mSourceVersion != version) {
179 mSourceVersion = version;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DBinaryDictionaryGetter.java61 // The key considered to read the version attribute in a dictionary file.
62 private static String VERSION_KEY = "version";
195 * path, we need to remove the old version. The only way to do this is to check all
224 // ## HACK ## we prevent usage of a dictionary before version 18. The reason for this is, since
225 // those do not include whitelist entries, the new code with an old version of the dictionary
229 // Read the version of the file
231 final String version = header.mDictionaryOptions.mAttributes.get(VERSION_KEY);
232 if (null == version) {
233 // No version in the options : the format is unexpected
238 return Integer.parseInt(version) >
[all...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/
H A Dheader_read_write_utils.cpp91 BufferWithExtendableBuffer *const buffer, const FormatUtils::FORMAT_VERSION version,
97 switch (version) {
104 return buffer->writeUintAndAdvancePosition(version /* data */,
90 writeDictionaryVersion( BufferWithExtendableBuffer *const buffer, const FormatUtils::FORMAT_VERSION version, int *const writingPos) argument
/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/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictEncoderUtils.java825 final int version = formatOptions.mVersion;
826 if (version < FormatSpec.MINIMUM_SUPPORTED_VERSION
827 || version > FormatSpec.MAXIMUM_SUPPORTED_VERSION) {
828 throw new UnsupportedFormatException("Requested file format version " + version
842 // Dictionary version.
843 headerBuffer.write((byte) (0xFF & (version >> 8)));
844 headerBuffer.write((byte) (0xFF & version));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
H A DDebugSettingsFragment.java155 final String version = getString(
158 mDebugMode.setTitle(version);
162 mDebugMode.setSummary(version);
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DDictionaryMaker.java140 + " Binary version 2 (Jelly Bean), 3, 4, XML and\n"
157 int outputBinaryFormatVersion = 2; // the default version is 2.
353 * @param version the binary format version to use.
358 final FusionDictionary dict, final int version)
361 final FormatSpec.FormatOptions formatOptions = new FormatSpec.FormatOptions(version);
363 if (version == FormatSpec.VERSION4) {
357 writeBinaryDictionary(final String outputFilename, final FusionDictionary dict, final int version) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
H A DUpdateHandler.java325 * @param version the version of the word list.
329 final Request request, final SQLiteDatabase db, final String id, final int version) {
330 DebugLogUtils.l("RegisterDownloadRequest for word list id : ", id, ", version ", version);
335 MetadataDbHelper.markEntryAsDownloading(db, id, version, downloadId);
769 + " version " + metadataInfo.mFormatVersion + " and the maximum version"
788 // If it's the same id/version, we update the DB with the new values.
792 // If it's a new version, i
328 registerDownloadRequest(final DownloadManagerWrapper manager, final Request request, final SQLiteDatabase db, final String id, final int version) argument
987 markAsUsed(final Context context, final String clientId, final String wordlistId, final int version, final int status, final boolean allowDownloadOnMeteredData) argument
1023 markAsUnused(final Context context, final String clientId, final String wordlistId, final int version, final int status) argument
1052 markAsDeleting(final Context context, final String clientId, final String wordlistId, final int version, final int status) argument
1077 markAsDeleted(final Context context, final String clientId, final String wordlistId, final int version, final int status) argument
1102 markAsBroken(final Context context, final String clientId, final String wordlistId, final int version) argument
[all...]
H A DWordListPreference.java58 // The metadata word list id and version of this word list.
76 final String wordlistId, final int version, final Locale locale,
82 mVersion = version;
74 WordListPreference(final Context context, final DictionaryListInterfaceState dictionaryListInterfaceState, final String clientId, final String wordlistId, final int version, final Locale locale, final String description, final int status, final int filesize) argument
H A DDictionaryProvider.java213 * This version dispatches the query according to the protocol version found in the
239 // In protocol version 2, we return null if the client is unknown. Otherwise
380 // is a newer version of which word list. We do however return the full id
466 final int version = wordList.getAsInteger(MetadataDbHelper.VERSION_COLUMN);
468 UpdateHandler.markAsDeleted(getContext(), clientId, wordlistId, version, status);
473 UpdateHandler.markAsBroken(getContext(), clientId, wordlistId, version);
532 "Insertion in the dictionary is not supported in this version");
H A DDictionarySettingsFragment.java275 // Need to use version 2 to get this client's list
304 final int version = cursor.getInt(versionIndex);
322 && oldPreference.mVersion == version
338 mClientId, wordlistId, version, locale, description, status,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DDictionaryInfoUtils.java59 private static final String VERSION_COLUMN = "version";
66 final AssetFileAddress fileAddress, final int version) {
71 mVersion = version;
209 * The file name is pretty much an URL-encoded version of the id inside a directory
318 final String version = header.getVersion();
319 return new DictionaryInfo(id, locale, description, fileAddress, Integer.parseInt(version));
65 DictionaryInfo(final String id, final Locale locale, final String description, final AssetFileAddress fileAddress, final int version) argument
/packages/apps/Gallery/src/com/android/camera/
H A DPhotoAppWidgetProvider.java110 int version = oldVersion;
112 if (version != DATABASE_VERSION) {
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DMediaSet.java57 public MediaSet(Path path, long version) { argument
58 super(path, version);
173 // Reload the content. Return the current data version. reload() should be called
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A Dvignette.rs17 #pragma version(1)
H A Dgrad.rs17 #pragma version(1)
H A Dsaturation.rs17 #pragma version(1)
/packages/apps/Launcher3/src/com/android/launcher3/
H A DStats.java194 final int version = stats.readInt();
195 if (version == STATS_VERSION) {
/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/apps/OMA-DM/engine/dmlib/linux_java/mkfiles/
H A Ddm_make.native67 -Xlinker --version-script=versionscript
H A Ddm_make.ssession64 -Xlinker --version-script=versionsc_ssesion
/packages/apps/OMA-DM/engine/dmlib/linux_java/samples/plugins/mkfiles/
H A Ddm_make.testrwplugin55 -Xlinker --version-script=versionscr_plugin
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapStore.java163 * os-version "version; model; build-id"
229 * @param version Build.VERSION.RELEASE
238 static String makeCommonImapId(String packageName, String version, argument
243 // version, model, and vendor strings: a-z A-Z 0-9 - _ + = ; : . , / <space>
248 version = p.matcher(version).replaceAll("");
263 // "os-version" "version; build-id"
264 sb.append(" \"os-version\" \"");
[all...]
/packages/apps/Gallery2/src/com/android/photos/views/
H A DBlockingGLTextureView.java166 int[] version = new int[2];
167 if (!mEgl.eglInitialize(mEglDisplay, version)) {

Completed in 682 milliseconds

12345