/external/webkit/WebKit/mac/WebView/ |
WebFrameInternal.h | 53 class Element;
|
WebHTMLRepresentation.mm | 267 static HTMLFormElement* formElementFromDOMElement(DOMElement *element) 269 Element* node = core(element); 288 static HTMLInputElement* inputElementFromDOMElement(DOMElement* element) 290 Element* node = core(element); 294 - (BOOL)elementDoesAutoComplete:(DOMElement *)element 296 HTMLInputElement* inputElement = inputElementFromDOMElement(element); 302 - (BOOL)elementIsPassword:(DOMElement *)element 304 HTMLInputElement* inputElement = inputElementFromDOMElement(element); [all...] |
/external/webkit/WebKit/qt/Api/ |
qwebpage_p.h | 45 class Element;
|
/external/webkit/WebKit/wx/WebKitSupport/ |
FrameLoaderClientWx.h | 45 class Element;
|
/external/emma/lib/ |
emma_ant.jar | |
/external/webkit/WebCore/dom/ |
Node.idl | 127 readonly attribute Element parentElement;
|
/external/webkit/WebCore/html/ |
HTMLFormControlElement.cpp | 135 // Focus the element if it should honour its autofocus attribute. 136 // We have to determine if the element is a TextArea/Input/Button/Select, 151 // This handles the case of a new form element being created by 176 // If the form and element are both in the same tree, preserve the connection to the form. 248 ASSERT_ARG(node, static_cast<Element*>(node)->isFormControlElement()); 299 return Element::tabIndex(); 306 // The control does not have a datalist element as an ancestor. 307 // The control is not an output element.
|
HTMLElement.cpp | 71 return Element::nodeName(); 300 // child of an element. 339 static void replaceChildrenWithFragment(HTMLElement* element, PassRefPtr<DocumentFragment> fragment, ExceptionCode& ec) 342 element->removeChildren(); 346 if (hasOneTextChild(element) && hasOneTextChild(fragment.get())) { 347 static_cast<Text*>(element->firstChild())->setData(static_cast<Text*>(fragment->firstChild())->data(), ec); 351 if (hasOneChild(element)) { 352 element->replaceChild(fragment, element->firstChild(), ec); 356 element->removeChildren() [all...] |
/external/webkit/WebCore/loader/ |
ImageDocument.cpp | 31 #include "Element.h" 191 RefPtr<Element> rootElement = Document::createElement(htmlTag, false); 194 RefPtr<Element> body = Document::createElement(bodyTag, false);
|
/external/webkit/WebKit/win/ |
DOMCreateInstance.cpp | 80 #include <WebCore/Element.h> 181 domNode = new GEN_DOMElement(static_cast<WebCore::Element*>(node));
|
DOMCoreClasses.cpp | 40 #include <WebCore/Element.h> 64 using WebCore::Element; 432 IDOMElement* newElement = DOMElement::createInstance(static_cast<WebCore::Element*>(n)); 723 Element* element = domEle->element(); 731 *result = DOMCSSStyleDeclaration::createInstance(dv->getComputedStyle(element, pseudoEltString.impl()).get()); 1003 HRESULT DOMElement::coreElement(void **element) 1007 *element = (void*) m_element; 1277 DOMElement::DOMElement(WebCore::Element* e [all...] |
DOMCoreClasses.h | 33 class Element; 542 DOMElement(WebCore::Element* e); 546 static IDOMElement* createInstance(WebCore::Element* e); 765 void** element); 834 WebCore::Element* element() { return m_element; } function in class:DOMElement [all...] |
/packages/wallpapers/Basic/src/com/android/wallpaper/nexus/ |
NexusRS.java | 19 import static android.renderscript.Element.RGBA_8888; 20 import static android.renderscript.Element.RGB_565;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
LayoutDeviceManager.java | 26 import org.w3c.dom.Element; 369 Element baseNode = doc.createElementNS(
|
/external/webkit/WebCore/page/mac/ |
FrameMac.mm | 183 NSString* Frame::searchForLabelsBeforeElement(NSArray* labels, Element* element, size_t* resultDistance, bool* resultIsInCellAbove) 191 // If the starting element is within a table, the cell that contains it 200 // walk backwards in the node tree, until another element, or form, or end of tree 203 for (n = element->traversePreviousNode(); 208 || (n->isHTMLElement() && static_cast<Element*>(n)->isFormControlElement())) 210 // We hit another form element or the start of the form - bail out 239 // previous element, we still might need to search the row above us for a label. 287 NSString* Frame::matchLabelsAgainstElement(NSArray* labels, Element* element) [all...] |
/external/webkit/WebCore/rendering/ |
RenderThemeChromiumMac.mm | 30 #import "Element.h" 753 void RenderThemeChromiumMac::adjustTextFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const 775 void RenderThemeChromiumMac::adjustTextAreaStyle(CSSStyleSelector*, RenderStyle*, Element*) const [all...] |
RenderThemeMac.mm | 28 #import "Element.h" 682 void RenderThemeMac::adjustTextFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const 704 void RenderThemeMac::adjustTextAreaStyle(CSSStyleSelector*, RenderStyle*, Element*) const [all...] |
RenderTextControlSingleLine.cpp | 172 frame->textFieldDidBeginEditing(static_cast<Element*>(node())); 177 frame->textDidChangeInTextField(static_cast<Element*>(node())); 254 // If we're within the text control, we want to act as if we've hit the inner text block element, in case the point 255 // was on the control but not on the inner element (see Radar 4617841). 263 // If we hit a node inside the inner text element, say that we hit that element, 265 // inner text element so that it gains focus. 356 // 3) The element is focused 442 // Create the inner block element 448 // Create the search results button element [all...] |
RenderTextControl.cpp | 120 Element* element = static_cast<Element*>(node); local 121 isEnabled = element->isEnabledFormControl(); 122 isReadOnlyControl = element->isReadOnlyFormControl(); 132 // so we need to inherit the direction from the element. 143 // Create the text block element 202 static_cast<Element*>(node())->setFormControlValueMatchesRenderer(true); 528 // to the element's value(), placeholder(), or the empty string.
|
/external/webkit/WebCore/svg/ |
SVGUseElement.cpp | 78 // If there is no element instance tree, force immediate SVGElementInstance tree 81 // object right after creating the element on-the-fly 223 // If attributes width and/or height are provided on the 'use' element, then these attributes 225 // the generated 'svg' element will use values of 100% for these attributes. 227 // Spec (<use> on <svg>): If attributes width and/or height are provided on the 'use' element, then these 274 // and y represent the values of the x and y attributes on the 'use' element. 307 // Eventually mark shadow root element needing style recalc 336 SVGElement* element = targetInstance->correspondingElement(); local 337 ASSERT(element); 342 String elementId = element->getIDAttribute() 615 SVGElement* element = 0; local 658 SVGElement* element = instance->correspondingElement(); local 889 SVGElement* element = 0; local [all...] |
/external/webkit/WebKit/gtk/webkit/ |
webkitwebframe.cpp | 408 PassRefPtr<Frame> webkit_web_frame_init_with_web_view(WebKitWebView* webView, HTMLFrameOwnerElement* element) 417 RefPtr<Frame> coreFrame = Frame::create(viewPriv->corePage, element, client); 796 Element* documentElement = coreFrame->document()->documentElement(); 827 * @id: an element ID string 829 * Return value: The counter value of element @id in @frame 839 Element* coreElement = coreFrame->document()->getElementById(AtomicString(id)); 849 * @id: an element ID string 853 * Return value: The number of page where the specified element will be put 863 Element* coreElement = coreFrame->document()->getElementById(AtomicString(id)); [all...] |
/external/webkit/WebCore/css/ |
CSSStyleSelector.cpp | 392 static bool elementCanUseSimpleDefaultStyle(Element* e) 420 Element* root = doc->documentElement(); 431 // construct document root element default style. this is needed 435 // NOTE: this assumes that element that gets passed to styleForElement -call 710 // we really just matched a pseudo-element. 805 void CSSStyleSelector::initElementAndPseudoState(Element* e) 815 void CSSStyleSelector::initForStyleResolve(Element* e, RenderStyle* parentStyle, PseudoId pseudoID) 850 Element* element = static_cast<Element*>(node) local [all...] |
/dalvik/libcore/luni/src/main/java/java/util/ |
Properties.java | 44 import org.w3c.dom.Element; 73 + " <!ELEMENT properties (comment?, entry*) >" 75 + " <!ELEMENT comment (#PCDATA) >" 76 + " <!ELEMENT entry (#PCDATA) >" 638 Element entry = (Element) entries.item(i);
|
/external/webkit/WebCore/editing/ |
DeleteSelectionCommand.cpp | 34 #include "Element.h" 124 // FIXME: This is only used so that moveParagraphs can avoid the bugs in special element expansion. 150 // Don't adjust the end yet, it is the end of a special element that contains the start 151 // special element (which may or may not be fully selected). 154 // Don't adjust the start yet, it is the start of a special element that contains the end 155 // special element (which may or may not be fully selected). 249 // FIXME: rangeComplaintEquivalent should eventually be moved into enclosing element getters 350 // Do not remove an element of table structure; remove its contents. 351 // Likewise for the root editable element. 569 Element* endBlock = static_cast<Element*>(enclosingBlock(m_downstreamEnd.node())) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
UiClassAttributeNode.java | 81 import org.w3c.dom.Element; 363 dlg.setMessage(String.format("Select class name for element %1$s:", 453 Element xmlElement = (Element) rootNode.getXmlNode(); 532 // Get the java element for the package. 613 // Get the java element for the package. 639 IJavaElement element = action.getCreatedElement(); 641 if (element != null) { 642 if (element.getElementType() == IJavaElement.TYPE) { 644 IType type = (IType)element; [all...] |