Home
last modified time | relevance | path

Searched refs:props (Results 1 – 4 of 4) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DVCal.java53 public static void dump(ArrayList<Property> props, String prefix) in dump() argument
55 int count = props.size(); in dump()
57 Property prop = props.get(i); in dump()
116 ArrayList<Property> props = vc.properties; in parse() local
138 props.add(prop); in parse()
143 props = begin.properties; in parse()
148 props = begin.properties; in parse()
150 props = vc.properties; in parse()
DCalendarSyncAdapter.java804 Hashtable props = event.getExtendedProperties(); in entryToContentValues() local
805 if (props.containsKey(HIDDEN_ATTENDEES_PROP) && in entryToContentValues()
806 "hidden".equals(props.get(HIDDEN_ATTENDEES_PROP))) { in entryToContentValues()
807 props.remove(HIDDEN_ATTENDEES_PROP); in entryToContentValues()
812 map.put(Events.HAS_EXTENDED_PROPERTIES, ((props.size() > 0) ? 1 : 0)); in entryToContentValues()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DICalendarTest.java83 List<ICalendar.Property> props = component.getProperties("PROP1"); in testParseBasicComponent() local
84 assertEquals(2, props.size()); in testParseBasicComponent()
85 List<ICalendar.Parameter> params = props.get(1).getParameters("PARAM1"); in testParseBasicComponent()
/packages/apps/IM/src/com/android/im/imps/
DPtsPrimitiveSerializer.java525 ArrayList<PrimitiveElement> props = elem.getChildren(); in encodeValue() local
528 int count = props.size(); in encodeValue()
530 PrimitiveElement property = props.get(i); in encodeValue()