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

1 2 3 4 5 6 7 8 9

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 21 String propertyValue = null;
23 propertyValue = properties.getProperty(propertyName);
25 if (propertyValue == null) {
26 propertyValue = System.getProperty(propertyName);
28 if (propertyValue == null) {
34 expandedValue = sdkPathStart + propertyValue + sdkPathEnd;
45 String propertyValue = properties.getProperty(propertyName);
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
PropertyCheck.java 48 String propertyValue = device.getProperty(mPropertyName);
49 if (propertyValue == null) {
55 if (!mExpectedPropertyValue.equalsIgnoreCase(propertyValue)) {
57 mExpectedPropertyValue, propertyValue, mPropertyName);
  /packages/services/Car/car-lib/src/android/car/hardware/
CarSensorManager.java 454 CarPropertyValue propertyValue = mCarPropertyMgr.getProperty(type, 0);
455 return createCarSensorEvent(propertyValue);
470 private CarSensorEvent createCarSensorEvent(CarPropertyValue propertyValue) {
472 switch (propertyValue.getPropertyId() & VehiclePropertyType.MASK) {
474 event = new CarSensorEvent(propertyValue.getPropertyId(),
475 propertyValue.getTimestamp(), 1, 0, 0);
476 event.floatValues[0] = (float) propertyValue.getValue();
479 event = new CarSensorEvent(propertyValue.getPropertyId(),
480 propertyValue.getTimestamp(), 0, 1, 0);
481 event.intValues[0] = (int) propertyValue.getValue()
    [all...]
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
HasPropertyWithValueTest.java 116 private final String propertyValue;
118 public BeanWithInfo(String propertyValue) {
119 this.propertyValue = propertyValue;
123 return propertyValue;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
SkipBeanTest.java 45 Object propertyValue, Tag customTag) {
46 if (propertyValue == null) {
50 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
65 Object propertyValue, Tag customTag) {
66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue,
  /test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/
VtsDeviceInfoCollector.java 77 String propertyValue = device.getProperty(entry.getValue());
78 if ((propertyValue == null || propertyValue.length() == 0)
80 propertyValue = device.getProperty(BUILD_LEGACY_PROPERTIES.get(entry.getValue()));
82 buildInfo.addBuildAttribute(entry.getKey(), ArrayUtil.join(",", propertyValue));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyComposite.java 89 Object propertyValue = property.getValue();
91 value = propertyValue;
92 } else if (!Objects.equal(value, propertyValue)) {
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 403 String propertyValue = null;
406 propertyValue = rb.getString (propertyName);
409 if (propertyValue != null) return propertyValue;
420 String propertyValue = null;
423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName);
426 if (propertyValue != null) return propertyValue;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
Representer.java 113 * @param propertyValue
121 Object propertyValue, Tag customTag) {
124 boolean hasAlias = this.representedObjects.containsKey(propertyValue);
126 Node nodeValue = representData(propertyValue);
128 if (propertyValue != null && !hasAlias) {
132 if (propertyValue instanceof Enum<?>) {
137 if (property.getType() == propertyValue.getClass()) {
138 if (!(propertyValue instanceof Map<?, ?>)) {
145 checkGlobalTag(property, nodeValue, propertyValue);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/
StackOverflowTest.java 57 Object propertyValue, Tag customTag) {
62 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
RecyclerViewUtil.java 129 @NonNull Object propertyValue, @NonNull String propertySetter)
131 Class<?> propertyClass = ReflectionUtils.getClassInstance(propertyValue, propertyClassName);
132 setProperty(object, propertyClass, propertyValue, propertySetter);
136 @Nullable Object propertyValue, @NonNull String propertySetter)
138 invoke(getMethod(object.getClass(), propertySetter, propertyClass), object, propertyValue);
  /packages/services/Car/service/src/com/android/car/
CarDrivingStateService.java 493 CarPropertyValue propertyValue = mPropertyService.getProperty(
496 if (propertyValue != null) {
497 mLastGear = (Integer) propertyValue.getValue();
498 mLastGearTimestamp = propertyValue.getTimestamp();
506 CarPropertyValue propertyValue = mPropertyService.getProperty(
509 if (propertyValue != null) {
510 mLastParkingBrakeState = (boolean) propertyValue.getValue();
511 mLastParkingBrakeTimestamp = propertyValue.getTimestamp();
519 CarPropertyValue propertyValue = mPropertyService.getProperty(
522 if (propertyValue != null)
    [all...]
  /build/soong/android/
variable.go 349 propertyValue := productVariablePropertyValue.Field(i)
350 kind := propertyValue.Kind()
352 if propertyValue.IsNil() {
355 propertyValue = propertyValue.Elem()
357 switch propertyValue.Kind() {
359 err := printfIntoProperty(propertyValue, variableValue)
364 for j := 0; j < propertyValue.Len(); j++ {
365 err := printfIntoProperty(propertyValue.Index(j), variableValue)
373 printfIntoProperties(ctx, prefix, propertyValue, variableValue
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
FlexibleScalarStylesInJavaBeanTest.java 118 Object propertyValue, Tag customTag) {
122 propertyValue, customTag);
143 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
  /frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/serialization/
KeyChainSnapshotSerializer.java 168 XmlSerializer xmlSerializer, String propertyName, long propertyValue)
171 xmlSerializer.text(Long.toString(propertyValue));
176 XmlSerializer xmlSerializer, String propertyName, String propertyValue)
179 xmlSerializer.text(propertyValue);
184 XmlSerializer xmlSerializer, String propertyName, byte[] propertyValue)
187 xmlSerializer.text(Base64.encodeToString(propertyValue, /*flags=*/ Base64.DEFAULT));
  /frameworks/av/media/ndk/include/media/
NdkMediaDrm.h 351 * On return, propertyValue will be set to point to the property value. The
356 const char **propertyValue);
366 * On return, *propertyValue will be set to point to the property value. The
371 AMediaDrmByteArray *propertyValue);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/development/
BluetoothMaxConnectedAudioDevicesPreferenceControllerTest.java 120 final String propertyValue = mListValues[i].toString();
121 SystemProperties.set(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY, propertyValue);
129 .isEqualTo(propertyValue);
  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 518 const char **propertyValue) {
523 if (!propertyName || !propertyValue) {
531 *propertyValue = mObj->mPropertyString.string();
533 *propertyValue = NULL;
540 const char *propertyName, AMediaDrmByteArray *propertyValue) {
544 if (!propertyName || !propertyValue) {
552 propertyValue->ptr = mObj->mPropertyByteArray.array();
553 propertyValue->length = mObj->mPropertyByteArray.size();
555 propertyValue->ptr = NULL;
556 propertyValue->length = 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
eventsys.h 261 virtual HRESULT WINAPI GetDefaultProperty(BSTR bstrPropertyName,VARIANT *propertyValue) = 0;
262 virtual HRESULT WINAPI PutDefaultProperty(BSTR bstrPropertyName,VARIANT *propertyValue) = 0;
286 HRESULT (WINAPI *GetDefaultProperty)(IEventPublisher *This,BSTR bstrPropertyName,VARIANT *propertyValue);
287 HRESULT (WINAPI *PutDefaultProperty)(IEventPublisher *This,BSTR bstrPropertyName,VARIANT *propertyValue);
313 #define IEventPublisher_GetDefaultProperty(This,bstrPropertyName,propertyValue) (This)->lpVtbl->GetDefaultProperty(This,bstrPropertyName,propertyValue)
314 #define IEventPublisher_PutDefaultProperty(This,bstrPropertyName,propertyValue) (This)->lpVtbl->PutDefaultProperty(This,bstrPropertyName,propertyValue)
339 HRESULT WINAPI IEventPublisher_GetDefaultProperty_Proxy(IEventPublisher *This,BSTR bstrPropertyName,VARIANT *propertyValue);
341 HRESULT WINAPI IEventPublisher_PutDefaultProperty_Proxy(IEventPublisher *This,BSTR bstrPropertyName,VARIANT *propertyValue);
    [all...]
  /external/v8/src/inspector/
v8-value-copier.cc 153 std::unique_ptr<protocol::Value> propertyValue;
155 toProtocolValue(context, property, maxDepth, &propertyValue);
158 std::move(propertyValue));
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
BaseDevicePolicyTest.java 454 String propertyValue = getDevice().getProperty(key);
455 if (propertyValue == null || propertyValue.isEmpty()) {
458 if (Arrays.asList(positiveValues).contains(propertyValue)) {
461 if (Arrays.asList(negativeValues).contains(propertyValue)) {
464 fail("Unexpected value of boolean system property '" + key + "': " + propertyValue);
    [all...]
  /external/testng/src/main/java/org/testng/xml/
TestNGContentHandler.java 794 String propertyValue = System.getProperty(property);
795 if (propertyValue == null) {
796 propertyValue = System.getenv(property);
798 if (propertyValue != null) {
799 result.append(propertyValue);
  /external/proguard/src/proguard/
ConfigurationParser.java     [all...]
  /packages/apps/Car/Hvac/src/com/android/car/hvac/
HvacController.java 246 public static <E> E getValue(CarPropertyValue propertyValue) {
247 return (E) propertyValue.getValue();
250 public static boolean isAvailable(CarPropertyValue propertyValue) {
251 return propertyValue.getStatus() == CarPropertyValue.STATUS_AVAILABLE;
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.4.0.Final/
os-maven-plugin-1.4.0.Final.jar 

Completed in 1478 milliseconds

1 2 3 4 5 6 7 8 9