Home
last modified time | relevance | path

Searched refs:getProperty (Results 1 – 25 of 53) sorted by relevance

123

/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/
DPropertiesProvisioningDataParser.java119 .setDeviceAdminPackageName(props.getProperty( in parse()
121 if ((s = props.getProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME)) in parse()
127 builder.setTimeZone(props.getProperty(EXTRA_PROVISIONING_TIME_ZONE)) in parse()
129 props.getProperty(EXTRA_PROVISIONING_LOCALE))); in parse()
130 if ((s = props.getProperty(EXTRA_PROVISIONING_LOCAL_TIME)) != null) { in parse()
144 if ((s = props.getProperty(EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED)) in parse()
148 if ((s = props.getProperty(EXTRA_PROVISIONING_SKIP_ENCRYPTION)) != null) { in parse()
176 if (props.getProperty(EXTRA_PROVISIONING_WIFI_SSID) == null) { in parseWifiInfoFromProperties()
180 .setSsid(props.getProperty(EXTRA_PROVISIONING_WIFI_SSID)) in parseWifiInfoFromProperties()
181 .setSecurityType(props.getProperty(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE)) in parseWifiInfoFromProperties()
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/property/
DCarPropertyManagerBase.java173 CarPropertyValue<Boolean> carProp = getProperty(Boolean.class, prop, area); in getBooleanProperty()
184 CarPropertyValue<Float> carProp = getProperty(Float.class, prop, area); in getFloatProperty()
195 CarPropertyValue<Integer> carProp = getProperty(Integer.class, prop, area); in getIntProperty()
201 public <E> CarPropertyValue<E> getProperty(Class<E> clazz, int propId, int area) in getProperty() method in CarPropertyManagerBase
208 CarPropertyValue<E> propVal = mService.getProperty(propId, area); in getProperty()
DICarProperty.aidl34 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty() method
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DCallLogDatabaseHelper.java236 public String getProperty(String key, String defaultValue) { in getProperty() method in CallLogDatabaseHelper
237 return PropertyUtils.getProperty(getReadableDatabase(), key, defaultValue); in getProperty()
293 if ("1".equals(PropertyUtils.getProperty(calllog, DbProperties.DATA_MIGRATED, ""))) { in migrateFromLegacyTables()
339 PropertyUtils.getProperty(contacts, in migrateFromLegacyTables()
DBootCompletedReceiver.java59 String dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive()
67 dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive()
DContactDirectoryManager.java185 final String prev = getDbHelper().getProperty(DbProperties.KNOWN_DIRECTORY_PACKAGES, ""); in haveKnownDirectoryProvidersChanged()
202 getDbHelper().getProperty(DbProperties.DIRECTORY_SCAN_COMPLETE, "0"); in isRescanNeeded()
/packages/services/Car/car-lib/src/android/car/hardware/
DCarVendorExtensionManager.java137 return getProperty(propertyClass, propId, 0 /* area */); in getGlobalProperty()
152 public <E> E getProperty(Class<E> propertyClass, int propId, int area) in getProperty() method in CarVendorExtensionManager
154 return mPropertyManager.getProperty(propertyClass, propId, area).getValue(); in getProperty()
/packages/apps/Calendar/src/com/android/calendar/
DExtensionsFactory.java83 String className = sProperties.getProperty(ALL_IN_ONE_MENU_KEY); in getAllInOneMenuExtensions()
109 String className = sProperties.getProperty(CLOUD_NOTIFICATION_KEY); in getCloudNotificationBackplane()
146 String className = sProperties.getProperty(ANALYTICS_LOGGER_KEY); in getAnalyticsLogger()
/packages/services/Car/tools/emulator/
Dvhal_emulator_test.py189 self._vhal.getProperty(cfg.prop, area)
213 self._vhal.getProperty(cfg.prop, area)
232 self._vhal.getProperty(prop, 0)
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DCallLogMigrationTest.java78 dbh.getProperty(CallLogDatabaseHelper.DbProperties.CALL_LOG_LAST_SYNCED, "")); in testMigration()
85 dbh.getProperty(CallLogDatabaseHelper.DbProperties.DATA_MIGRATED, "")); in testMigration()
/packages/apps/Email/src/com/beetstra/jutf7/
DUTF7StyleCharsetEncoder.java62 String version = System.getProperty("java.specification.version");
63 String vendor = System.getProperty("java.vm.vendor");
/packages/apps/Dialer/java/com/android/dialer/database/
DDialerDatabaseHelper.java286 public String getProperty(String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper
287 return getProperty(getReadableDatabase(), key, defaultValue); in getProperty()
290 public String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper
318 final String stored = getProperty(db, key, ""); in getPropertyAsInt()
/packages/services/Car/service/src/com/android/car/
DCarPropertyServiceBase.java184 public CarPropertyValue getProperty(int prop, int zone) { in getProperty() method in CarPropertyServiceBase
186 return mHal.getProperty(prop, zone); in getProperty()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
Ddictionary.cpp180 void Dictionary::getProperty(const char *const query, const int queryLength, char *const outResult, in getProperty() function in latinime::Dictionary
183 return mDictionaryStructureWithBufferPolicy->getProperty(query, queryLength, outResult, in getProperty()
Ddictionary.h104 void getProperty(const char *const query, const int queryLength, char *const outResult,
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapVcardManager.java937 String attr [] = vCard.split(System.getProperty("line.separator")); in StripTelephoneNumber()
1042 private static final String SEPARATOR = System.getProperty("line.separator");
1132 private static final String SEPARATOR = System.getProperty("line.separator");
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DCustomVCardEntry.java45 public VCardProperty getProperty(String name) { in getProperty() method in CustomVCardEntry
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
DTempStorage.java37 String clazz = System.getProperty("org.apache.james.mime4j.tempStorage");
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DPropertyUtils.java53 public static String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in PropertyUtils
/packages/apps/Contacts/src/com/android/contacts/extensions/
DExtensionsFactory.java56 final String className = sProperties.getProperty(EXTENDED_PHONE_DIRECTORIES_KEY); in init()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DHexDump.java109 System.getProperty("line.separator");
/packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
Ddictionary_structure_with_buffer_policy.h104 virtual void getProperty(const char *const query, const int queryLength, char *const outResult,
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
DParseException.java155 protected String eol = System.getProperty("line.separator", "\n");

123