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

1 2

  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 28 template<typename PropertyType>
31 PropertyType& baseVal()
36 PropertyType& animVal()
42 void setBaseVal(const PropertyType& property)
49 void setAnimVal(const PropertyType&) { }
54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
67 PropertyType& m_property
    [all...]
SVGAnimatedPropertyTearOff.h 29 template<typename PropertyType>
35 m_baseVal = SVGPropertyTearOff<PropertyType>::create(this, BaseValRole, m_property);
42 m_animVal = SVGPropertyTearOff<PropertyType>::create(this, AnimValRole, m_property);
49 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
52 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, property));
55 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
62 PropertyType& m_property;
SVGPropertyTearOff.h 30 template<typename PropertyType>
33 typedef SVGPropertyTearOff<PropertyType> Self;
37 static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
44 static PassRefPtr<Self> create(const PropertyType& initialValue)
49 PropertyType& propertyReference() { return *m_value; }
53 void setValue(PropertyType& value)
82 m_value = new PropertyType(*m_value);
97 SVGPropertyTearOff(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
107 SVGPropertyTearOff(const PropertyType& initialValue)
110 , m_value(new PropertyType(initialValue)
    [all...]
SVGAnimatedListPropertyTearOff.h 30 template<typename PropertyType>
33 template<typename PropertyType>
36 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
43 m_baseVal = SVGListPropertyTearOff<PropertyType>::create(this, BaseValRole);
50 m_animVal = SVGListPropertyTearOff<PropertyType>::create(this, AnimValRole);
59 typedef SVGPropertyTearOff<typename SVGPropertyTraits<PropertyType>::ListItemType> ListItemTearOff;
60 return static_pointer_cast<SVGListPropertyTearOff<PropertyType> >(m_baseVal)->removeItemFromList(static_cast<ListItemTearOff*>(property), shouldSynchronizeWrappers);
82 PropertyType& values() { return m_values; }
88 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values
    [all...]
SVGStaticPropertyTearOff.h 33 template<typename ContextElement, typename PropertyType>
34 class SVGStaticPropertyTearOff : public SVGPropertyTearOff<PropertyType> {
36 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self;
41 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
50 SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
51 : SVGPropertyTearOff<PropertyType>(0, UndefinedRole, value)
SVGStaticPropertyWithParentTearOff.h 33 template<typename ParentType, typename PropertyType>
34 class SVGStaticPropertyWithParentTearOff : public SVGPropertyTearOff<PropertyType> {
36 typedef SVGStaticPropertyWithParentTearOff<ParentType, PropertyType> Self;
42 static PassRefPtr<Self> create(SVGProperty* parent, PropertyType& value, UpdateMethod update)
55 SVGStaticPropertyWithParentTearOff(SVGProperty* parent, PropertyType& value, UpdateMethod update)
56 : SVGPropertyTearOff<PropertyType>(0, UndefinedRole, value)
SVGStaticListPropertyTearOff.h 28 template<typename PropertyType>
29 class SVGStaticListPropertyTearOff : public SVGListProperty<PropertyType> {
31 typedef SVGListProperty<PropertyType> Base;
33 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
36 static PassRefPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, PropertyType& values)
39 return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(contextElement, values));
84 SVGStaticListPropertyTearOff(SVGElement* contextElement, PropertyType& values)
85 : SVGListProperty<PropertyType>(UndefinedRole)
108 PropertyType& m_values
    [all...]
SVGAnimatedPropertyMacros.h 66 template<typename PropertyType>
69 : value(SVGPropertyTraits<PropertyType>::initialValue())
88 PropertyType value;
92 #define DEFINE_ANIMATED_PROPERTY(OwnerType, DOMAttribute, SVGDOMAttributeIdentifier, TearOffType, PropertyType, UpperProperty, LowerProperty) \
97 AtomicString value(SVGPropertyTraits<PropertyType>::toString(LowerProperty##BaseValue())); \
106 return SVGAnimatedProperty::lookupOrCreateWrapper<TearOffType, PropertyType>(contextElement, DOMAttribute, SVGDOMAttributeIdentifier, m_##LowerProperty.value); \
109 #define DECLARE_ANIMATED_PROPERTY(TearOffType, PropertyType, UpperProperty, LowerProperty) \
111 PropertyType& LowerProperty() const \
116 PropertyType& LowerProperty##BaseValue() const \
121 void set##UpperProperty##BaseValue(const PropertyType& type)
    [all...]
SVGListProperty.h 31 template<typename PropertyType>
34 template<typename PropertyType>
37 typedef SVGListProperty<PropertyType> Self;
39 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
42 typedef SVGAnimatedListPropertyTearOff<PropertyType> AnimatedListPropertyTearOff;
43 typedef typename SVGAnimatedListPropertyTearOff<PropertyType>::ListWrapperCache ListWrapperCache;
56 void clearValues(PropertyType& values, ExceptionCode& ec)
77 unsigned numberOfItemsValues(PropertyType& values) const
89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec)
117 PropertyType& values = animatedList->values()
    [all...]
SVGListPropertyTearOff.h 28 template<typename PropertyType>
29 class SVGListPropertyTearOff : public SVGListProperty<PropertyType> {
31 typedef SVGListProperty<PropertyType> Base;
33 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
36 typedef SVGAnimatedListPropertyTearOff<PropertyType> AnimatedListPropertyTearOff;
37 typedef typename SVGAnimatedListPropertyTearOff<PropertyType>::ListWrapperCache ListWrapperCache;
39 static PassRefPtr<SVGListPropertyTearOff<PropertyType> > create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role)
42 return adoptRef(new SVGListPropertyTearOff<PropertyType>(animatedProperty, role));
47 PropertyType& values = m_animatedProperty->values();
114 : SVGListProperty<PropertyType>(role
    [all...]
SVGPropertyTraits.h 29 template<typename PropertyType>
SVGAnimatedProperty.h 64 template<typename TearOffType, typename PropertyType>
65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property)
  /external/v8/src/
property-details.h 57 enum PropertyType {
81 PropertyType type,
100 PropertyType type() { return TypeField::decode(value_); }
119 class TypeField: public BitField<PropertyType, 0, 4> {};
property.h 95 PropertyType type,
269 PropertyType type() {
stub-cache.h 612 Handle<Code> GetCode(PropertyType type, Handle<String> name);
660 Handle<Code> GetCode(PropertyType type,
689 Handle<Code> GetCode(PropertyType type, Handle<String> name);
730 Handle<Code> GetCode(PropertyType type,
    [all...]
mirror-debugger.js 171 // A copy of the PropertyType enum from global.h
172 var PropertyType = {};
173 PropertyType.Normal = 0;
174 PropertyType.Field = 1;
175 PropertyType.ConstantFunction = 2;
176 PropertyType.Callbacks = 3;
177 PropertyType.Handler = 4;
178 PropertyType.Interceptor = 5;
179 PropertyType.MapTransition = 6;
180 PropertyType.ExternalArrayTransition = 7
    [all...]
disassembler.cc 247 PropertyType type = code->type();
stub-cache.cc 370 PropertyType type = (transition.is_null()) ? FIELD : MAP_TRANSITION;
520 PropertyType type = (transition.is_null()) ? FIELD : MAP_TRANSITION;
    [all...]
preparser.h 174 enum PropertyType {
184 // Checks the type of conflict based on values coming from PropertyType.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ImportedProject.java 32 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
196 PropertyType.PROJECT);
NewProjectWizardState.java 28 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
337 PropertyType.PROJECT);
  /external/v8/test/mjsunit/
mirror-object.js 120 if (properties[i].propertyType() != debug.PropertyType.Normal) {
121 assertEquals(properties[i].propertyType(), fromJSON.properties[i].propertyType, 'Unexpected serialized property type');
123 assertTrue(typeof(fromJSON.properties[i].propertyType) === 'undefined', 'Unexpected serialized property type');
203 assertEquals(debug.PropertyType.Callbacks, mirror.property('a').propertyType());
210 assertEquals(debug.PropertyType.Callbacks, mirror.property('b').propertyType());
218 assertEquals(debug.PropertyType.Callbacks, mirror.property('c').propertyType())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
Sdk.java 52 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
421 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT);
462 PropertyType.PROJECT);
466 PropertyType.LEGACY_DEFAULT);
477 PropertyType.PROJECT);
483 ProjectProperties.delete(projectLocation, PropertyType.LEGACY_DEFAULT);
487 PropertyType.PROJECT);
491 PropertyType.PROJECT.getFilename(), project.getName());
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 29 import com.android.sdklib.internal.project.ProjectProperties.PropertyType;
391 PropertyType.PROJECT);
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]

Completed in 507 milliseconds

1 2