Home
last modified time | relevance | path

Searched refs:m_property (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/animation/
DKeyframeValueList.h51 : m_property(property) in KeyframeValueList()
56 : m_property(other.property()) in KeyframeValueList()
71 std::swap(m_property, other.m_property); in swap()
75 AnimatedPropertyID property() const { return m_property; } in property()
85 AnimatedPropertyID m_property; variable
/external/chromium_org/third_party/WebKit/Source/core/editing/
DRemoveCSSPropertyCommand.cpp40 , m_property(property) in RemoveCSSPropertyCommand()
56 m_oldValue = style->getPropertyValue(m_property); in doApply()
57 m_important = style->propertyIsImportant(m_property); in doApply()
61 m_element->style()->setPropertyInternal(m_property, String(), false, IGNORE_EXCEPTION); in doApply()
66 m_element->style()->setPropertyInternal(m_property, m_oldValue, m_important, IGNORE_EXCEPTION); in doUnapply()
DRemoveCSSPropertyCommand.h53 CSSPropertyID m_property; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
DPropertyTableTooltipHelper.java73 private Property m_property; field in PropertyTableTooltipHelper
91 m_property = property; in update()
126 if (m_property == null) { in showTooltip()
131 showTooltip(m_property.getAdapter(PropertyTooltipProvider.class), m_beginX, m_endX); in showTooltip()
134 showTooltip(m_property.getEditor().getAdapter(PropertyTooltipProvider.class), in showTooltip()
150 Control control = provider.createTooltipControl(m_property, m_tooltip, endX - startX, this); in showTooltip()
DPropertyTable.java593 if (m_activePropertyInfo != null && m_activePropertyInfo.m_property != null) { in deactivateEditor()
594 activeEditor.deactivate(this, m_activePropertyInfo.m_property, save); in deactivateEditor()
626 m_activePropertyInfo.m_property, in setActiveEditorBounds()
883 if (propertyInfo.m_property == property) { in setActiveProperty()
1356 private final Property m_property; field in PropertyTable.PropertyInfo
1376 m_property = property; in PropertyInfo()
1423 return m_property; in getProperty()
1492 if (!rawProperties_shouldShow(child.m_property)) { in addChildren()
1512 if (!rawProperties_shouldShow(child.m_property)) { in removeChildren()
1550 IComplexPropertyEditor complexEditor = (IComplexPropertyEditor) m_property.getEditor(); in getSubProperties()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
DStringPropertyDialog.java47 private final Property m_property; field in StringPropertyDialog
56 m_property = property; in StringPropertyDialog()
92 Object value = m_property.getValue(); in createDialogArea()
135 m_property.setValue(value); in okPressed()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DCompositorAnimationsTestHelper.h70 WebCompositorAnimation::TargetProperty m_property;
74 WebCompositorAnimationMock(WebCompositorAnimation::TargetProperty p) : m_property(p) { } in WebCompositorAnimationMock()
75 virtual WebCompositorAnimation::TargetProperty targetProperty() const { return m_property; }; in targetProperty()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DScriptPromisePropertyTest.cpp87 …, m_property(new Property(executionContext, toGarbageCollectedScriptWrappable(), Property::Ready))… in GarbageCollectedHolder()
89 Property* property() { return m_property; } in property()
95 visitor->trace(m_property); in trace()
99 Member<Property> m_property; member in __anon77fc8f4c0111::GarbageCollectedHolder
111 Property* property() { return m_property; } in property()
117 … , m_property(new Property(executionContext, toRefCountedScriptWrappable(), Property::Ready)) { } in RefCountedHolder()
119 Persistent<Property> m_property; member in __anon77fc8f4c0111::RefCountedHolder
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimations.h244 , m_property(property) in TransitionEventDelegate()
253 const CSSPropertyID m_property; variable
DCSSAnimations.cpp644 String propertyName = getPropertyNameString(m_property); in onEventCondition()