Searched defs:mProperties (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/location/lib/java/com/android/location/provider/
H A DProviderPropertiesUnbundled.java29 private final ProviderProperties mProperties; field in class:ProviderPropertiesUnbundled
41 mProperties = properties;
46 return mProperties;
51 return mProperties.toString();
H A DLocationProviderBase.java61 private final ProviderProperties mProperties; field in class:LocationProviderBase
94 return mProperties;
120 mProperties = properties.getProviderProperties();
/frameworks/native/services/surfaceflinger/tests/hwc2/
H A DHwc2TestLayer.h80 std::array<Hwc2TestContainer*, 10> mProperties = {{ member in class:Hwc2TestLayer
/frameworks/base/location/java/android/location/
H A DLocationProvider.java49 private final ProviderProperties mProperties; field in class:LocationProvider
64 mProperties = properties;
79 return propertiesMeetCriteria(mName, mProperties, criteria);
125 return mProperties.mRequiresNetwork;
134 return mProperties.mRequiresSatellite;
143 return mProperties.mRequiresCell;
152 return mProperties.mHasMonetaryCost;
162 return mProperties.mSupportsAltitude;
172 return mProperties.mSupportsSpeed;
182 return mProperties
[all...]
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyGroup.java54 private final Property[] mProperties; field in class:MtpPropertyGroup
71 mProperties = new Property[count];
73 mProperties[i] = createProperty(properties[i], columns);
228 for (Property property : mProperties) {
/frameworks/base/services/core/java/com/android/server/broadcastradio/hal2/
H A DRadioModule.java48 @NonNull public final RadioManager.ModuleProperties mProperties; field in class:RadioModule
52 mProperties = Objects.requireNonNull(properties);
/frameworks/av/include/media/
H A DMidiDeviceInfo.h73 os::PersistableBundle mProperties; member in class:android::media::midi::MidiDeviceInfo
/frameworks/av/media/libmedia/include/media/
H A DMidiDeviceInfo.h73 os::PersistableBundle mProperties; member in class:android::media::midi::MidiDeviceInfo
/frameworks/base/libs/hwui/hwui/
H A DAnimatedImageDrawable.h157 Properties mProperties; member in class:android::AnimatedImageDrawable
/frameworks/base/media/java/android/media/midi/
H A DMidiDeviceInfo.java198 private final Bundle mProperties; field in class:MidiDeviceInfo
222 mProperties = properties;
289 return mProperties;
318 // This is a hack to force the mProperties Bundle to unparcel so we can
320 mProperties.getString(PROPERTY_NAME);
324 ",mProperties=" + mProperties +
357 Object val = mProperties.get(key);
388 parcel.writeBundle(mProperties);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
H A DAppearAnimationUtils.java42 private final AppearAnimationProperties mProperties = new AppearAnimationProperties(); field in class:AppearAnimationUtils
134 mProperties.maxDelayColIndex = -1;
135 mProperties.maxDelayRowIndex = -1;
136 mProperties.delays = new long[items.length][];
138 mProperties.delays[row] = new long[1];
140 mProperties.delays[row][0] = delay;
143 mProperties.maxDelayColIndex = 0;
144 mProperties.maxDelayRowIndex = row;
147 return mProperties;
152 mProperties
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationProviderProxy.java53 private ProviderProperties mProperties; field in class:LocationProviderProxy
140 mProperties = properties[0];
153 return mProperties;
H A DMockProvider.java42 private final ProviderProperties mProperties; field in class:MockProvider
62 mProperties = properties;
73 return mProperties;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DCamera2Source.java64 private CameraCharacteristics mProperties; field in class:Camera2Source
212 mProperties = null;
214 mProperties = mCameraManager.getCameraCharacteristics(mCamera.getId());
244 Integer orientation = mProperties.get(CameraCharacteristics.SENSOR_ORIENTATION);
/frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
H A DProcessBindable.java47 Intermediate mProperties; field in class:ProcessBindable
53 if (mProperties == null) {
54 mProperties = new IntermediateV1(buildInfo.modulePackage());
76 .checkNotNull(mProperties, "Must receive app / library info before "
78 mProperties.addProperty(enclosing.getQualifiedName().toString(), name);
82 mProperties.getPackage(),
83 createIntermediateFileName(mProperties.getPackage()), mProperties);
84 generateBRClasses(!buildInfo.isLibrary(), mProperties.getPackage());
111 mProperties
245 private final HashMap<String, HashSet<String>> mProperties = new HashMap<String, HashSet<String>>(); field in class:ProcessBindable.IntermediateV1
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DParallax.java404 final List<PropertyT> mProperties = new ArrayList<PropertyT>(); field in class:Parallax
405 final List<PropertyT> mPropertiesReadOnly = Collections.unmodifiableList(mProperties);
440 if (index >= mProperties.size()) {
455 int newPropertyIndex = mProperties.size();
480 mProperties.add(property);
490 if (mProperties.size() < 2) {
494 for (int i = 1; i < mProperties.size(); i++) {
499 i, mProperties.get(i).getName(),
500 i - 1, mProperties.get(i - 1).getName()));
504 i - 1, mProperties
[all...]
/frameworks/av/include/media/stagefright/
H A DMPEG4Writer.h211 Vector<ItemProperty> mProperties; member in class:android::MPEG4Writer
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DMPEG4Writer.h211 Vector<ItemProperty> mProperties; member in class:android::MPEG4Writer
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java192 protected int mProperties; field in class:BluetoothGattCharacteristic
273 mProperties = properties;
279 if ((mProperties & PROPERTY_WRITE_NO_RESPONSE) != 0) {
295 out.writeInt(mProperties);
316 mProperties = in.readInt();
427 return mProperties;
/frameworks/base/libs/hwui/
H A DRenderNode.h142 const RenderProperties& properties() const { return mProperties; }
144 RenderProperties& animatorProperties() { return mProperties; }
244 RenderProperties mProperties; member in class:android::uirenderer::RenderNode
H A DVectorDrawable.h181 } else if (prop == &mProperties) {
192 PathProperties* mutateProperties() { return &mProperties; }
202 PathProperties mProperties = PathProperties(this); member in class:android::uirenderer::VectorDrawable::Path
342 FullPathProperties* mutateProperties() { return &mProperties; }
352 } else if (properties == &mProperties) {
364 FullPathProperties mProperties = FullPathProperties(this); member in class:android::uirenderer::VectorDrawable::FullPath
463 GroupProperties* mutateProperties() { return &mProperties; }
491 GroupProperties mProperties = GroupProperties(this); member in class:android::uirenderer::VectorDrawable::Group
519 mCache.dirty |= (mProperties.mNonAnimatableProperties.viewportWidth !=
521 (mProperties
704 TreeProperties mProperties = TreeProperties(this); member in class:android::uirenderer::VectorDrawable::Tree
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DParcelableCall.java41 private final int mProperties; field in class:ParcelableCall
96 mProperties = properties;
150 public int getProperties() { return mProperties; }
387 destination.writeInt(mProperties);
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCharacteristics.java183 private final CameraMetadataNative mProperties; field in class:CameraCharacteristics
195 mProperties = CameraMetadataNative.move(properties);
196 setNativeInstance(mProperties);
204 return new CameraMetadataNative(mProperties);
223 return mProperties.get(key);
233 return (T) mProperties.get(key);
/frameworks/av/media/extractors/mp4/
H A DItemTable.cpp972 mProperties(properties), mAssociations(associations) {}
979 Vector<sp<ItemProperty> > *mProperties; member in struct:IprpBox
997 IpcoBox ipcoBox(source(), mProperties); local
/frameworks/wilhelm/src/
H A Ditfstruct.h320 SLEnvironmentalReverbSettings mProperties; member in struct:__anon2122
490 SLuint32 mProperties; member in struct:__anon2135

Completed in 471 milliseconds

12