Searched defs:properties (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/base/location/lib/java/com/android/location/provider/
H A DProviderPropertiesUnbundled.java40 private ProviderPropertiesUnbundled(ProviderProperties properties) { argument
41 mProperties = properties;
H A DLocationProviderBase.java115 public LocationProviderBase(String tag, ProviderPropertiesUnbundled properties) { argument
119 mProperties = properties.getProviderProperties();
/frameworks/base/services/core/java/com/android/server/location/
H A DGpsXtraDownloader.java55 GpsXtraDownloader(Context context, Properties properties) { argument
60 String server1 = properties.getProperty("XTRA_SERVER_1");
61 String server2 = properties.getProperty("XTRA_SERVER_2");
62 String server3 = properties.getProperty("XTRA_SERVER_3");
67 // Set User Agent from properties, if possible.
68 String agent = properties.getProperty("XTRA_USER_AGENT");
H A DMockProvider.java57 ProviderProperties properties) {
58 if (properties == null) throw new NullPointerException("properties is null");
62 mProperties = properties;
56 MockProvider(String name, ILocationManager locationManager, ProviderProperties properties) argument
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAutoCancelTest.java42 ObjectAnimator setupAnimator(long startDelay, String... properties) { argument
44 if (properties.length == 1) {
45 returnVal = ObjectAnimator.ofFloat(this, properties[0], 0, 1);
47 PropertyValuesHolder[] pvhArray = new PropertyValuesHolder[properties.length];
48 for (int i = 0; i < properties.length; i++) {
49 pvhArray[i] = PropertyValuesHolder.ofFloat(properties[i], 0, 1);
/frameworks/base/location/java/android/location/
H A DLocationProvider.java59 public LocationProvider(String name, ProviderProperties properties) { argument
64 mProperties = properties;
85 public static boolean propertiesMeetCriteria(String name, ProviderProperties properties, argument
91 if (properties == null) {
98 criteria.getAccuracy() < properties.mAccuracy) {
102 criteria.getPowerRequirement() < properties.mPowerRequirement) {
105 if (criteria.isAltitudeRequired() && !properties.mSupportsAltitude) {
108 if (criteria.isSpeedRequired() && !properties.mSupportsSpeed) {
111 if (criteria.isBearingRequired() && !properties.mSupportsBearing) {
114 if (!criteria.isCostAllowed() && properties
[all...]
H A DLocationManager.java319 private LocationProvider createProvider(String name, ProviderProperties properties) { argument
320 return new LocationProvider(name, properties);
369 ProviderProperties properties = mService.getProviderProperties(name);
370 if (properties == null) {
373 return createProvider(name, properties);
1208 ProviderProperties properties = new ProviderProperties(requiresNetwork,
1216 mService.addTestProvider(name, properties);
/frameworks/wilhelm/src/itf/
H A DIPlaybackRate.c117 SLuint32 properties = thiz->mProperties; local
119 *pProperties = properties;
H A DIEnvironmentalReverb.c643 // note that it's unnecessary to verify that any level stored inside the "properties" struct
650 SLEnvironmentalReverbSettings properties = *pProperties; local
651 if (!(properties.roomLevel <= 0))
653 if (!(properties.roomHFLevel <= 0))
655 if (!(100 <= properties.decayTime && properties.decayTime <= 20000))
657 if (!(100 <= properties.decayHFRatio && properties.decayHFRatio <= 2000))
659 if (!(properties.reflectionsLevel <= 1000))
661 if (!(/* 0 <= properties
[all...]
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java56 // list of all properties in this group
67 // constructs a property group for a list of properties
69 String volume, int[] properties) {
76 int count = properties.length;
82 mProperties[i] = createProperty(properties[i], columns);
203 // for now we are only reading properties from the "objects" table
266 // for now we are only reading properties from the "objects" table
355 // iterate over all properties in the query for the given object
68 MtpPropertyGroup(MtpDatabase database, IContentProvider provider, String packageName, String volume, int[] properties) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DAppearAnimationUtils.java66 AppearAnimationProperties properties = getDelays(objects);
67 startAnimations(properties, objects, finishListener, creator);
72 AppearAnimationProperties properties = getDelays(objects);
73 startAnimations(properties, objects, finishListener, creator);
76 private <T> void startAnimations(AppearAnimationProperties properties, T[] objects, argument
78 if (properties.maxDelayRowIndex == -1 || properties.maxDelayColIndex == -1) {
82 for (int row = 0; row < properties.delays.length; row++) {
83 long[] columns = properties.delays[row];
86 if (properties
94 startAnimations(AppearAnimationProperties properties, T[][] objects, final Runnable finishListener, AppearAnimationCreator<T> creator) argument
[all...]
/frameworks/base/libs/hwui/
H A DRenderNode.h66 * Primary class for storing recorded canvas commands, as well as per-View/ViewGroup display properties.
70 * (which holds the actual data), and DisplayList (which holds properties and performs playback onto
74 * recorded stream of canvas operations is refreshed. The DisplayList (and its properties) stay
148 const RenderProperties& properties() const { function in class:android::uirenderer::RenderNode
165 return properties().getWidth();
169 return properties().getHeight();
272 * Draw time state - these properties are only set and used during rendering
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestSlowDownUri.cpp298 /* Get the default rate properties */
299 SLuint32 properties = 0; local
300 res = (*rateItf)->GetProperties(rateItf, &properties); CheckErr(res);
301 printf("default rate properties: ");
302 printCapabilities(properties);
304 assert(SL_RATEPROP_NOPITCHCORAUDIO == properties);
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCall.java64 int properties,
84 mProperties = properties;
131 /** Bitmask of properties of the call. */
247 int properties = source.readInt();
271 properties,
58 ParcelableCall( String id, int state, DisconnectCause disconnectCause, List<String> cannedSmsResponses, int capabilities, int properties, long connectTimeMillis, Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, GatewayInfo gatewayInfo, PhoneAccountHandle accountHandle, IVideoProvider videoCallProvider, String parentCallId, List<String> childCallIds, StatusHints statusHints, int videoState, List<String> conferenceableCallIds, Bundle extras) argument
H A DCall.java328 * @return A bitmask of the properties of the {@code Call}, as defined in
430 int properties,
443 mCallProperties = properties;
423 Details( Uri handle, int handlePresentation, String callerDisplayName, int callerDisplayNamePresentation, PhoneAccountHandle accountHandle, int capabilities, int properties, DisconnectCause disconnectCause, long connectTimeMillis, GatewayInfo gatewayInfo, int videoState, StatusHints statusHints, Bundle extras) argument
/frameworks/native/include/input/
H A DInputTransport.h99 PointerProperties properties; member in struct:android::InputMessage::Body::Motion::Pointer
106 return pointers[index].properties.id;
372 uint32_t id = msg->body.motion.pointers[i].properties.id;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java67 * Characteristic property: Characteristic has extended properties
182 * Characteristic properties.
228 * @param properties Properties of this characteristic
231 public BluetoothGattCharacteristic(UUID uuid, int properties, int permissions) { argument
232 initCharacteristic(null, uuid, 0, properties, permissions);
241 int properties, int permissions) {
242 initCharacteristic(service, uuid, instanceId, properties, permissions);
247 int properties, int permissions) {
250 mProperties = properties;
336 * Returns the properties o
239 BluetoothGattCharacteristic(BluetoothGattService service, UUID uuid, int instanceId, int properties, int permissions) argument
245 initCharacteristic(BluetoothGattService service, UUID uuid, int instanceId, int properties, int permissions) argument
[all...]
/frameworks/native/libs/input/
H A DInput.cpp450 PointerProperties& properties = mPointerProperties.editTop(); local
451 properties.id = parcel->readInt32();
452 properties.toolType = parcel->readInt32();
489 const PointerProperties& properties = mPointerProperties.itemAt(i); local
490 parcel->writeInt32(properties.id);
491 parcel->writeInt32(properties.toolType);
H A DKeyCharacterMap.cpp884 Vector<Property> properties; local
889 properties.add(Property(PROPERTY_LABEL));
891 properties.add(Property(PROPERTY_NUMBER));
900 properties.add(Property(PROPERTY_META, metaState));
981 for (size_t i = 0; i < properties.size(); i++) {
982 const Property& property = properties.itemAt(i);
/frameworks/wilhelm/src/android/
H A Dandroid_Effect.cpp180 size = sizeof(s_reverb_settings); // struct of all reverb properties
409 // initialize reverb properties
410 SLEnvironmentalReverbSettings properties; local
412 REVERB_PARAM_PROPERTIES, &properties)) {
413 ier->mProperties = properties;
422 // properties, select which max size to pass to avoid allocating too much memory
437 // properties, select which max size to pass to avoid allocating too much memory
/frameworks/av/media/mtp/
H A DMtpServer.cpp28 #include <cutils/properties.h>
562 MtpObjectPropertyList* properties = mDatabase->getSupportedObjectProperties(format); local
563 mData.putAUInt16(properties);
564 delete properties;
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCharacteristics.java29 * <p>The properties describing a
32 * <p>These properties are fixed for a given CameraDevice, and can be queried
140 * Takes ownership of the passed-in properties object
143 public CameraCharacteristics(CameraMetadataNative properties) { argument
144 mProperties = CameraMetadataNative.move(properties);
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp332 jint* properties = env->GetIntArrayElements(array, 0); local
335 list->push(properties[i]);
336 env->ReleaseIntArrayElements(array, properties, 0);
350 jint* properties = env->GetIntArrayElements(array, 0); local
353 list->push(properties[i]);
354 env->ReleaseIntArrayElements(array, properties, 0);
387 // special case date properties, which are strings to MTP
1110 // for read-only properties it is safe to assume current value is default value
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2AgentImpl.java989 CameraCharacteristics properties) {
994 mCapabilities = new AndroidCamera2Capabilities(properties);
984 AndroidCamera2ProxyImpl( AndroidCamera2AgentImpl agent, int cameraIndex, CameraDevice camera, CameraDeviceInfo.Characteristics characteristics, CameraCharacteristics properties) argument
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jar ... java.util.Map propertyMap java.util.Properties properties java.util.regex.Pattern pattern } org

Completed in 591 milliseconds

12