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

1 2 3 4

  /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);
  /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 77 const CSSValue* value() const { return propertyValue(); }
79 CSSValue* value() { return const_cast<CSSValue*>(propertyValue()); }
82 CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(propertyValue())); }
87 const CSSValue* propertyValue() const;
262 inline const CSSValue* StylePropertySet::PropertyReference::propertyValue() const
CSSStyleDeclaration.idl 38 [Custom] setter void (DOMString propertyName, [TreatNullAs=NullString] DOMString propertyValue);
PropertySetCSSStyleDeclaration.cpp 300 bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const
302 return propertySet().propertyMatches(propertyID, propertyValue);
StylePropertySet.cpp 483 bool StylePropertySet::propertyMatches(CSSPropertyID propertyID, const CSSValue* propertyValue) const
488 return propertyAt(foundPropertyIndex).value()->equals(*propertyValue);
612 result.append(propertyValue()->cssText());
  /frameworks/av/include/ndk/
NdkMediaDrm.h 353 * On return, propertyValue will be set to point to the property value. The
358 const char **propertyValue);
368 * On return, *propertyValue will be set to point to the property value. The
373 AMediaDrmByteArray *propertyValue);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 83 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
85 return super.setProperty(objectView, propertyName, propertyValue);
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/media/
NdkMediaDrm.h 353 * On return, propertyValue will be set to point to the property value. The
358 const char **propertyValue);
368 * On return, *propertyValue will be set to point to the property value. The
373 AMediaDrmByteArray *propertyValue);
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/media/
NdkMediaDrm.h 353 * On return, propertyValue will be set to point to the property value. The
358 const char **propertyValue);
368 * On return, *propertyValue will be set to point to the property value. The
373 AMediaDrmByteArray *propertyValue);
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/media/
NdkMediaDrm.h 353 * On return, propertyValue will be set to point to the property value. The
358 const char **propertyValue);
368 * On return, *propertyValue will be set to point to the property value. The
373 AMediaDrmByteArray *propertyValue);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableValueKeyframe.h 24 AnimatableValue* propertyValue(CSSPropertyID property) const
StringKeyframe.h 23 CSSValue* propertyValue(CSSPropertyID property) const
AnimatableValueKeyframe.cpp 36 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), easing(), propertyValue(property), composite()));
StringKeyframe.cpp 47 return adoptPtrWillBeNoop(new PropertySpecificKeyframe(offset(), easing(), propertyValue(property), composite()));
AnimationTest.cpp 95 const CSSValue* keyframe1Width = toStringKeyframe(keyframes[0].get())->propertyValue(CSSPropertyWidth);
96 const CSSValue* keyframe2Width = toStringKeyframe(keyframes[1].get())->propertyValue(CSSPropertyWidth);
  /frameworks/av/media/ndk/
NdkMediaDrm.cpp 520 const char **propertyValue) {
525 if (!propertyName || !propertyValue) {
533 *propertyValue = mObj->mPropertyString.string();
535 *propertyValue = NULL;
542 const char *propertyName, AMediaDrmByteArray *propertyValue) {
546 if (!propertyName || !propertyValue) {
554 propertyValue->ptr = mObj->mPropertyByteArray.array();
555 propertyValue->length = mObj->mPropertyByteArray.size();
557 propertyValue->ptr = NULL;
558 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/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 222 TOSTRING_VOID(V8StringResource<WithNullCheck>, propertyValue, value);
224 impl->setPropertyInternal(static_cast<CSSPropertyID>(propInfo->propID), propertyValue, false, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js 345 var propertyValue = property.value ? this._target.runtimeModel.createRemoteObject(property.value) : null;
347 var remoteProperty = new WebInspector.RemoteObjectProperty(property.name, propertyValue,
366 var propertyValue = this._target.runtimeModel.createRemoteObject(property.value);
367 internalPropertiesResult.push(new WebInspector.RemoteObjectProperty(property.name, propertyValue, true, false));
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestSpecialOperations.cpp 118 TONATIVE_VOID(Node*, propertyValue, V8Node::toNativeWithTypeCheck(info.GetIsolate(), v8Value));
119 bool result = impl->anonymousNamedSetter(propertyName, propertyValue);
V8TestInterface2.cpp 253 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value);
255 bool result = impl->setItem(index, propertyValue, exceptionState);
323 TOSTRING_VOID(V8StringResource<>, propertyValue, v8Value);
326 bool result = impl->setNamedItem(propertyName, propertyValue, exceptionState);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
VCSUtils.pm     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp     [all...]

Completed in 1960 milliseconds

1 2 3 4