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

1 2 3

  /external/robolectric/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);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEDisplacementMapElement.cpp 83 ChannelSelectorType propertyValue = SVGPropertyTraits<ChannelSelectorType>::fromString(value);
84 if (propertyValue > 0)
85 setXChannelSelectorBaseValue(propertyValue);
90 ChannelSelectorType propertyValue = SVGPropertyTraits<ChannelSelectorType>::fromString(value);
91 if (propertyValue > 0)
92 setYChannelSelectorBaseValue(propertyValue);
SVGFETurbulenceElement.cpp 98 TurbulenceType propertyValue = SVGPropertyTraits<TurbulenceType>::fromString(value);
99 if (propertyValue > 0)
100 setTypeBaseValue(propertyValue);
105 SVGStitchOptions propertyValue = SVGPropertyTraits<SVGStitchOptions>::fromString(value);
106 if (propertyValue > 0)
107 setStitchTilesBaseValue(propertyValue);
SVGGradientElement.cpp 86 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
87 if (propertyValue > 0)
88 setGradientUnitsBaseValue(propertyValue);
101 SVGSpreadMethodType propertyValue = SVGPropertyTraits<SVGSpreadMethodType>::fromString(value);
102 if (propertyValue > 0)
103 setSpreadMethodBaseValue(propertyValue);
SVGMaskElement.cpp 100 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
101 if (propertyValue > 0)
102 setMaskUnitsBaseValue(propertyValue);
105 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
106 if (propertyValue > 0)
107 setMaskContentUnitsBaseValue(propertyValue);
SVGTextPathElement.cpp 96 SVGTextPathMethodType propertyValue = SVGPropertyTraits<SVGTextPathMethodType>::fromString(value);
97 if (propertyValue > 0)
98 setMethodBaseValue(propertyValue);
100 SVGTextPathSpacingType propertyValue = SVGPropertyTraits<SVGTextPathSpacingType>::fromString(value);
101 if (propertyValue > 0)
102 setSpacingBaseValue(propertyValue);
SVGClipPathElement.cpp 74 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
75 if (propertyValue > 0)
76 setClipPathUnitsBaseValue(propertyValue);
SVGFEBlendElement.cpp 77 BlendModeType propertyValue = SVGPropertyTraits<BlendModeType>::fromString(value);
78 if (propertyValue > 0)
79 setModeBaseValue(propertyValue);
SVGFilterElement.cpp 128 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
129 if (propertyValue > 0)
130 setFilterUnitsBaseValue(propertyValue);
132 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
133 if (propertyValue > 0)
134 setPrimitiveUnitsBaseValue(propertyValue);
SVGComponentTransferFunctionElement.cpp 86 ComponentTransferType propertyValue = SVGPropertyTraits<ComponentTransferType>::fromString(value);
87 if (propertyValue > 0)
88 setTypeBaseValue(propertyValue);
SVGFEColorMatrixElement.cpp 77 ColorMatrixType propertyValue = SVGPropertyTraits<ColorMatrixType>::fromString(value);
78 if (propertyValue > 0)
79 setTypeBaseValue(propertyValue);
SVGFECompositeElement.cpp 89 CompositeOperationType propertyValue = SVGPropertyTraits<CompositeOperationType>::fromString(value);
90 if (propertyValue > 0)
91 setSVGOperatorBaseValue(propertyValue);
SVGFEMorphologyElement.cpp 98 MorphologyOperatorType propertyValue = SVGPropertyTraits<MorphologyOperatorType>::fromString(value);
99 if (propertyValue > 0)
100 setSVGOperatorBaseValue(propertyValue);
SVGPatternElement.cpp 110 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
111 if (propertyValue > 0)
112 setPatternUnitsBaseValue(propertyValue);
115 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
116 if (propertyValue > 0)
117 setPatternContentUnitsBaseValue(propertyValue);
SVGMarkerElement.cpp 133 SVGMarkerUnitsType propertyValue = SVGPropertyTraits<SVGMarkerUnitsType>::fromString(value);
134 if (propertyValue > 0)
135 setMarkerUnitsBaseValue(propertyValue);
SVGTextContentElement.cpp 254 SVGLengthAdjustType propertyValue = SVGPropertyTraits<SVGLengthAdjustType>::fromString(value);
255 if (propertyValue > 0)
256 setLengthAdjustBaseValue(propertyValue);
SVGFEConvolveMatrixElement.cpp 146 EdgeModeType propertyValue = SVGPropertyTraits<EdgeModeType>::fromString(value);
147 if (propertyValue > 0)
148 setEdgeModeBaseValue(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/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 69 const CSSValue* value() const { return propertyValue(); }
71 CSSValue* value() { return const_cast<CSSValue*>(propertyValue()); }
74 CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(propertyValue())); }
79 const CSSValue* propertyValue() const;
233 inline const CSSValue* StylePropertySet::PropertyReference::propertyValue() const
CSSStyleDeclaration.idl 38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptValue.cpp 129 RefPtr<JSONValue> propertyValue = v8ToJSONValue(object->Get(name), maxDepth);
130 if (!propertyValue)
132 jsonObject->setValue(toWebCoreStringWithNullCheck(name), propertyValue);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 78 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
80 return super.setProperty(objectView, propertyName, propertyValue);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.h 63 const AnimatableValue* propertyValue(CSSPropertyID) const;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 215 String propertyValue = toWebCoreStringWithNullCheck(value);
218 imp->setPropertyInternal(static_cast<CSSPropertyID>(propInfo->propID), propertyValue, false, es);

Completed in 483 milliseconds

1 2 3