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

1 2 3

  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 10 from model import Property, PropertyType, Type
45 PropertyType.BOOLEAN: '%s->GetAsBoolean(%s)',
46 PropertyType.DOUBLE: '%s->GetAsDouble(%s)',
47 PropertyType.INTEGER: '%s->GetAsInteger(%s)',
48 PropertyType.STRING: '%s->GetAsString(%s)',
55 PropertyType.ARRAY: 'base::Value::TYPE_LIST',
56 PropertyType.BINARY: 'base::Value::TYPE_BINARY',
57 PropertyType.BOOLEAN: 'base::Value::TYPE_BOOLEAN',
58 # PropertyType.CHOICES can be any combination of types.
59 PropertyType.DOUBLE: 'base::Value::TYPE_DOUBLE'
    [all...]
cpp_type_generator.py 6 from model import Namespace, PropertyType, Type
88 if type_.property_type == PropertyType.REF:
96 elif type_.property_type == PropertyType.BOOLEAN:
98 elif type_.property_type == PropertyType.INTEGER:
100 elif type_.property_type == PropertyType.INT64:
102 elif type_.property_type == PropertyType.DOUBLE:
104 elif type_.property_type == PropertyType.STRING:
106 elif type_.property_type == PropertyType.ENUM:
108 elif type_.property_type == PropertyType.ANY:
110 elif (type_.property_type == PropertyType.OBJECT o
    [all...]
cc_generator.py 6 from model import PropertyType, Type
109 elif type_.property_type == PropertyType.ARRAY:
111 elif type_.property_type in (PropertyType.CHOICES,
112 PropertyType.OBJECT):
118 if type_.property_type == PropertyType.OBJECT:
135 elif type_.property_type == PropertyType.ENUM:
149 if t.property_type == PropertyType.INTEGER:
151 elif t.property_type == PropertyType.DOUBLE:
153 elif t.property_type == PropertyType.BOOLEAN:
155 elif (t.property_type == PropertyType.ANY o
    [all...]
model_test.py 47 self.assertEquals(model.PropertyType.STRING,
50 self.assertEquals(model.PropertyType.INTEGER,
53 self.assertEquals(model.PropertyType.ARRAY,
55 self.assertEquals(model.PropertyType.REF,
59 self.assertEquals(model.PropertyType.OBJECT,
67 self.assertEquals(model.PropertyType.CHOICES,
dart_generator.py 108 if type_.property_type is PropertyType.ENUM:
316 elif p.type_.property_type is PropertyType.ARRAY:
644 return type_.property_type == PropertyType.FUNCTION
655 if type_.property_type is PropertyType.CHOICES:
657 if type_.property_type is PropertyType.REF:
661 if (type_.property_type == PropertyType.OBJECT
670 or type_.property_type in [PropertyType.OBJECT, PropertyType.ANY])
680 if type_.property_type is PropertyType.CHOICES:
682 if type_.property_type is PropertyType.REF
    [all...]
h_generator.py 6 from model import PropertyType, Type
129 if (prop.type_ == PropertyType.REF and
162 is_ptr = prop.optional or prop.type_.property_type == PropertyType.ANY
190 elif type_.property_type == PropertyType.ARRAY:
199 elif type_.property_type == PropertyType.STRING:
204 elif type_.property_type == PropertyType.ENUM:
221 elif type_.property_type in (PropertyType.CHOICES,
222 PropertyType.OBJECT):
245 if type_.property_type is PropertyType.CHOICES else
252 if type_.property_type == PropertyType.CHOICES
    [all...]
model.py 106 - |property_type| the PropertyType of this Type
135 self.property_type = PropertyType.ARRAY
139 self.property_type = PropertyType.REF
142 self.property_type = PropertyType.ENUM
145 self.property_type = PropertyType.ANY
147 self.property_type = PropertyType.BINARY
149 self.property_type = PropertyType.BOOLEAN
151 self.property_type = PropertyType.INTEGER
154 self.property_type = PropertyType.DOUBLE
156 self.property_type = PropertyType.STRIN
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 29 template<typename PropertyType>
32 typedef PropertyType ContentType;
34 PropertyType& baseVal()
39 PropertyType& animVal()
46 virtual void setBaseVal(const PropertyType& property, ExceptionState&)
52 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
55 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
58 PropertyType& currentAnimatedValue()
65 const PropertyType& currentBaseValue() cons
    [all...]
SVGStaticPropertyTearOff.h 32 template<typename ContextElement, typename PropertyType>
33 class SVGStaticPropertyTearOff : public SVGPropertyTearOff<PropertyType> {
35 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self;
40 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
49 SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
50 : SVGPropertyTearOff<PropertyType>(0, UndefinedRole, value)
SVGAnimatedPropertyTearOff.h 29 template<typename PropertyType>
32 typedef SVGPropertyTearOff<PropertyType> PropertyTearOff;
33 typedef PropertyType ContentType;
61 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
64 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
67 PropertyType& currentAnimatedValue()
74 const PropertyType& currentBaseValue() const
79 void animationStarted(PropertyType* newAnimVal)
110 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property
    [all...]
SVGPropertyTearOff.h 35 template<typename PropertyType>
38 typedef SVGPropertyTearOff<PropertyType> Self;
42 static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
49 static PassRefPtr<Self> create(const PropertyType& initialValue)
54 PropertyType& propertyReference() { return *m_value; }
57 void setValue(PropertyType& value)
99 m_value = new PropertyType(*m_value);
121 SVGPropertyTearOff(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
134 SVGPropertyTearOff(const PropertyType& initialValue)
137 , m_value(new PropertyType(initialValue)
    [all...]
SVGStaticListPropertyTearOff.h 29 template<typename PropertyType>
30 class SVGStaticListPropertyTearOff : public SVGListProperty<PropertyType> {
32 typedef SVGListProperty<PropertyType> Base;
34 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
40 static PassRefPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, PropertyType& values)
43 return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(contextElement, values));
83 SVGStaticListPropertyTearOff(SVGElement* contextElement, PropertyType& values)
84 : SVGListProperty<PropertyType>(UndefinedRole, values, 0)
SVGAnimatedPropertyMacros.h 34 template<typename PropertyType>
37 : value(SVGPropertyTraits<PropertyType>::initialValue())
64 PropertyType value;
98 #define DEFINE_ANIMATED_PROPERTY(AnimatedPropertyTypeEnum, OwnerType, DOMAttribute, SVGDOMAttributeIdentifier, UpperProperty, LowerProperty, TearOffType, PropertyType) \
109 PropertyType& OwnerType::LowerProperty##CurrentValue() const \
118 PropertyType& OwnerType::LowerProperty##BaseValue() const \
123 void OwnerType::set##UpperProperty##BaseValue(const PropertyType& type, const bool validValue) \
144 AtomicString value(SVGPropertyTraits<PropertyType>::toString(m_##LowerProperty.value)); \
152 return SVGAnimatedProperty::lookupOrCreateWrapper<UseOwnerType, TearOffType, PropertyType>(ownerType, LowerProperty##PropertyInfo(), ownerType->m_##LowerProperty.value); \
169 #define DECLARE_ANIMATED_PROPERTY(TearOffType, PropertyType, UpperProperty, LowerProperty)
    [all...]
SVGAnimatedListPropertyTearOff.h 29 template<typename PropertyType>
32 template<typename PropertyType>
35 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
38 typedef SVGListProperty<PropertyType> ListProperty;
39 typedef SVGListPropertyTearOff<PropertyType> ListPropertyTearOff;
40 typedef PropertyType ContentType;
62 typedef SVGPropertyTearOff<typename SVGPropertyTraits<PropertyType>::ListItemType> ListItemTearOff;
78 PropertyType& currentAnimatedValue()
85 const PropertyType& currentBaseValue() const
90 void animationStarted(PropertyType* newAnimVal, bool shouldOwnValues = false
    [all...]
SVGListPropertyTearOff.h 29 template<typename PropertyType>
30 class SVGListPropertyTearOff : public SVGListProperty<PropertyType> {
32 typedef SVGListProperty<PropertyType> Base;
33 typedef SVGListPropertyTearOff<PropertyType> Self;
35 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
38 typedef SVGAnimatedListPropertyTearOff<PropertyType> AnimatedListPropertyTearOff;
39 typedef typename SVGAnimatedListPropertyTearOff<PropertyType>::ListWrapperCache ListWrapperCache;
45 static PassRefPtr<Self> create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, PropertyType& values, ListWrapperCache& wrappers)
119 SVGListPropertyTearOff(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, PropertyType& values, ListWrapperCache& wrappers)
120 : SVGListProperty<PropertyType>(role, values, &wrappers
    [all...]
SVGPropertyTraits.h 28 template<typename PropertyType>
SVGListProperty.h 38 template<typename PropertyType>
41 template<typename PropertyType>
44 typedef SVGListProperty<PropertyType> Self;
46 typedef typename SVGPropertyTraits<PropertyType>::ListItemType ListItemType;
49 typedef SVGAnimatedListPropertyTearOff<PropertyType> AnimatedListPropertyTearOff;
50 typedef typename SVGAnimatedListPropertyTearOff<PropertyType>::ListWrapperCache ListWrapperCache;
84 void setValuesAndWrappers(PropertyType* values, ListWrapperCache* wrappers, bool shouldOwnValues)
438 PropertyType& values()
451 SVGListProperty(SVGPropertyRole role, PropertyType& values, ListWrapperCache* wrappers)
476 PropertyType* m_values
    [all...]
SVGAnimatedProperty.h 50 template<typename OwnerType, typename TearOffType, typename PropertyType>
51 static PassRefPtr<TearOffType> lookupOrCreateWrapper(OwnerType* element, const SVGPropertyInfo* info, PropertyType& property)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
class_properties.hpp 46 template<class PropertyType>
49 typedef typename call_traits<PropertyType>::const_reference read_access_t;
50 typedef typename call_traits<PropertyType>::param_type write_param_t;
51 typedef typename add_pointer<typename add_const<PropertyType>::type>::type address_res_t;
54 class_property() : value( PropertyType() ) {}
68 PropertyType value;
75 template<class PropertyType>
77 operator<<( std::ostream& os, class_property<PropertyType> const& p )
81 template<typename CharT1, typename Tr,class PropertyType>
83 operator<<( std::basic_ostream<CharT1,Tr>& os, class_property<PropertyType> const& p
    [all...]
  /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> {};
  /external/chromium_org/win8/metro_driver/
winrt_utils.cc 100 winfoundtn::PropertyType lhs_property_type;
106 winfoundtn::PropertyType rhs_property_type;
114 case winfoundtn::PropertyType::PropertyType_String: {
127 case winfoundtn::PropertyType::PropertyType_Char16: {
131 case winfoundtn::PropertyType::PropertyType_Double: {
135 case winfoundtn::PropertyType::PropertyType_Int16: {
139 case winfoundtn::PropertyType::PropertyType_Int32: {
143 case winfoundtn::PropertyType::PropertyType_Int64: {
147 case winfoundtn::PropertyType::PropertyType_UInt8: {
151 case winfoundtn::PropertyType::PropertyType_UInt16:
    [all...]
  /external/chromium_org/v8/src/
property-details.h 65 enum PropertyType {
170 PropertyType type,
181 PropertyType type,
215 PropertyType type() { return TypeField::decode(value_); }
247 class TypeField: public BitField<PropertyType, 0, 3> {};
elements.h 90 MUST_USE_RESULT virtual PropertyType GetType(
  /external/chromium_org/third_party/libjingle/source/talk/base/
linuxwindowpicker.cc 46 template <class PropertyType>
62 } else if (sizeof(PropertyType) * kBitsPerByte != actual_format) {
81 const PropertyType* data() const {
82 return reinterpret_cast<PropertyType*>(data_);
84 PropertyType* data() {
85 return reinterpret_cast<PropertyType*>(data_);
  /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);

Completed in 2317 milliseconds

1 2 3