/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)
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/ |
ProjectProperties.java | 41 * <p/>The class is associated to a {@link PropertyType} that indicate which of the project 43 * <p/>To load an existing file, use {@link #load(IAbstractFolder, PropertyType)}. 48 * either through {@link #create(IAbstractFolder, PropertyType)} or through 85 public static enum PropertyType { 109 PropertyType(String filename, String header, String[] validProps, String[] removedProps) { 204 protected final PropertyType mType; 211 * @param type One the possible {@link PropertyType}s. 213 public static ProjectProperties load(String projectFolderOsPath, PropertyType type) { 223 * @param type One the possible {@link PropertyType}s. 225 public static ProjectProperties load(IAbstractFolder projectFolder, PropertyType type) [all...] |
ProjectCreator.java | 26 import com.android.sdklib.internal.project.ProjectProperties.PropertyType; 202 PropertyType.LOCAL); 208 PropertyType.PROJECT); 217 PropertyType.ANT); 458 ProjectProperties props = ProjectProperties.load(projectFolder, PropertyType.PROJECT); 462 props = ProjectProperties.load(projectFolder, PropertyType.LEGACY_DEFAULT); 490 propsWC = ProjectProperties.create(projectFolder, PropertyType.PROJECT); 492 propsWC = props.makeWorkingCopy(PropertyType.PROJECT); 558 PropertyType.LEGACY_DEFAULT.getFilename(), 559 PropertyType.PROJECT.getFilename()) [all...] |
ProjectPropertiesWorkingCopy.java | 42 * {@link ProjectProperties#create(IAbstractFolder, PropertyType)}. 93 * <li>Create a ProjectProperties with {@code PropertyType#BUILD} 94 * <li>Merge in values using {@code PropertyType#DEFAULT} 99 * @param type One the possible {@link PropertyType}s. 105 public synchronized ProjectPropertiesWorkingCopy merge(PropertyType type) { 201 // write the header (can be null, for example for PropertyType.LEGACY_BUILD) 239 * Use {@link #load(String, PropertyType)} or {@link #create(String, PropertyType)} 243 PropertyType type) {
|
/external/v8/src/ |
property.h | 94 PropertyType type, 227 PropertyType type() {
|
stub-cache.h | 607 MUST_USE_RESULT MaybeObject* GetCode(PropertyType type, String* name); 639 MaybeObject* GetCode(PropertyType type, String* name); 664 MaybeObject* GetCode(PropertyType type, String* name); 683 MaybeObject* GetCode(PropertyType type, String* name); 766 MUST_USE_RESULT MaybeObject* GetCode(PropertyType type, String* name); [all...] |
mirror-debugger.js | 171 // A copy of the PropertyType enum from global.h 172 PropertyType = {}; 173 PropertyType.Normal = 0; 174 PropertyType.Field = 1; 175 PropertyType.ConstantFunction = 2; 176 PropertyType.Callbacks = 3; 177 PropertyType.Interceptor = 4; 178 PropertyType.MapTransition = 5; 179 PropertyType.ExternalArrayTransition = 6; 180 PropertyType.ConstantTransition = 7 [all...] |
v8globals.h | 320 enum PropertyType {
|
disassembler.cc | 248 PropertyType type = code->type();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
NewProjectWizardState.java | 25 import com.android.sdklib.internal.project.ProjectProperties.PropertyType; 322 PropertyType.PROJECT);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
Sdk.java | 44 import com.android.sdklib.internal.project.ProjectProperties.PropertyType; 335 properties = ProjectProperties.create(location.toOSString(), PropertyType.PROJECT); 375 PropertyType.PROJECT); 379 PropertyType.LEGACY_DEFAULT); 390 PropertyType.PROJECT); 396 ProjectProperties.delete(projectLocation, PropertyType.LEGACY_DEFAULT); 400 PropertyType.PROJECT.getFilename(), project.getName()); [all...] |
/sdk/anttasks/src/com/android/ant/ |
NewSetupTask.java | 28 import com.android.sdklib.internal.project.ProjectProperties.PropertyType; 565 new FolderWrapper(library), PropertyType.PROJECT); 611 File projectProp = new File(library, PropertyType.PROJECT.getFilename()); 616 PropertyType.PROJECT.getFilename(), baseFolder.getAbsolutePath()));
|
/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'); 198 assertEquals(debug.PropertyType.Callbacks, mirror.property('a').propertyType()); 205 assertEquals(debug.PropertyType.Callbacks, mirror.property('b').propertyType()); 213 assertEquals(debug.PropertyType.Callbacks, mirror.property('c').propertyType()) [all...] |
/external/chromium/testing/gmock/include/gmock/ |
gmock-matchers.h | [all...] |