/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementGetAttributeNodeNS.java | 3 import org.w3c.dom.Element; 11 * namespace URI. Create a new element node and add 2 new attribute nodes to it 52 Element element; local 64 element = doc.createElementNS("namespaceURI", "root"); 67 element.setAttributeNodeNS(attribute1); 70 element.setAttributeNodeNS(attribute2); 71 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", 89 Element element; local [all...] |
AttrGetOwnerElement.java | 5 import org.w3c.dom.Element; 39 // Element element; 40 // Element ownerElement; 50 // element = (Element) elementList.item(1); 51 // attributes = element.getAttributes(); 60 Element element; local 61 Element ownerElement 86 Element element; local 105 Node element; local [all...] |
NamedNodeMapRemoveNamedItemNS.java | 29 import org.w3c.dom.Element; 78 Node element; local 84 element = elementList.item(1); 85 attributes = element.getAttributes(); 97 // Node element; 106 // element = elementList.item(1); 107 // attributes = element.getAttributes(); 118 Node element; local 125 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root"); 128 ((Element) /* Node */element).setAttributeNodeNS(attribute1) 143 Node element; local 210 Node element; local 232 Node element; local 254 Element element; local 278 Element element; local [all...] |
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/explorer/ |
FileLabelProvider.java | 68 public Image getImage(Object element) { 75 public String getText(Object element) { 79 public Image getColumnImage(Object element, int columnIndex) { 81 if (element instanceof FileEntry) { 82 FileEntry entry = (FileEntry)element; 103 public String getColumnText(Object element, int columnIndex) { 104 if (element instanceof FileEntry) { 105 FileEntry entry = (FileEntry)element; 141 public boolean isLabelProperty(Object element, String property) {
|
/external/webkit/Source/WebCore/editing/ |
SetNodeAttributeCommand.cpp | 29 #include "Element.h" 34 SetNodeAttributeCommand::SetNodeAttributeCommand(PassRefPtr<Element> element, 36 : SimpleEditCommand(element->document()) 37 , m_element(element)
|
/external/webkit/Source/WebCore/html/ |
ClassList.h | 35 class Element; 39 static PassOwnPtr<ClassList> create(Element* element) 41 return adoptPtr(new ClassList(element)); 55 virtual Element* element() { return m_element; } function in class:WebCore::ClassList 60 ClassList(Element*); 68 Element* m_element;
|
DOMFormData.cpp | 54 FormAssociatedElement* element = form->associatedElements()[i]; local 55 if (!toHTMLElement(element)->disabled()) 56 element->appendFormData(*this, true);
|
BaseButtonInputType.cpp | 51 element()->setActive(true, true); 61 element()->dispatchSimulatedClick(event); 82 return new (arena) RenderButton(element()); 92 element()->dispatchSimulatedClick(0, sendToAnyElement);
|
DateInputType.cpp | 46 PassOwnPtr<InputType> DateInputType::create(HTMLInputElement* element) 48 return adoptPtr(new DateInputType(element)); 58 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDate()); 63 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDate());
|
DateTimeInputType.cpp | 47 PassOwnPtr<InputType> DateTimeInputType::create(HTMLInputElement* element) 49 return adoptPtr(new DateTimeInputType(element)); 64 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime()); 69 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebFormDelegate.idl | 75 //- (void)textFieldDidBeginEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 76 HRESULT textFieldDidBeginEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame); 78 //- (void)textFieldDidEndEditing:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 79 HRESULT textFieldDidEndEditing([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame); 81 //- (void)textDidChangeInTextField:(DOMHTMLInputElement *)element inFrame:(WebFrame *)frame; 82 HRESULT textDidChangeInTextField([in] IDOMHTMLInputElement* element, [in] IWebFrame* frame); 84 //- (void)textDidChangeInTextArea:(DOMHTMLTextAreaElement *)element inFrame:(WebFrame *)frame; 85 HRESULT textDidChangeInTextArea([in] IDOMHTMLTextAreaElement* element, [in] IWebFrame* frame); 87 //- (BOOL)textField:(DOMHTMLInputElement *)element doCommandBySelector:(SEL)commandSelector inFrame:(WebFrame *)frame; 88 HRESULT doPlatformCommand([in] IDOMHTMLInputElement* element, [in] BSTR command, [in] IWebFrame* frame, [out, retval] BOOL* result) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getElementById02.java | 68 Element element; local 70 element = doc.getElementById("Cancun"); 71 assertNull("throw_Null", element);
|
elementhasattribute04.java | 35 * on this element or has a default value, false otherwise. 36 * Create an element Node and an attribute Node and add the attribute node to the element. 37 * Invoke the hasAttribute method on the element and verify if the method returns true. 66 Element element; local 71 element = doc.createElement("address"); 73 newAttribute = element.setAttributeNode(attribute); 74 state = element.hasAttribute("domestic");
|
elementsetattributens08.java | 38 * Invoke the setAttributeNS method on a new Element object with namespaceURI that is 70 Element element; local 72 element = doc.createElementNS("http://www.w3.org/DOMTest/level2", "dom:elem"); 77 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns", "test"); 87 element.setAttributeNS("http://www.w3.org/DOMTest/level2", "xmlns:root", "test");
|
nodehasattributes03.java | 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes. 35 * Retreive an element node with a default attributes. Verify if hasAttributes returns true. 63 Element element; local 68 element = (Element) elementList.item(0); 69 assertNotNull("empEmployeeNotNull", element); 70 hasAttributes = element.hasAttributes();
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/ |
LogCatFilterLabelProvider.java | 33 * @param element an instance of {@link LogCatFilter} 37 public String getColumnText(Object element, int index) { 38 if (!(element instanceof LogCatFilter)) { 42 LogCatFilter f = (LogCatFilter) element;
|
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/ |
concat-jquery-mootools-prototype.js | 68 // Otherwise, we inject the element directly into the jQuery object 102 // The number of elements contained in the matched element set 107 // Get the Nth element in the matched element set OR 108 // Get the whole matched element set as a clean array 120 // (returning the new matched element set) 122 // Build a new jQuery matched element set 135 // Return the newly-formed element set 151 // Execute a callback for every element in the matched set. 158 // Determine the position of an element withi [all...] |
/external/collada/include/dae/ |
daeDocument.h | 84 * @param element The element that was added to this document. 88 void insertElement( daeElementRef element ); 91 * @param element The element that was removed from this document. 95 void removeElement( daeElementRef element ); 98 * @param element The element whose ID is about to be changed. 99 * @param newID The ID that is going to be assigned to the element. 103 void changeElementID( daeElementRef element, daeString newID ) [all...] |
/external/svox/pico/tts/ |
svox_ssml_parser.h | 83 static void starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes); 89 static void endtagHandler(void* data, const XML_Char* element); 97 private: /* element handlers */ 101 Handles start of element, called by starttagHandler. 103 void startElement(const XML_Char* element, const XML_Char** attributes); 107 Handles end of element, called by endtagHandler. 109 void endElement(const XML_Char* element); 113 Handles text element, called by textHandler.
|
/external/webkit/LayoutTests/fast/dom/Attr/script-tests/ |
access-after-element-destruction.js | 1 description("Tests that accessing Attr after its Element has been destroyed works without crashing."); 13 var element = document.createElement("p"); variable 14 element.setAttribute("a", "b"); 15 var attributes = element.attributes; 16 element = null; 37 element = document.createElement("p"); 38 element.setAttribute("a", "b"); 39 var attr = element.attributes.item(0); 40 element = null;
|
/external/webkit/LayoutTests/http/tests/resources/ |
post-and-verify.cgi | 13 foreach $element (@list) { 14 ($key, $value) = split(/=/, $element);
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityImageMapLink.h | 46 void setHTMLAreaElement(HTMLAreaElement* element) { m_areaElement = element; } 49 void setHTMLMapElement(HTMLMapElement* element) { m_mapElement = element; } 60 virtual Element* anchorElement() const; 61 virtual Element* actionElement() const;
|
/external/webkit/Source/WebKit/android/ |
RenderSkinRadio.h | 53 * Draw the element to the canvas at the specified size and location. 56 static void Draw(SkCanvas* canvas, Node* element, const IntRect&,
|
/hardware/qcom/media/mm-video/vidc/vdec/inc/ |
queue.h | 36 int push(Queue *q, void * element);
|
/libcore/luni/src/main/java/java/util/ |
Queue.java | 44 * <td>{@link #element element()}</td> 55 * element which would be removed by a call to {@link #remove() } or 61 * <p>The {@link #offer offer} method inserts an element if possible, 64 * add an element only by throwing an unchecked exception. The 71 * Exactly which element is removed from the queue is a 78 * <p>The {@link #element()} and {@link #peek()} methods return, but do 96 * element-based versions of methods <tt>equals</tt> and 98 * from class <tt>Object</tt>, because element-based equality is not 116 * Inserts the specified element into this queue if it is possible to do s 179 E element(); method in interface:Queue [all...] |