Searched refs:element (Results 126 - 150 of 1396) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/FullScreen/
H A DWebFullScreenManager.cpp50 static IntRect screenRectOfContents(Element* element) argument
52 ASSERT(element);
54 if (element->renderer() && element->renderer()->hasLayer() && element->renderer()->enclosingLayer()->isComposited()) {
55 FloatQuad contentsBox = static_cast<FloatRect>(element->renderer()->enclosingLayer()->backing()->contentsBox());
56 contentsBox = element->renderer()->localToAbsoluteQuad(contentsBox);
57 return element->renderer()->view()->frameView()->contentsToScreen(contentsBox.enclosingBoundingBox());
60 return element->screenRect();
77 WebCore::Element* WebFullScreenManager::element() function in class:WebKit::WebFullScreenManager
95 enterFullScreenForElement(WebCore::Element* element) argument
103 exitFullScreenForElement(WebCore::Element* element) argument
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rexml/
H A Dtest_xpath_attribute_query.rb10 # xmlstr1 and xmlstr2 only differ in the second line - namespaces in the root element
65 REXML::Document.new(xmlString).elements.each("feed/entry") do |element|
66 @alternate_link = element.elements["link[@rel='alternate']"]
82 REXML::XPath.each(doc, "//link[@rel='alternate']") do |element|
83 @alternate_link = element
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DSelectorChecker.h55 SelectorCheckingContext(const CSSSelector* selector, Element* element, VisitedMatchType visitedMatchType) argument
57 , element(element)
71 Element* element; member in struct:WebCore::SelectorChecker::SelectorCheckingContext
120 inline bool SelectorChecker::tagMatches(const Element* element, const QualifiedName& tagQName) argument
125 if (localName != starAtom && localName != element->localName())
128 return namespaceURI == starAtom || namespaceURI == element->namespaceURI();
131 inline bool SelectorChecker::checkExactAttribute(const Element* element, const QualifiedName& selectorAttributeName, const AtomicStringImpl* value) argument
133 if (!element->hasAttributesWithoutUpdate())
135 unsigned size = element
[all...]
H A DSelectorFilter.h49 bool parentStackIsConsistent(const ContainerNode* parentNode) const { return !m_parentStack.isEmpty() && m_parentStack.last().element == parentNode; }
57 ParentStackFrame() : element(0) { }
58 ParentStackFrame(Element* element) : element(element) { } argument
59 Element* element; member in struct:WebCore::SelectorFilter::ParentStackFrame
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dremque.c17 remque(void *element) argument
21 elem = (struct que_elem *)element;
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DBaseButtonInputType.h41 BaseButtonInputType(HTMLInputElement* element) : BaseClickableWithKeyInputType(element) { } argument
H A DResetInputType.h43 ResetInputType(HTMLInputElement* element) : BaseButtonInputType(element) { } argument
H A DTimeInputType.cpp52 TimeInputType::TimeInputType(HTMLInputElement* element) argument
53 : BaseTimeInputType(element)
57 PassOwnPtr<InputType> TimeInputType::create(HTMLInputElement* element) argument
59 return adoptPtr(new TimeInputType(element));
96 const Decimal stepBase = parseToNumber(element()->fastGetAttribute(minAttr), 0);
97 const Decimal minimum = parseToNumber(element()->fastGetAttribute(minAttr), Decimal::fromDouble(DateComponents::minimumTime()));
98 const Decimal maximum = parseToNumber(element()->fastGetAttribute(maxAttr), Decimal::fromDouble(DateComponents::maximumTime()));
99 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element()->fastGetAttribute(stepAttr));
H A DURLInputType.h43 URLInputType(HTMLInputElement* element) : BaseTextInputType(element) { } argument
H A DWeekInputType.cpp49 PassOwnPtr<InputType> WeekInputType::create(HTMLInputElement* element) argument
51 return adoptPtr(new WeekInputType(element));
73 const Decimal stepBase = parseToNumber(element()->fastGetAttribute(minAttr), weekDefaultStepBase);
74 const Decimal minimum = parseToNumber(element()->fastGetAttribute(minAttr), Decimal::fromDouble(DateComponents::minimumWeek()));
75 const Decimal maximum = parseToNumber(element()->fastGetAttribute(maxAttr), Decimal::fromDouble(DateComponents::maximumWeek()));
76 const Decimal step = StepRange::parseStep(anyStepHandling, stepDescription, element()->fastGetAttribute(stepAttr));
H A DHTMLCollection.cpp205 template <> inline bool isMatchingElement(const HTMLCollection* htmlCollection, Element* element) argument
208 if (!element->isHTMLElement() && !(type == DocAll || type == NodeChildren))
213 return element->hasLocalName(imgTag);
215 return element->hasLocalName(scriptTag);
217 return element->hasLocalName(formTag);
219 return element->hasLocalName(tbodyTag);
221 return element->hasLocalName(tdTag) || element->hasLocalName(thTag);
223 return element->hasLocalName(trTag);
225 return element
272 isMatchingElement(const LiveNodeList* nodeList, Element* element) argument
277 isMatchingElement(const HTMLTagNodeList* nodeList, Element* element) argument
282 isMatchingElement(const ClassNodeList* nodeList, Element* element) argument
338 Element* element = ElementTraversal::firstWithin(root); local
551 Element* element = ElementTraversal::firstWithin(root); local
709 append(NodeCacheMap& map, const AtomicString& key, Element* element) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DClipboardGtk.cpp45 void Clipboard::declareAndWriteDragImage(Element* element, const KURL& url, const String& label, Frame* frame) argument
47 m_pasteboard->writeImage(element->toNode(), url, label);
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DClipboardQt.cpp59 void Clipboard::declareAndWriteDragImage(Element* element, const KURL& url, const String& label, Frame* frame) argument
61 m_pasteboard->writeImage(element->toNode(), url, label);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderTableCaption.cpp27 RenderTableCaption::RenderTableCaption(Element* element) argument
28 : RenderBlock(element)
H A DRenderMediaControlElements.cpp38 RenderMediaVolumeSliderContainer::RenderMediaVolumeSliderContainer(Element* element) argument
39 : RenderBlock(element)
62 RenderMediaControlTimelineContainer::RenderMediaControlTimelineContainer(Element* element) argument
63 : RenderFlexibleBox(element)
84 RenderTextTrackContainerElement::RenderTextTrackContainerElement(Element* element) argument
85 : RenderBlock(element)
/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGHiddenContainer.cpp31 RenderSVGHiddenContainer::RenderSVGHiddenContainer(SVGStyledElement* element) argument
32 : RenderSVGContainer(element)
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/
H A DWebPluginContainerPrivate.h46 - (void)_webPluginContainerSetMediaPlayerProxy:(WebMediaPlayerProxy *)proxy forElement:(DOMElement *)element;
48 - (void)_webPluginContainerPostMediaPlayerNotification:(int)notification forElement:(DOMElement *)element;
/macosx-10.9.5/IOKitUser-907.100.13/hid.subproj/
H A DIOHIDValue.c46 IOHIDElementRef element; member in struct:__IOHIDValue
101 if (event->element) CFRelease(event->element);
104 IOHIDValueRef _IOHIDValueCreateWithElementValuePtr(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDElementValue * pElementValue) argument
109 if ( !element || !pElementValue )
112 length = _IOHIDElementGetLength(element);
118 event->element = (IOHIDElementRef)CFRetain(element);
127 IOHIDValueRef _IOHIDValueCreateWithStruct(CFAllocatorRef allocator, IOHIDElementRef element, IOHIDEventStruct * pEventStruct) argument
133 if ( !element || !pEventStruc
157 IOHIDValueCreateWithIntegerValue(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, CFIndex value) argument
183 IOHIDValueCreateWithBytes(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex byteLength) argument
206 IOHIDValueCreateWithBytesNoCopy(CFAllocatorRef allocator, IOHIDElementRef element, uint64_t timeStamp, const uint8_t * bytes, CFIndex length) argument
240 IOHIDElementRef element = event->element; local
247 IOHIDElementRef element = event->element; local
326 IOHIDElementRef element = IOHIDValueGetElement(value); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSHTMLElementCustom.cpp43 HTMLElement* element = impl(); local
45 // The document is put on first, fall back to searching it only after the element and form.
46 scope = JSWithScope::create(exec, asObject(toJS(exec, globalObject(), element->ownerDocument())), scope);
48 // The form is next, searched before the document, but after the element itself.
49 if (HTMLFormElement* form = element->form())
52 // The element is on top, searched first.
53 return JSWithScope::create(exec, asObject(toJS(exec, globalObject(), element)), scope);
59 HTMLElement* element = impl(); local
60 return toJS(exec, globalObject(), WTF::getPtr(element->itemValue()));
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DGoToLineDialog.js39 this.element = document.createElement("div");
40 this.element.className = "go-to-line-dialog";
42 this.element.createChild("label").textContent = WebInspector.UIString("Go to line: ");
44 this._input = this.element.createChild("input");
48 this._goButton = this.element.createChild("button");
75 WebInspector.Dialog.show(sourceView.element, new WebInspector.GoToLineDialog(sourceView));
H A DSection.js37 this.element = document.createElement("div");
38 this.element.className = "section";
39 this.element._section = this;
54 this.element.appendChild(this.headerElement);
139 var parent = this.element.parentElement;
155 var parent = this.element.parentElement;
171 var curElement = this.element;
181 var curElement = this.element;
194 this.element.addStyleClass("expanded");
207 this.element
[all...]
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPathSegWithContext.h30 SVGPathSegWithContext(SVGPathElement* element, SVGPathSegRole role) argument
32 , m_element(element)
54 void setContextAndRole(SVGPathElement* element, SVGPathSegRole role) argument
57 m_element = element;
94 SVGPathSegSingleCoordinate(SVGPathElement* element, SVGPathSegRole role, float x, float y) argument
95 : SVGPathSegWithContext(element, role)
H A DSVGPathSegArc.h31 SVGPathSegArc(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
32 : SVGPathSegWithContext(element, role)
105 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
107 return adoptRef(new SVGPathSegArcAbs(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
111 SVGPathSegArcAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
112 : SVGPathSegArc(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag)
122 static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
124 return adoptRef(new SVGPathSegArcRel(element, role, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
128 SVGPathSegArcRel(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
129 : SVGPathSegArc(element, rol
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebHTMLRepresentation.h59 - (BOOL)elementDoesAutoComplete:(DOMElement *)element;
60 - (BOOL)elementIsPassword:(DOMElement *)element;
61 - (DOMElement *)formForElement:(DOMElement *)element;
64 - (NSString *)searchForLabels:(NSArray *)labels beforeElement:(DOMElement *)element resultDistance:(NSUInteger*)outDistance resultIsInCellAbove:(BOOL*)outIsInCellAbove;
65 - (NSString *)matchLabels:(NSArray *)labels againstElement:(DOMElement *)element;
68 - (NSString *)searchForLabels:(NSArray *)labels beforeElement:(DOMElement *)element; // Use -searchForLabels:beforeElement:resultDistance:resultIsInCellAbove:
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/xml/TclExpat-1.1/
H A Dtester10 proc element {tag name {attrs {}}} {
24 -elementstartcommand {element start} \
25 -elementendcommand {element end} \

Completed in 188 milliseconds

1234567891011>>