HomeSort by relevance Sort by last modified time
    Searched refs:propertyValue (Results 1 - 25 of 73) 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 82 ChannelSelectorType propertyValue = SVGPropertyTraits<ChannelSelectorType>::fromString(value);
83 if (propertyValue > 0)
84 setXChannelSelectorBaseValue(propertyValue);
89 ChannelSelectorType propertyValue = SVGPropertyTraits<ChannelSelectorType>::fromString(value);
90 if (propertyValue > 0)
91 setYChannelSelectorBaseValue(propertyValue);
SVGFETurbulenceElement.cpp 97 TurbulenceType propertyValue = SVGPropertyTraits<TurbulenceType>::fromString(value);
98 if (propertyValue > 0)
99 setTypeBaseValue(propertyValue);
104 SVGStitchOptions propertyValue = SVGPropertyTraits<SVGStitchOptions>::fromString(value);
105 if (propertyValue > 0)
106 setStitchTilesBaseValue(propertyValue);
SVGGradientElement.cpp 84 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
85 if (propertyValue > 0)
86 setGradientUnitsBaseValue(propertyValue);
99 SVGSpreadMethodType propertyValue = SVGPropertyTraits<SVGSpreadMethodType>::fromString(value);
100 if (propertyValue > 0)
101 setSpreadMethodBaseValue(propertyValue);
SVGMaskElement.cpp 97 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
98 if (propertyValue > 0)
99 setMaskUnitsBaseValue(propertyValue);
102 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
103 if (propertyValue > 0)
104 setMaskContentUnitsBaseValue(propertyValue);
SVGTextPathElement.cpp 92 SVGTextPathMethodType propertyValue = SVGPropertyTraits<SVGTextPathMethodType>::fromString(value);
93 if (propertyValue > 0)
94 setMethodBaseValue(propertyValue);
96 SVGTextPathSpacingType propertyValue = SVGPropertyTraits<SVGTextPathSpacingType>::fromString(value);
97 if (propertyValue > 0)
98 setSpacingBaseValue(propertyValue);
SVGClipPathElement.cpp 72 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
73 if (propertyValue > 0)
74 setClipPathUnitsBaseValue(propertyValue);
SVGFEBlendElement.cpp 76 BlendModeType propertyValue = SVGPropertyTraits<BlendModeType>::fromString(value);
77 if (propertyValue > 0)
78 setModeBaseValue(propertyValue);
SVGComponentTransferFunctionElement.cpp 86 ComponentTransferType propertyValue = SVGPropertyTraits<ComponentTransferType>::fromString(value);
87 if (propertyValue > 0)
88 setTypeBaseValue(propertyValue);
SVGFEColorMatrixElement.cpp 76 ColorMatrixType propertyValue = SVGPropertyTraits<ColorMatrixType>::fromString(value);
77 if (propertyValue > 0)
78 setTypeBaseValue(propertyValue);
SVGFECompositeElement.cpp 88 CompositeOperationType propertyValue = SVGPropertyTraits<CompositeOperationType>::fromString(value);
89 if (propertyValue > 0)
90 setSVGOperatorBaseValue(propertyValue);
SVGFEMorphologyElement.cpp 97 MorphologyOperatorType propertyValue = SVGPropertyTraits<MorphologyOperatorType>::fromString(value);
98 if (propertyValue > 0)
99 setSVGOperatorBaseValue(propertyValue);
SVGFilterElement.cpp 126 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
127 if (propertyValue > 0)
128 setFilterUnitsBaseValue(propertyValue);
130 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
131 if (propertyValue > 0)
132 setPrimitiveUnitsBaseValue(propertyValue);
SVGPatternElement.cpp 107 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
108 if (propertyValue > 0)
109 setPatternUnitsBaseValue(propertyValue);
112 SVGUnitTypes::SVGUnitType propertyValue = SVGPropertyTraits<SVGUnitTypes::SVGUnitType>::fromString(value);
113 if (propertyValue > 0)
114 setPatternContentUnitsBaseValue(propertyValue);
SVGMarkerElement.cpp 131 SVGMarkerUnitsType propertyValue = SVGPropertyTraits<SVGMarkerUnitsType>::fromString(value);
132 if (propertyValue > 0)
133 setMarkerUnitsBaseValue(propertyValue);
SVGTextContentElement.cpp 252 SVGLengthAdjustType propertyValue = SVGPropertyTraits<SVGLengthAdjustType>::fromString(value);
253 if (propertyValue > 0)
254 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 70 const CSSValue* value() const { return propertyValue(); }
72 CSSValue* value() { return const_cast<CSSValue*>(propertyValue()); }
75 CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(propertyValue())); }
80 const CSSValue* propertyValue() const;
274 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 109 RefPtr<JSONValue> propertyValue = v8ToJSONValue(object->Get(name), maxDepth, isolate);
110 if (!propertyValue)
113 jsonObject->setValue(nameString, 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 64 const AnimatableValue* propertyValue(CSSPropertyID) const;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 234 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<WithNullCheck>, propertyValue, value);
236 imp->setPropertyInternal(static_cast<CSSPropertyID>(propInfo->propID), propertyValue, false, exceptionState);

Completed in 274 milliseconds

1 2 3