Searched refs:Element (Results 1 - 25 of 36) sorted by relevance

12

/packages/apps/Mms/src/org/w3c/dom/smil/
H A DSMILSwitchElement.java15 import org.w3c.dom.Element;
24 * @return The selected <code>Element</code> for thisd <code>switch</code>
27 public Element getSelectedElement();
H A DSMILElement.java16 import org.w3c.dom.Element;
21 * DOM, extending the base <code>Element</code> class to denote SMIL-specific
29 public interface SMILElement extends Element {
H A DTime.java16 import org.w3c.dom.Element;
80 public Element getBaseElement();
81 public void setBaseElement(Element baseElement)
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHTML4.java37 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
47 public HTML.Element lookupElement(String name) {
65 public static HTML.Element lookupElement(String name) {
78 public static Map<String, HTML.Element> getAllElements() {
91 private static HTML.Element addElement(String tag, String flags) {
92 return addElement(tag, flags, HTML.Element.Flow.NONE);
96 private static HTML.Element addElement(String tag, String flags, HTML.Element.Flow flow) {
97 return addElement(tag, flags, flow, HTML.Element.NO_TYPE);
101 private static HTML.Element addTableElemen
[all...]
H A DHtmlWhitelist.java26 * Looks up the HTML.Element object associated with the given element tag
30 * @return The HTML.Element object associated with the given element tag name,
33 HTML.Element lookupElement(String name);
H A DHTML.java23 * HTML class defines Element and Attribute classes.
32 public static final class Element { class in class:HTML
59 * Construct an Element.
67 public Element(String name, int type, boolean empty, method in class:HTML.Element
69 Preconditions.checkNotNull(name, "Element name can not be null");
70 Preconditions.checkNotNull(flow, "Element flow can not be null");
80 * Construct an Element with inline=true.
82 public Element(String name, int type, boolean empty, method in class:HTML.Element
133 if (o instanceof HTML.Element) {
134 HTML.Element tha
[all...]
H A DHtmlTreeBuilder.java38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement();
98 HTML.Element element = t.getElement();
129 private int findStartTag(HTML.Element element) {
131 HTML.Element e = stack.get(i);
144 HTML.Element element = pop();
152 private void push(HTML.Element element) {
157 private HTML.Element po
[all...]
H A DHtmlDocument.java97 * @see HtmlDocument#createTag(HTML.Element, List, String, String)
99 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) {
105 * @see HtmlDocument.Tag#Tag(HTML.Element, List, boolean, String, String)
107 public static Tag createTag(HTML.Element element,
116 * @see HtmlDocument#createSelfTerminatingTag(HTML.Element, List, String, String)
118 public static Tag createSelfTerminatingTag(HTML.Element element,
125 * @see HtmlDocument#createTag(HTML.Element, List, String, String)
127 public static Tag createSelfTerminatingTag(HTML.Element element,
135 * @see HtmlDocument#createEndTag(HTML.Element, String)
137 public static EndTag createEndTag(HTML.Element elemen
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHTML4.java38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
48 public HTML.Element lookupElement(String name) {
66 public static HTML.Element lookupElement(String name) {
79 public static Map<String, HTML.Element> getAllElements() {
92 private static HTML.Element addElement(String tag, String flags) {
93 return addElement(tag, flags, HTML.Element.Flow.NONE);
97 private static HTML.Element addElement(String tag, String flags, HTML.Element.Flow flow) {
98 return addElement(tag, flags, flow, HTML.Element.NO_TYPE);
102 private static HTML.Element addTableElemen
[all...]
H A DHtmlWhitelist.java27 * Looks up the HTML.Element object associated with the given element tag
31 * @return The HTML.Element object associated with the given element tag name,
34 HTML.Element lookupElement(String name);
H A DHTML.java24 * HTML class defines Element and Attribute classes.
33 public static final class Element { class in class:HTML
60 * Construct an Element.
68 public Element(String name, int type, boolean empty, method in class:HTML.Element
70 Preconditions.checkNotNull(name, "Element name can not be null");
71 Preconditions.checkNotNull(flow, "Element flow can not be null");
81 * Construct an Element with inline=true.
83 public Element(String name, int type, boolean empty, method in class:HTML.Element
134 if (o instanceof HTML.Element) {
135 HTML.Element tha
[all...]
H A DHtmlTreeBuilder.java38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement();
98 HTML.Element element = t.getElement();
129 private int findStartTag(HTML.Element element) {
131 HTML.Element e = stack.get(i);
144 HTML.Element element = pop();
152 private void push(HTML.Element element) {
157 private HTML.Element po
[all...]
H A DHtmlDocument.java98 * @see HtmlDocument#createTag(HTML.Element, List, String, String)
100 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) {
106 * @see HtmlDocument.Tag#Tag(HTML.Element, List, boolean, String, String)
108 public static Tag createTag(HTML.Element element,
117 * @see HtmlDocument#createSelfTerminatingTag(HTML.Element, List, String, String)
119 public static Tag createSelfTerminatingTag(HTML.Element element,
126 * @see HtmlDocument#createTag(HTML.Element, List, String, String)
128 public static Tag createSelfTerminatingTag(HTML.Element element,
136 * @see HtmlDocument#createEndTag(HTML.Element, String)
138 public static EndTag createEndTag(HTML.Element elemen
[all...]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DPointerTrackerQueueTests.java24 public static class Element implements PointerTrackerQueue.Element { class in class:PointerTrackerQueueTests
33 public Element(int id) { method in class:PointerTrackerQueueTests.Element
62 private final Element mElement1 = new Element(1);
63 private final Element mElement2 = new Element(2);
64 private final Element mElement3 = new Element(3);
65 private final Element mElement
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DPointerTrackerQueue.java27 public interface Element { interface in class:PointerTrackerQueue
37 private final ArrayList<Element> mExpandableArrayOfActivePointers =
47 public void add(final Element pointer) {
52 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
63 public void remove(final Element pointer) {
68 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
72 final Element element = expandableArray.get(index);
89 public Element getOldestElement() {
95 public void releaseAllPointersOlderThan(final Element pointer, final long eventTime) {
100 final ArrayList<Element> expandableArra
[all...]
/packages/apps/Mms/src/com/android/mms/dom/
H A DAttrImpl.java22 import org.w3c.dom.Element;
47 public Element getOwnerElement() {
H A DDocumentImpl.java29 import org.w3c.dom.Element;
75 public abstract Element createElement(String tagName) throws DOMException;
77 public Element createElementNS(String namespaceURI, String qualifiedName)
104 public abstract Element getDocumentElement();
106 public Element getElementById(String elementId) {
H A DElementImpl.java22 import org.w3c.dom.Element;
27 public class ElementImpl extends NodeImpl implements Element {
41 * Element Interface methods
141 // The value of nodeName is tagName when Node is an Element
/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DTimeImpl.java21 import org.w3c.dom.Element;
239 public Element getBaseElement() {
276 public void setBaseElement(Element baseElement) throws DOMException {
H A DSmilDocumentImpl.java21 import org.w3c.dom.Element;
155 public Element createElement(String tagName) throws DOMException {
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/
H A DSmilContentHandler.java20 import org.w3c.dom.Element;
61 Element element = mSmilDocument.createElement(localName);
H A DSmilXmlSerializer.java28 import org.w3c.dom.Element;
47 private static void writeElement(Writer writer, Element element)
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis3/
H A DVisualization3RS.java28 import android.renderscript.Element;
33 import android.renderscript.Element.Builder;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterChanSat.java22 import android.support.v8.renderscript.Element;
77 Type.Builder tb_float = new Type.Builder(rsCtx, Element.F32_4(rsCtx));
H A DImageFilterGrad.java30 import android.support.v8.renderscript.Element;
87 Type.Builder tb_float = new Type.Builder(rsCtx, Element.F32_4(rsCtx));

Completed in 1144 milliseconds

12