HomeSort by relevance Sort by last modified time
    Searched refs:mProperties (Results 1 - 25 of 500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/location/java/android/location/
LocationProvider.java 49 private final ProviderProperties mProperties;
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.mSupportsBearing
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
ProviderPropertiesUnbundled.java 29 private final ProviderProperties mProperties;
41 mProperties = properties;
45 return mProperties;
50 return mProperties.toString();
LocationProviderBase.java 60 private final ProviderProperties mProperties;
93 return mProperties;
119 mProperties = properties.getProviderProperties();
  /packages/apps/Launcher3/src/com/android/launcher3/anim/
PropertyListBuilder.java 13 private final ArrayList<PropertyValuesHolder> mProperties = new ArrayList<>();
16 mProperties.add(PropertyValuesHolder.ofFloat(View.TRANSLATION_X, value));
21 mProperties.add(PropertyValuesHolder.ofFloat(View.TRANSLATION_Y, value));
26 mProperties.add(PropertyValuesHolder.ofFloat(View.SCALE_X, value));
31 mProperties.add(PropertyValuesHolder.ofFloat(View.SCALE_Y, value));
43 mProperties.add(PropertyValuesHolder.ofFloat(View.ALPHA, value));
48 return mProperties.toArray(new PropertyValuesHolder[mProperties.size()]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 38 private final XmlProperty[] mProperties;
46 mProperties = properties;
52 return mProperties[0].getTitle();
57 return mProperties.length;
68 return Arrays.equals(mProperties, property.mProperties);
76 for (Property property : mProperties) {
88 for (Property property : mProperties) {
103 for (Property property : mProperties) {
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
LocalHvacPropertyService.java 63 private final Map<Pair, Object> mProperties = new HashMap<>();
100 return new CarPropertyValue(prop, zone, mProperties.get(new Pair(prop, zone)));
105 mProperties.put(new Pair(prop.getPropertyId(), prop.getAreaId()), prop.getValue());
118 mProperties.put(new Pair<>(CarHvacManager.ID_ZONED_HVAC_POWER_ON,
120 mProperties.put(new Pair<>(CarHvacManager.ID_WINDOW_DEFROSTER_ON,
122 mProperties.put(new Pair<>(CarHvacManager.ID_WINDOW_DEFROSTER_ON,
124 mProperties.put(new Pair<>(CarHvacManager.ID_ZONED_AIR_RECIRCULATION_ON,
126 mProperties.put(new Pair<>(CarHvacManager.ID_ZONED_AC_ON,
128 mProperties.put(new Pair<>(CarHvacManager.ID_ZONED_AUTOMATIC_MODE_ON,
131 mProperties.put(new Pair<>(CarHvacManager.ID_ZONED_FAN_SPEED_SETPOINT
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 83 private SparseArray<Object> mProperties;
165 if (mProperties == null) {
166 mProperties = new SparseArray<Object>(1);
169 mProperties.put(propertyName, value);
177 if (mProperties == null) {
181 return mProperties.get(propertyName);
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 38 ALOGD("Path: %s has %zu points", mName.c_str(), mProperties.getData().points.size());
61 VectorDrawableUtils::verbsToPath(&mSkPath, mProperties.getData());
70 mProperties.syncProperties(mStagingProperties);
72 mStagingProperties.syncProperties(mProperties);
108 if (!useStagingData && !mSkPathDirty && !mProperties.mTrimDirty) {
119 if (mProperties.getTrimPathStart() != 0.0f || mProperties.getTrimPathEnd() != 1.0f) {
120 mProperties.mTrimDirty = false;
121 applyTrim(&mTrimmedSkPath, mSkPath, mProperties.getTrimPathStart(),
122 mProperties.getTrimPathEnd(), mProperties.getTrimPathOffset())
    [all...]
VectorDrawable.h 180 } else if (prop == &mProperties){
191 PathProperties* mutateProperties() { return &mProperties; }
201 PathProperties mProperties = PathProperties(this);
368 FullPathProperties* mutateProperties() { return &mProperties; }
378 } else if (properties == &mProperties) {
389 FullPathProperties mProperties = FullPathProperties(this);
509 GroupProperties* mutateProperties() { return &mProperties; }
531 GroupProperties mProperties = GroupProperties(this);
561 mProperties.syncNonAnimatableProperties(mStagingProperties);
566 mProperties.syncAnimatableProperties(mStagingProperties)
    [all...]
  /system/core/libutils/
PropertyMap.cpp 43 mProperties.clear();
47 mProperties.add(key, value);
51 return mProperties.indexOfKey(key) >= 0;
55 ssize_t index = mProperties.indexOfKey(key);
60 outValue = mProperties.valueAt(index);
109 for (size_t i = 0; i < map->mProperties.size(); i++) {
110 mProperties.add(map->mProperties.keyAt(i), map->mProperties.valueAt(i));
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
Parallax.java 403 final List<PropertyT> mProperties = new ArrayList<PropertyT>();
404 final List<PropertyT> mPropertiesReadOnly = Collections.unmodifiableList(mProperties);
439 if (index >= mProperties.size()) {
454 int newPropertyIndex = mProperties.size();
479 mProperties.add(property);
489 if (mProperties.size() < 2) {
493 for (int i = 1; i < mProperties.size(); i++) {
498 i, mProperties.get(i).getName(),
499 i - 1, mProperties.get(i - 1).getName()));
503 i - 1, mProperties.get(i - 1).getName()
    [all...]
  /frameworks/wilhelm/src/itf/
IEnvironmentalReverb.cpp 52 thiz->mProperties.roomLevel = room;
87 REVERB_PARAM_ROOM_LEVEL, &thiz->mProperties.roomLevel);
91 *pRoom = thiz->mProperties.roomLevel;
113 thiz->mProperties.roomHFLevel = roomHF;
149 REVERB_PARAM_ROOM_HF_LEVEL, &thiz->mProperties.roomHFLevel);
153 *pRoomHF = thiz->mProperties.roomHFLevel;
172 thiz->mProperties.decayTime = decayTime;
208 REVERB_PARAM_DECAY_TIME, &thiz->mProperties.decayTime);
212 *pDecayTime = thiz->mProperties.decayTime;
231 thiz->mProperties.decayHFRatio = decayHFRatio
    [all...]
IPlaybackRate.cpp 36 result = android_audioPlayer_setPlaybackRateAndConstraints(ap, rate, thiz->mProperties);
99 thiz->mProperties = constraints;
117 SLuint32 properties = thiz->mProperties;
192 thiz->mProperties = SL_RATEPROP_NOPITCHCORAUDIO;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 42 private final AppearAnimationProperties mProperties = new AppearAnimationProperties();
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.maxDelayColIndex = -1
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 47 Intermediate mProperties;
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.captureProperties(properties)
    [all...]
  /frameworks/base/media/java/android/media/midi/
MidiDeviceInfo.java 198 private final Bundle mProperties;
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/av/media/libmedia/
MidiDeviceInfo.cpp 42 if (mProperties.getString(String16(propertyName), &value)) {
67 RETURN_IF_FAILED(mProperties.writeToParcel(parcel));
69 RETURN_IF_FAILED(mProperties.writeToParcel(parcel));
86 RETURN_IF_FAILED(mProperties.readFromParcel(parcel));
132 lhs.mProperties == rhs.mProperties &&
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 162 private final ProjectProperties mProperties;
187 mProperties = properties;
194 String rootPath = mProperties.getProperty(propName);
210 return mProperties;
214 if (mProperties != null) {
215 return mProperties.getProperty(name);
238 return mProperties.getProperty(ProjectProperties.PROPERTY_TARGET);
259 return mProperties.getProperty(ProjectProperties.PROPERTY_BUILD_TOOLS);
263 String supportModeValue = mProperties.getProperty(ProjectProperties.PROPERTY_RS_SUPPORT);
296 mProperties.reload()
    [all...]
  /system/core/libutils/include/utils/
PropertyMap.h 78 inline const KeyedVector<String8, String8>& getProperties() const { return mProperties; }
101 KeyedVector<String8, String8> mProperties;
  /packages/services/Car/service/src/com/android/car/hal/
PowerHalService.java 141 private final HashMap<Integer, VehiclePropConfig> mProperties = new HashMap<>();
225 VehiclePropConfig config = mProperties.get(VehicleProperty.AP_POWER_STATE);
230 VehiclePropConfig config = mProperties.get(VehicleProperty.AP_POWER_STATE);
239 VehiclePropConfig config = mProperties.get(
250 for (VehiclePropConfig config : mProperties.values()) {
255 VehiclePropConfig brightnessProperty = mProperties.get(DISPLAY_BRIGHTNESS);
269 mProperties.clear();
279 mProperties.put(config.prop, config);
283 return new LinkedList<>(mProperties.values());
AudioHalService.java 180 private final HashMap<Integer, VehiclePropConfig> mProperties = new HashMap<>();
224 VehiclePropConfig config = mProperties.get(VehicleProperty.AUDIO_VOLUME);
415 VehiclePropConfig config = mProperties.get(VehicleProperty.AUDIO_HW_VARIANT);
435 VehiclePropConfig config = mProperties.get(VehicleProperty.AUDIO_VOLUME);
447 VehiclePropConfig config = mProperties.get(VehicleProperty.AUDIO_VOLUME);
466 VehiclePropConfig config = mProperties.get(
532 config = mProperties.get(AUDIO_EXT_ROUTING_HINT);
575 VehiclePropConfig config = mProperties.get(property);
581 for (VehiclePropConfig config : mProperties.values()) {
603 for (VehiclePropConfig config : mProperties.values())
    [all...]
  /frameworks/base/services/core/java/com/android/server/location/
MockProvider.java 42 private final ProviderProperties mProperties;
62 mProperties = properties;
73 return mProperties;
  /cts/tests/core/runner/src/com/android/cts/runner/
CtsTestRunListener.java 206 private final Properties mProperties = new Properties();
215 mProperties.setProperty("user.home", "");
216 mProperties.setProperty("java.io.tmpdir", context.getCacheDir().getAbsolutePath());
220 mProperties.setProperty("android.cts.device.multicast",
228 mProperties.setProperty("android.cts.device.lowram",
234 System.setProperties(mProperties);
  /system/netd/server/
InterfaceControllerTest.cpp 83 EXPECT_CALL(mProperties, get(key, _))
88 EXPECT_CALL(mProperties, get(key, _))
93 EXPECT_CALL(mProperties, set(key, val)).WillOnce(Return(status));
112 StrictMock<MockProperties> mProperties;
116 return mProperties.get(key, dflt);
120 return mProperties.set(key, val);
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestLayer.cpp 69 for (auto property : mProperties) {
108 for (auto property : mProperties) {
115 for (auto property : mProperties) {

Completed in 1134 milliseconds

1 2 3 4 5 6 7 8 91011>>