Searched refs:element (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DElementTimeContainerImpl.java30 ElementTimeContainerImpl(SMILElement element) { argument
31 super(element);
H A DSmilPlayer.java102 // This element can't be started.
160 // This element can't be started.
206 private static ArrayList<TimelineEntry> getTimeline(ElementTime element, argument
208 if (element instanceof ElementParallelTimeContainer) {
209 return getParTimeline((ElementParallelTimeContainer) element, offset, maxOffset);
210 } else if (element instanceof ElementSequentialTimeContainer) {
211 return getSeqTimeline((ElementSequentialTimeContainer) element, offset, maxOffset);
216 TimeList beginList = element.getBegin();
223 element, TimelineEntry.ACTION_BEGIN);
229 TimeList endList = element
398 getOffsetTime(ElementTime element) argument
732 TimelineEntry(double offsetTime, ElementTime element, int action) argument
[all...]
H A DElementSequentialTimeContainerImpl.java37 ElementSequentialTimeContainerImpl(SMILElement element) { argument
38 super(element);
H A DElementParallelTimeContainerImpl.java45 ElementParallelTimeContainerImpl(SMILElement element) { argument
46 super(element);
H A DElementTimeImpl.java46 ElementTimeImpl(SMILElement element) { argument
47 mSmilElement = element;
177 * The fill behavior for the element is determined by the value of the fillDefault
188 * The fill behavior for this element depends on whether the element specifies any of
191 * the element, then the element will have a fill behavior identical to that if it were
193 * - Otherwise, the element will have a fill behavior identical to that if it were
224 * inherited from the fillDefault value of the parent element.
231 * If there is no parent element, th
[all...]
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/
H A DSmilXmlSerializer.java47 private static void writeElement(Writer writer, Element element) argument
50 writer.write(element.getTagName());
52 if (element.hasAttributes()) {
53 NamedNodeMap attributes = element.getAttributes();
62 SMILElement childElement = (SMILElement) element.getFirstChild();
73 writer.write(element.getTagName());
H A DSmilContentHandler.java59 Log.v(TAG, "SmilContentHandler.startElement. Creating element " + localName);
61 Element element = mSmilDocument.createElement(localName);
69 element.setAttribute(attributes.getLocalName(i),
76 mCurrentNode.appendChild(element);
78 mCurrentNode = element;
/packages/apps/Email/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java116 * Adds the given element to this buffer.
176 byte element = buffer[head];
183 return element;
244 // First element can be removed quickly
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DLongSparseArray.java452 for (T element : array) {
453 if (element == null) {
457 if (value != null && element.equals(value))

Completed in 147 milliseconds