Home
last modified time | relevance | path

Searched refs:PropertyInfo (Results 1 – 21 of 21) sorted by relevance

/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
DSoapObject.java122 if (otherProp instanceof PropertyInfo && in isPropertyEqual()
123 thisProp instanceof PropertyInfo) { in isPropertyEqual()
125 PropertyInfo otherPropInfo = (PropertyInfo) otherProp; in isPropertyEqual()
126 PropertyInfo thisPropInfo = (PropertyInfo) thisProp; in isPropertyEqual()
150 if (prop instanceof PropertyInfo) { in getProperty()
151 return ((PropertyInfo) prop).getValue(); in getProperty()
161 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index); in getPropertyAsString()
286 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue()); in getPrimitiveProperty()
290 propertyInfo = new PropertyInfo(); in getPrimitiveProperty()
311 PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(index.intValue()); in getPrimitivePropertyAsString()
[all …]
DPropertyInfo.java36 public class PropertyInfo implements java.io.Serializable class
44 public static final PropertyInfo OBJECT_TYPE = new PropertyInfo();
82 public PropertyInfo elementType;
84 public PropertyInfo() in PropertyInfo() method in PropertyInfo
99 public PropertyInfo getElementType() in getElementType()
108 public void setElementType(PropertyInfo elementType) in setElementType()
DSppPropertyInfo.java44 public static final PropertyInfo OBJECT_TYPE = new PropertyInfo();
82 public PropertyInfo elementType;
99 public PropertyInfo getElementType() in getElementType()
108 public void setElementType(PropertyInfo elementType) in setElementType()
DDM.java36 …public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo excep… in readInstance()
105 cm.addMapping(cm.xsd, "int", PropertyInfo.INTEGER_CLASS, this); in register()
106 cm.addMapping(cm.xsd, "long", PropertyInfo.LONG_CLASS, this); in register()
107 cm.addMapping(cm.xsd, "string", PropertyInfo.STRING_CLASS, this); in register()
108 cm.addMapping(cm.xsd, "boolean", PropertyInfo.BOOLEAN_CLASS, this); in register()
DSoapSerializationEnvelope.java111 addMapping(enc, ARRAY_MAPPING_NAME, PropertyInfo.VECTOR_CLASS); in SoapSerializationEnvelope()
160 PropertyInfo.OBJECT_TYPE); in parseBody()
201 PropertyInfo info = new PropertyInfo(); in readSerializable()
248 ((SoapObject) obj).getNamespace(), name, PropertyInfo.OBJECT_TYPE)); in readSerializable()
326 null, null, PropertyInfo.OBJECT_TYPE)); in readUnknown()
347 protected void readVector(XmlPullParser parser, Vector v, PropertyInfo elementType) in readVector()
368 elementType = PropertyInfo.OBJECT_TYPE; in readVector()
404 PropertyInfo expected) in read()
497 PropertyInfo expected) in readInstance()
573 if ((type instanceof Class) && type != PropertyInfo.OBJECT_CLASS) { in getInfo()
[all …]
DMarshalHashtable.java50 PropertyInfo expected) in readInstance()
58 Object key = envelope.read(parser, item, 0, null, null, PropertyInfo.OBJECT_TYPE); in readInstance()
63 Object value = envelope.read(parser, item, 1, null, null, PropertyInfo.OBJECT_TYPE); in readInstance()
DAttributeInfo.java27 public class AttributeInfo extends PropertyInfo
DKvmSerializable.java63 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info); in getPropertyInfo()
DMarshal.java43 PropertyInfo expected) in readInstance()
DMarshalBase64.java35 PropertyInfo expected) in readInstance()
DMarshalDate.java35 PropertyInfo expected) in readInstance()
DAttributeContainer.java257 attributeInfo.type = value == null ? PropertyInfo.OBJECT_CLASS : value.getClass(); in addAttribute()
/external/ksoap2/
D0001-ksoap2-update.patch300 attributeInfo.type = value == null ? PropertyInfo.OBJECT_CLASS : value.getClass();
370 - PropertyInfo expected)
371 + public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo e…
525 void getPropertyInfo(int index, Hashtable properties, PropertyInfo info);
536 - PropertyInfo expected)
537 + public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo e…
550 - PropertyInfo expected)
551 + public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo e…
564 - PropertyInfo expected)
565 + public Object readInstance(XmlPullParser parser, String namespace, String name, PropertyInfo e…
[all …]
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DPropertyInfoExtensions.cs48 internal static MethodInfo GetGetMethod(this PropertyInfo target) in GetGetMethod()
58 internal static MethodInfo GetSetMethod(this PropertyInfo target) in GetSetMethod()
DTypeExtensions.cs70 internal static PropertyInfo GetProperty(this Type target, string name) in GetProperty()
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DMapFieldAccessor.cs44 …internal MapFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, desc… in MapFieldAccessor()
DRepeatedFieldAccessor.cs44 …internal RepeatedFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property,… in RepeatedFieldAccessor()
DFieldAccessorBase.cs47 internal FieldAccessorBase(PropertyInfo property, FieldDescriptor descriptor) in FieldAccessorBase()
DOneofAccessor.cs48 …internal OneofAccessor(PropertyInfo caseProperty, MethodInfo clearMethod, OneofDescriptor descript… in OneofAccessor()
DSingleFieldAccessor.cs52 …internal SingleFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, d… in SingleFieldAccessor()
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
DMarshalFloat.java31 PropertyInfo propertyInfo) in readInstance()