Searched refs:getProperty (Results 1 - 25 of 26) sorted by relevance

12

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DBootCompletedReceiver.java59 String dbTime = ContactsDatabaseHelper.getInstance(context).getProperty(
67 dbTime = ContactsDatabaseHelper.getInstance(context).getProperty(
H A DSearchIndexManager.java400 return Integer.parseInt(mDbHelper.getProperty(PROPERTY_SEARCH_INDEX_VERSION, "0"));
H A DContactDirectoryManager.java185 String scanComplete = getDbHelper().getProperty(DbProperties.DIRECTORY_SCAN_COMPLETE, "0");
H A DContactsDatabaseHelper.java716 * Property names for {@link ContactsDatabaseHelper#getProperty} and
3135 final String dbLocale = getProperty(DbProperties.LOCALE, "");
3140 final String dbICUVersion = getProperty(DbProperties.ICU_VERSION,
4948 public String getProperty(String key, String defaultValue) { method in class:ContactsDatabaseHelper
4949 return getProperty(getReadableDatabase(), key, defaultValue);
4952 public String getProperty(SQLiteDatabase db, String key, String defaultValue) { method in class:ContactsDatabaseHelper
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DTempStorage.java37 String clazz = System.getProperty("org.apache.james.mime4j.tempStorage");
H A DSimpleTempStorage.java51 rootPath = new SimpleTempPath(System.getProperty("java.io.tmpdir"));
/packages/apps/Calendar/src/com/android/calendar/
H A DExtensionsFactory.java83 String className = sProperties.getProperty(ALL_IN_ONE_MENU_KEY);
109 String className = sProperties.getProperty(CLOUD_NOTIFICATION_KEY);
146 String className = sProperties.getProperty(ANALYTICS_LOGGER_KEY);
H A DUtils.java1780 String defaultPhoneRegion = System.getProperty("user.region", "US");
/packages/apps/Email/src/com/beetstra/jutf7/
H A DUTF7StyleCharsetEncoder.java62 String version = System.getProperty("java.specification.version");
63 String vendor = System.getProperty("java.vm.vendor");
/packages/apps/ContactsCommon/src/com/android/contacts/common/extensions/
H A DExtensionsFactory.java56 final String className = sProperties.getProperty(EXTENDED_PHONE_DIRECTORIES_KEY);
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddictionary.h86 void getProperty(const char *const query, char *const outResult,
H A Ddictionary.cpp131 void Dictionary::getProperty(const char *const query, char *const outResult, function in class:latinime::Dictionary
133 return mDictionaryStructureWithBufferPolicy->getProperty(query, outResult, maxResultLength);
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
H A Ddictionary_structure_with_buffer_policy.h85 virtual void getProperty(const char *const query, char *const outResult,
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DHexDump.java109 System.getProperty("line.separator");
H A DFileSystemUtils.java70 String osName = System.getProperty("os.name");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
H A DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
H A DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
H A Ddynamic_patricia_trie_policy.h97 void getProperty(const char *const query, char *const outResult,
H A Dpatricia_trie_policy.h116 void getProperty(const char *const query, char *const outResult, function in class:latinime::PatriciaTriePolicy
118 // getProperty is not supported for this class.
H A Ddynamic_patricia_trie_policy.cpp361 void DynamicPatriciaTriePolicy::getProperty(const char *const query, char *const outResult, function in class:latinime::DynamicPatriciaTriePolicy
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DLockableFileWriter.java172 lockDir = System.getProperty("java.io.tmpdir");
/packages/apps/Dialer/src/com/android/dialer/database/
H A DDialerDatabaseHelper.java438 public String getProperty(String key, String defaultValue) { method in class:DialerDatabaseHelper
439 return getProperty(getReadableDatabase(), key, defaultValue);
442 public String getProperty(SQLiteDatabase db, String key, String defaultValue) { method in class:DialerDatabaseHelper
463 final String stored = getProperty(db, key, "");
/packages/inputmethods/LatinIME/native/jni/
H A Dcom_android_inputmethod_latin_BinaryDictionary.cpp346 dictionary->getProperty(queryChars, resultChars, GET_PROPERTY_RESULT_LENGTH);
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java6778 assertNull(helper.getProperty("non-existent", null));
6779 assertEquals("default", helper.getProperty("non-existent", "default"));
6783 assertEquals("string1", helper.getProperty("existent1", "default"));
6784 assertEquals("string2", helper.getProperty("existent2", "default"));
6786 assertEquals("default", helper.getProperty("existent1", "default"));

Completed in 336 milliseconds

12