/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/parser/ |
D | PropertiesProvisioningDataParser.java | 113 .setDeviceAdminPackageName(props.getProperty( in parse() 115 if ((s = props.getProperty(EXTRA_PROVISIONING_DEVICE_ADMIN_COMPONENT_NAME)) in parse() 121 builder.setTimeZone(props.getProperty(EXTRA_PROVISIONING_TIME_ZONE)) in parse() 123 props.getProperty(EXTRA_PROVISIONING_LOCALE))); in parse() 124 if ((s = props.getProperty(EXTRA_PROVISIONING_LOCAL_TIME)) != null) { in parse() 138 if ((s = props.getProperty(EXTRA_PROVISIONING_LEAVE_ALL_SYSTEM_APPS_ENABLED)) in parse() 142 if ((s = props.getProperty(EXTRA_PROVISIONING_SKIP_ENCRYPTION)) != null) { in parse() 170 if (props.getProperty(EXTRA_PROVISIONING_WIFI_SSID) == null) { in parseWifiInfoFromProperties() 174 .setSsid(props.getProperty(EXTRA_PROVISIONING_WIFI_SSID)) in parseWifiInfoFromProperties() 175 .setSecurityType(props.getProperty(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE)) in parseWifiInfoFromProperties() [all …]
|
/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/ |
D | VehicleNetwork.java | 271 public VehiclePropValue getProperty(int property) throws IllegalArgumentException, in getProperty() method in VehicleNetwork 278 return getProperty(value); in getProperty() 285 public VehiclePropValue getProperty(VehiclePropValue value) throws IllegalArgumentException, in getProperty() method in VehicleNetwork 289 VehiclePropValueParcelable resParcelable = mService.getProperty(parcelable); in getProperty() 304 VehiclePropValue v = getProperty( in getIntProperty() 317 VehiclePropValue v = getProperty( in getZonedIntProperty() 330 VehiclePropValue v = getProperty( in getIntVectorProperty() 341 VehiclePropValue v = getProperty( in getZonedIntVectorProperty() 352 VehiclePropValue v = getProperty( in getFloatProperty() 365 VehiclePropValue v = getProperty( in getFloatVectorProperty() [all …]
|
D | IVehicleNetwork.aidl | 33 VehiclePropValueParcelable getProperty(in VehiclePropValueParcelable value) = 2;
|
/packages/services/Car/libvehiclenetwork/native/ |
D | VehicleNetwork.cpp | 190 status_t r = getProperty(&v); in getInt32Property() 207 status_t r = getProperty(&v); in getInt64Property() 224 status_t r = getProperty(&v); in getFloatProperty() 243 status_t r = getProperty(&v); in getStringProperty() 259 status_t VehicleNetwork::getProperty(vehicle_prop_value_t* value) { in getProperty() function in android::VehicleNetwork 260 return getService()->getProperty(value); in getProperty()
|
/packages/services/Car/car-lib/src/android/car/hardware/hvac/ |
D | CarHvacManager.java | 259 CarPropertyValue<Boolean> carProp = getProperty(Boolean.class, prop, area); in getBooleanProperty() 270 CarPropertyValue<Float> carProp = getProperty(Float.class, prop, area); in getFloatProperty() 281 CarPropertyValue<Integer> carProp = getProperty(Integer.class, prop, area); in getIntProperty() 287 private <E> CarPropertyValue<E> getProperty(Class<E> clazz, int prop, int area) in getProperty() method in CarHvacManager 294 CarPropertyValue<E> hvacProperty = mService.getProperty(prop, area); in getProperty()
|
D | ICarHvac.aidl | 32 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty() method
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | ExtensionsFactory.java | 83 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/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | CallLogDatabaseHelper.java | 215 public String getProperty(String key, String defaultValue) { in getProperty() method in CallLogDatabaseHelper 216 return PropertyUtils.getProperty(getReadableDatabase(), key, defaultValue); in getProperty() 246 if ("1".equals(PropertyUtils.getProperty(calllog, DbProperties.DATA_MIGRATED, ""))) { in migrateFromLegacyTables() 292 PropertyUtils.getProperty(contacts, in migrateFromLegacyTables()
|
D | BootCompletedReceiver.java | 59 String dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive() 67 dbTime = ContactsDatabaseHelper.getInstance(context).getProperty( in onReceive()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | CallLogMigrationTest.java | 78 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/ |
D | UTF7StyleCharsetEncoder.java | 62 String version = System.getProperty("java.specification.version"); 63 String vendor = System.getProperty("java.vm.vendor");
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/ |
D | dictionary.cpp | 180 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()
|
D | dictionary.h | 104 void getProperty(const char *const query, const int queryLength, char *const outResult,
|
/packages/services/Car/tests/libvehiclenetwork-native-test/ |
D | IVehicleNetworkTest.cpp | 92 TEST_F(IVehicleNetworkTest, getProperty) { in TEST_F() argument 116 status_t r = vn->getProperty(&value.value); in TEST_F()
|
D | VehicleNetworkTest.cpp | 99 TEST_F(VehicleNetworkTest, getProperty) { in TEST_F() argument 114 status_t r = vn->getProperty(&value.value); in TEST_F()
|
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/ |
D | VehicleNetworkTest.java | 84 VehiclePropValue value = mVehicleNetwork.getProperty(-1); in testGetProperty() 105 VehiclePropValue value = mVehicleNetwork.getProperty(config.getProp()); in testGetProperty()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | CustomVCardEntry.java | 45 public VCardProperty getProperty(String name) { in getProperty() method in CustomVCardEntry
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/ |
D | TempStorage.java | 37 String clazz = System.getProperty("org.apache.james.mime4j.tempStorage");
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
D | PropertyUtils.java | 53 public static String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in PropertyUtils
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/extensions/ |
D | ExtensionsFactory.java | 56 final String className = sProperties.getProperty(EXTENDED_PHONE_DIRECTORIES_KEY); in init()
|
/packages/apps/Dialer/src/com/android/dialer/database/ |
D | DialerDatabaseHelper.java | 530 public String getProperty(String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper 531 return getProperty(getReadableDatabase(), key, defaultValue); in getProperty() 534 public String getProperty(SQLiteDatabase db, String key, String defaultValue) { in getProperty() method in DialerDatabaseHelper 557 final String stored = getProperty(db, key, ""); in getPropertyAsInt()
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
D | HexDump.java | 109 System.getProperty("line.separator");
|
/packages/services/Car/libvehiclenetwork/include/ |
D | IVehicleNetwork.h | 50 virtual status_t getProperty(vehicle_prop_value_t* value) = 0;
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/ |
D | dictionary_structure_with_buffer_policy.h | 104 virtual void getProperty(const char *const query, const int queryLength, char *const outResult,
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
D | ParseException.java | 155 protected String eol = System.getProperty("line.separator", "\n");
|