Searched refs:Element (Results 251 - 275 of 916) sorted by relevance

<<11121314151617181920>>

/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java32 * ReportCfg is a container for report type {@link ReportCfg.Element}s that are
53 public static abstract class Element implements IReportEnums, IReportProperties class in class:ReportCfg
113 Element (final Task task, final IProperties settings) method in class:ReportCfg.Element
160 public static class Element_HTML extends Element
179 public static class Element_TXT extends Element
198 public static class Element_LCOV extends Element
216 public static class Element_XML extends Element
285 final Element cfg = (Element) i.next ();
402 protected Element addCfgElemen
[all...]
/external/markdown/markdown/
H A Dinlinepatterns.py177 el = markdown.etree.Element(self.tag)
185 return markdown.etree.Element(self.tag)
195 el = markdown.etree.Element(self.tag)
208 el1 = markdown.etree.Element(tag1)
226 el = markdown.etree.Element("a")
278 el = markdown.etree.Element("img")
316 el = markdown.etree.Element('a')
329 el = markdown.etree.Element("img")
338 """ Return a link Element given an autolink (`<http://example/com>`). """
340 el = markdown.etree.Element("
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.h53 class Element;
95 virtual void didModifyDOMAttr(Element*) = 0;
178 void willModifyDOMAttr(Element*, const AtomicString& oldValue, const AtomicString& newValue);
179 void didModifyDOMAttr(Element*, const AtomicString& name, const AtomicString& value);
180 void didRemoveDOMAttr(Element*, const AtomicString& name);
181 void styleAttributeInvalidated(const WillBeHeapVector<RawPtrWillBeMember<Element> >& elements);
184 void didPushShadowRoot(Element* host, ShadowRoot*);
185 void willPopShadowRoot(Element* host, ShadowRoot*);
214 Element* assertElement(ErrorString*, int nodeId);
234 Node* assertEditableChildNode(ErrorString*, Element* parentElemen
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollingCoordinatorChromiumTest.cpp145 static WebLayer* webLayerFromElement(Element* element)
176 Element* element = document->getElementById("div-tl");
185 Element* element = document->getElementById("div-tr");
194 Element* element = document->getElementById("div-bl");
203 Element* element = document->getElementById("div-br");
212 Element* element = document->getElementById("span-tl");
221 Element* element = document->getElementById("span-tr");
230 Element* element = document->getElementById("span-bl");
239 Element* element = document->getElementById("span-br");
298 Element* scrollableElemen
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeScope.cpp34 #include "core/dom/Element.h"
162 Element* TreeScope::getElementById(const AtomicString& elementId) const
171 const WillBeHeapVector<RawPtrWillBeMember<Element> >& TreeScope::getAllElementsById(const AtomicString& elementId) const
173 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<WillBeHeapVector<RawPtrWillBeMember<Element> > >, emptyVector, (adoptPtrWillBeNoop(new WillBeHeapVector<RawPtrWillBeMember<Element> >())));
181 void TreeScope::addElementById(const AtomicString& elementId, Element* element)
189 void TreeScope::removeElementById(const AtomicString& elementId, Element* element)
266 Element* TreeScope::elementFromPoint(int x, int y) const
326 Element* TreeScope::findAnchor(const String& name)
330 if (Element* elemen
[all...]
H A DElement.idl23 ] interface Element : Node {
68 [ImplementedAs=offsetParentForBindings, PerWorldBindings] readonly attribute Element offsetParent;
96 [RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] Element insertAdjacentElement(DOMString where, Element element);
135 Element implements ParentNode;
136 Element implements ChildNode;
H A DRenderTreeBuilder.cpp48 Element* element = m_node->isElementNode() ? toElement(m_node) : 0;
64 Element* element = m_node->isElementNode() ? toElement(m_node) : 0;
110 Element* element = toElement(m_node);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DIndentOutdentCommand.cpp66 RefPtrWillBeRawPtr<Element> selectedListItem = enclosingBlock(lastNodeInSelectedParagraph.get());
73 RefPtrWillBeRawPtr<Element> previousList = ElementTraversal::previousSibling(*selectedListItem);
74 RefPtrWillBeRawPtr<Element> nextList = ElementTraversal::nextSibling(*selectedListItem);
102 Element* enclosingCell = toElement(enclosingNodeOfType(start, &isTableCell));
103 Element* elementToSplitTo;
168 if (Element* splitPointParent = splitPoint->parentElement()) {
187 if (Element* enclosingBlockFlow = enclosingBlock(visibleStartOfParagraph.deepEquivalent().deprecatedNode())) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumMac.h61 virtual void adjustSliderThumbSize(RenderStyle*, Element*) const OVERRIDE;
100 virtual void adjustMenuListStyle(RenderStyle*, Element*) const OVERRIDE;
103 virtual void adjustMenuListButtonStyle(RenderStyle*, Element*) const OVERRIDE;
112 virtual void adjustSearchFieldStyle(RenderStyle*, Element*) const OVERRIDE;
114 virtual void adjustSearchFieldCancelButtonStyle(RenderStyle*, Element*) const OVERRIDE;
117 virtual void adjustSearchFieldDecorationStyle(RenderStyle*, Element*) const OVERRIDE;
120 virtual void adjustSearchFieldResultsDecorationStyle(RenderStyle*, Element*) const OVERRIDE;
H A DRenderTextControlSingleLine.h45 Element* containerElement() const;
46 Element* editingViewPortElement() const;
90 RenderTextControlInnerBlock(Element* element) : RenderBlockFlow(element) { }
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.cpp42 #include "core/dom/Element.h"
48 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
53 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary)
58 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration)
63 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, PassRefPtrWillBeRawPtr<AnimationEffect> effect)
68 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, const Vector<Dictionary>& keyframeDictionaryVector, const Dictionary& timingInputDictionary, ExceptionState& exceptionState)
75 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, const Vector<Dictionary>& keyframeDictionaryVector, double duration, ExceptionState& exceptionState)
82 PassRefPtrWillBeRawPtr<Animation> Animation::create(Element* element, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState& exceptionState)
90 Animation::Animation(Element* target, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing, Priority priority, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
138 static AnimationStack& ensureAnimationStack(Element* elemen
[all...]
H A DKeyframeEffectModel.h50 class Element;
100 void forceConversionsToAnimatableValues(Element* element)
111 void ensureInterpolationEffect(Element* = 0) const;
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataTransfer.h43 class Element;
84 void setDragImage(Element*, int x, int y, ExceptionState&);
92 void declareAndWriteDragImage(Element*, const KURL&, const String& title);
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DShadowRoot.h32 #include "core/dom/Element.h"
71 Element* host() const { return toElement(parentOrShadowHostNode()); }
116 Element* activeElement() const;
161 inline Element* ShadowRoot::activeElement() const
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDetailsElement.cpp102 Element* HTMLDetailsElement::findMainSummary() const
124 Element* content = ensureUserAgentShadowRoot().getElementById(ShadowElementNames::detailsContent());
130 Element* summary = ensureUserAgentShadowRoot().getElementById(ShadowElementNames::detailsSummary());
H A DHTMLOptionsCollection.cpp49 Element* element = item(i);
120 void HTMLOptionsCollection::namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<NodeList>& returnValue0, RefPtrWillBeRawPtr<Element>& returnValue1)
122 WillBeHeapVector<RefPtrWillBeMember<Element> > namedItems;
133 // FIXME: The spec and Firefox do not return a NodeList. They always return the first matching Element.
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputTypeView.h48 class Element;
95 virtual void handleFocusEvent(Element* oldFocusedElement, FocusType);
96 virtual void handleFocusInEvent(Element* oldFocusedElement, FocusType);
H A DSearchInputType.cpp88 Element* container = containerElement();
89 Element* viewPort = element().userAgentShadowRoot()->getElementById(ShadowElementNames::editingViewPort());
165 Element* button = element().userAgentShadowRoot()->getElementById(ShadowElementNames::clearButton());
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeEditElement.h94 Element* fieldsWrapperElement() const;
98 void focusByOwner(Element* oldFocusedElement = 0);
138 // Element function.
157 DEFINE_TYPE_CASTS(DateTimeEditElement, Element, element, element->isDateTimeEditElement(), element.isDateTimeEditElement());
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFocusController.h39 class Element;
51 Element* owner() const;
76 bool setFocusedElement(Element*, PassRefPtrWillBeRawPtr<Frame>, FocusType = FocusTypeNone);
/external/chromium_org/third_party/WebKit/Source/web/
H A DFullscreenController.cpp64 RefPtrWillBeRawPtr<Element> element = m_provisionalFullScreenElement.release();
130 void FullscreenController::enterFullScreenForElement(Element* element)
152 void FullscreenController::exitFullScreenForElement(Element* element)
H A DValidationMessageClientImpl.cpp29 #include "core/dom/Element.h"
65 void ValidationMessageClientImpl::showValidationMessage(const Element& anchor, const String& message, TextDirection messageDir, const String& subMessage, TextDirection subMessageDir)
93 void ValidationMessageClientImpl::hideValidationMessage(const Element& anchor)
104 bool ValidationMessageClientImpl::isValidationMessageVisible(const Element& anchor)
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js4773 if (!win.Element){
4774 win.Element = $empty;
4776 win.Element.prototype = (Browser.Engine.webkit) ? window["[[DOMElement.prototype]]"] : {};
5670 Script: Element.js
5678 var Element = new Native({
5680 name: 'Element',
5682 legacy: window.Element,
5685 var konstructor = Element.Constructors.get(tag);
5692 Element.Prototype[key] = value;
5707 Element
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DCustomElementConstructorBuilder.h49 class Element;
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXListBoxOption.h39 class Element;

Completed in 478 milliseconds

<<11121314151617181920>>