/external/webkit/Source/WebCore/dom/ |
D | TreeScope.cpp | 78 Element* TreeScope::getElementById(const AtomicString& elementId) const in getElementById() 80 if (elementId.isEmpty()) in getElementById() 82 return m_elementsById.getElementById(elementId.impl(), this); in getElementById() 85 void TreeScope::addElementById(const AtomicString& elementId, Element* element) in addElementById() argument 87 m_elementsById.add(elementId.impl(), element); in addElementById() 90 void TreeScope::removeElementById(const AtomicString& elementId, Element* element) in removeElementById() argument 92 m_elementsById.remove(elementId.impl(), element); in removeElementById()
|
D | StaticNodeList.cpp | 48 Node* StaticNodeList::itemWithName(const AtomicString& elementId) const in itemWithName() 54 if (node->hasID() && static_cast<Element*>(node)->getIdAttribute() == elementId) in itemWithName()
|
D | StaticHashSetNodeList.cpp | 66 Node* StaticHashSetNodeList::itemWithName(const AtomicString& elementId) const in itemWithName() 72 if (node->hasID() && static_cast<Element*>(node)->getIdAttribute() == elementId) in itemWithName()
|
D | DynamicNodeList.cpp | 122 Node* DynamicNodeList::itemWithName(const AtomicString& elementId) const in itemWithName() 125 Element* node = m_rootNode->document()->getElementById(elementId); in itemWithName() 141 if (node->hasID() && static_cast<Element*>(node)->idForStyleResolution() == elementId) in itemWithName()
|
D | TreeScope.h | 46 void addElementById(const AtomicString& elementId, Element*); 47 void removeElementById(const AtomicString& elementId, Element*);
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/ |
D | util.js | 27 function $(elementId) { argument 28 return document.getElementById(elementId);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.h | 98 …static bool pauseAnimation(QWebFrame*, const QString& name, double time, const QString& elementId); in Q_DECLARE_METATYPE() 99 … pauseTransitionOfProperty(QWebFrame*, const QString& name, double time, const QString& elementId); in Q_DECLARE_METATYPE() 100 …l pauseSVGAnimation(QWebFrame*, const QString& animationId, double time, const QString& elementId); in Q_DECLARE_METATYPE() 133 static bool elementDoesAutoCompleteForElementWithId(QWebFrame* frame, const QString& elementId); in Q_DECLARE_METATYPE() 201 static QUrl mediaContentUrlByElementId(QWebFrame*, const QString& elementId); in Q_DECLARE_METATYPE()
|
D | DumpRenderTreeSupportQt.cpp | 255 …useAnimation(QWebFrame *frame, const QString &animationName, double time, const QString &elementId) in pauseAnimation() argument 268 Node* coreNode = doc->getElementById(elementId); in pauseAnimation() 275 …ionOfProperty(QWebFrame *frame, const QString &propertyName, double time, const QString &elementId) in pauseTransitionOfProperty() argument 288 Node* coreNode = doc->getElementById(elementId); in pauseTransitionOfProperty() 297 …seSVGAnimation(QWebFrame *frame, const QString &animationId, double time, const QString &elementId) in pauseSVGAnimation() argument 316 …return doc->accessSVGExtensions()->sampleAnimationAtTime(elementId, static_cast<SVGSMILElement*>(c… in pauseSVGAnimation() 608 …rTreeSupportQt::elementDoesAutoCompleteForElementWithId(QWebFrame* frame, const QString& elementId) in elementDoesAutoCompleteForElementWithId() argument 617 Node* coreNode = doc->getElementById(elementId); in elementDoesAutoCompleteForElementWithId() 1025 QUrl DumpRenderTreeSupportQt::mediaContentUrlByElementId(QWebFrame* frame, const QString& elementId) in mediaContentUrlByElementId() argument 1038 Node* coreNode = doc->getElementById(elementId); in mediaContentUrlByElementId() [all …]
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | LayoutTestControllerQt.h | 176 …nimationAtTimeOnElementWithId(const QString& animationName, double time, const QString& elementId); 177 …ransitionAtTimeOnElementWithId(const QString& propertyName, double time, const QString& elementId); 178 …pleSVGAnimationForElementAtTime(const QString& animationId, double time, const QString& elementId); 179 bool elementDoesAutoCompleteForElementWithId(const QString& elementId);
|
D | LayoutTestControllerQt.cpp | 497 const QString& elementId) in pauseAnimationAtTimeOnElementWithId() argument 501 return DumpRenderTreeSupportQt::pauseAnimation(frame, animationName, time, elementId); in pauseAnimationAtTimeOnElementWithId() 506 const QString& elementId) in pauseTransitionAtTimeOnElementWithId() argument 510 return DumpRenderTreeSupportQt::pauseTransitionOfProperty(frame, propertyName, time, elementId); in pauseTransitionAtTimeOnElementWithId() 515 const QString& elementId) in sampleSVGAnimationForElementAtTime() argument 519 return DumpRenderTreeSupportQt::pauseSVGAnimation(frame, animationId, time, elementId); in sampleSVGAnimationForElementAtTime() 749 bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const QString& elementId) in elementDoesAutoCompleteForElementWithId() argument 751 …erTreeSupportQt::elementDoesAutoCompleteForElementWithId(m_drt->webPage()->mainFrame(), elementId); in elementDoesAutoCompleteForElementWithId()
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
D | LayoutTestController.cpp | 70 static JSObjectRef getElementById(WKBundleFrameRef frame, JSStringRef elementId) in getElementById() argument 79 JSValueRef elementIdValue = JSValueMakeString(context, elementId); in getElementById() 164 …:pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) in pauseAnimationAtTimeOnElementWithId() argument 169 …mePauseAnimationOnElementWithId(mainFrame, toWK(animationName).get(), toWK(elementId).get(), time); in pauseAnimationAtTimeOnElementWithId() 228 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef elementId) in counterValueForElementById() argument 231 JSObjectRef element = getElementById(mainFrame, elementId); in counterValueForElementById()
|
D | LayoutTestController.h | 83 JSRetainPtr<JSStringRef> counterValueForElementById(JSStringRef elementId); 98 …pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId);
|
/external/webkit/Source/WebCore/svg/ |
D | SVGDocumentExtensions.cpp | 122 bool SVGDocumentExtensions::sampleAnimationAtTime(const String& elementId, SVGSMILElement* element,… in sampleAnimationAtTime() argument 125 UNUSED_PARAM(elementId); in sampleAnimationAtTime() 135 container->sampleAnimationAtTime(elementId, time); in sampleAnimationAtTime()
|
D | SVGDocumentExtensions.h | 59 bool sampleAnimationAtTime(const String& elementId, SVGSMILElement*, double time);
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorDOMAgent.h | 114 void querySelector(ErrorString*, int nodeId, const String& selectors, int* elementId); 118 void setAttribute(ErrorString*, int elementId, const String& name, const String& value); 119 void removeAttribute(ErrorString*, int elementId, const String& name);
|
D | InspectorDOMAgent.cpp | 489 …Agent::querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) in querySelector() argument 491 *elementId = 0; in querySelector() 504 *elementId = pushNodePathToFrontend(element.get()); in querySelector() 575 void InspectorDOMAgent::setAttribute(ErrorString* errorString, int elementId, const String& name, c… in setAttribute() argument 577 Element* element = assertElement(errorString, elementId); in setAttribute() 586 void InspectorDOMAgent::removeAttribute(ErrorString* errorString, int elementId, const String& name) in removeAttribute() argument 588 Element* element = assertElement(errorString, elementId); in removeAttribute()
|
/external/webkit/Tools/DumpRenderTree/wx/ |
D | LayoutTestControllerWx.cpp | 314 …:pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) in pauseTransitionAtTimeOnElementWithId() argument 361 …:pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) in pauseAnimationAtTimeOnElementWithId() argument 367 …er::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) in sampleSVGAnimationForElementAtTime() argument
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | LayoutTestController.cpp | 906 …ationAtTimeOnElementWithId(const WebString& animationName, double time, const WebString& elementId) in pauseAnimationAtTimeOnElementWithId() argument 916 WebElement element = webFrame->document().getElementById(elementId); in pauseAnimationAtTimeOnElementWithId() 922 …sitionAtTimeOnElementWithId(const WebString& propertyName, double time, const WebString& elementId) in pauseTransitionAtTimeOnElementWithId() argument 932 WebElement element = webFrame->document().getElementById(elementId); in pauseTransitionAtTimeOnElementWithId() 938 bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const WebString& elementId) in elementDoesAutoCompleteForElementWithId() argument 944 WebElement element = webFrame->document().getElementById(elementId); in elementDoesAutoCompleteForElementWithId() 997 WebString elementId = cppVariantToWebString(arguments[2]); in pauseAnimationAtTimeOnElementWithId() local 998 result->set(pauseAnimationAtTimeOnElementWithId(animationName, time, elementId)); in pauseAnimationAtTimeOnElementWithId() 1008 WebString elementId = cppVariantToWebString(arguments[2]); in pauseTransitionAtTimeOnElementWithId() local 1009 result->set(pauseTransitionAtTimeOnElementWithId(propertyName, time, elementId)); in pauseTransitionAtTimeOnElementWithId() [all …]
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
D | LayoutTestControllerGtk.cpp | 712 …:pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) in pauseAnimationAtTimeOnElementWithId() argument 715 gchar* element = JSStringCopyUTF8CString(elementId); in pauseAnimationAtTimeOnElementWithId() 722 …:pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) in pauseTransitionAtTimeOnElementWithId() argument 725 gchar* element = JSStringCopyUTF8CString(elementId); in pauseTransitionAtTimeOnElementWithId() 732 …er::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) in sampleSVGAnimationForElementAtTime() argument 735 gchar* element = JSStringCopyUTF8CString(elementId); in sampleSVGAnimationForElementAtTime()
|
/external/chromium/chrome/browser/bookmarks/ |
D | bookmark_pasteboard_helper_mac.mm | 148 int64 elementId = element.get_id(); 149 NSNumber* idNum = [NSNumber numberWithLongLong:elementId]; 162 int64 elementId = element.get_id(); 163 NSNumber* idNum = [NSNumber numberWithLongLong:elementId];
|
/external/webkit/Tools/DumpRenderTree/ |
D | LayoutTestController.h | 273 …pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId); 274 …pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId); 275 …ol sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId);
|
/external/webkit/Source/WebCore/svg/animation/ |
D | SMILTimeContainer.h | 66 void sampleAnimationAtTime(const String& elementId, double seconds);
|
D | SMILTimeContainer.cpp | 212 void SMILTimeContainer::sampleAnimationAtTime(const String& elementId, double newTime) in sampleAnimationAtTime() argument 219 m_nextSamplingTarget = elementId; in sampleAnimationAtTime()
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
D | LayoutTestController.idl | 56 DOMString counterValueForElementById(in DOMString elementId); 76 …AnimationAtTimeOnElementWithId(in DOMString animationName, in double time, in DOMString elementId);
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebFrame.h | 287 const WebString& elementId) = 0; 596 const WebString& elementId) = 0;
|