Searched defs:elementId (Results 1 - 25 of 29) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DTreeScope.cpp78 Element* TreeScope::getElementById(const AtomicString& elementId) const
80 if (elementId.isEmpty())
82 return m_elementsById.getElementById(elementId.impl(), this);
85 void TreeScope::addElementById(const AtomicString& elementId, Element* element) argument
87 m_elementsById.add(elementId.impl(), element);
90 void TreeScope::removeElementById(const AtomicString& elementId, Element* element) argument
92 m_elementsById.remove(elementId.impl(), element);
/external/webkit/Source/WebCore/svg/
H A DSVGDocumentExtensions.cpp122 bool SVGDocumentExtensions::sampleAnimationAtTime(const String& elementId, SVGSMILElement* element, double time) argument
125 UNUSED_PARAM(elementId);
135 container->sampleAnimationAtTime(elementId, time);
H A DSVGUseElement.cpp391 String elementId = element->getIdAttribute(); local
402 elementNodeName.latin1().data(), element, directUseElementName.latin1().data(), directUseElement, shadowTreeElementNodeName.latin1().data(), shadowTreeElement, elementId.latin1().data());
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.cpp212 void SMILTimeContainer::sampleAnimationAtTime(const String& elementId, double newTime) argument
219 m_nextSamplingTarget = elementId;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java1330 * <code>elementId</code>. If no such element exists, returns
1342 * @param elementId The unique <code>id</code> value for an element.
1345 public int getElementById(String elementId) argument
1353 Node elem = doc.getElementById(elementId);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DLayoutTestController.cpp70 static JSObjectRef getElementById(WKBundleFrameRef frame, JSStringRef elementId) argument
79 JSValueRef elementIdValue = JSValueMakeString(context, elementId);
164 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) argument
169 return WKBundleFramePauseAnimationOnElementWithId(mainFrame, toWK(animationName).get(), toWK(elementId).get(), time);
228 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef elementId) argument
231 JSObjectRef element = getElementById(mainFrame, elementId);
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java660 * <code>elementId</code>. If no such element exists, returns
672 * @param elementId The unique <code>id</code> value for an element.
675 public int getElementById(String elementId); argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java1345 * <code>elementId</code>. If no such element exists, returns
1357 * @param elementId The unique <code>id</code> value for an element.
1360 public int getElementById(String elementId) argument
1368 intObj = (Integer) m_idAttributes.get(elementId);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java1001 * @param elementId ID of the element to get
1005 public Element getElementById(String elementId) argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp391 bool DumpRenderTreeSupportGtk::pauseSVGAnimation(WebKitWebFrame* frame, const char* animationId, double time, const char* elementId) argument
401 return document->accessSVGExtensions()->sampleAnimationAtTime(elementId, static_cast<SVGSMILElement*>(coreElement), time);
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp738 /* [in] */ BSTR elementId,
744 String idString(elementId);
737 getElementById( BSTR elementId, IDOMElement** result) argument
H A DDOMHTMLClasses.h371 /* [in] */ BSTR elementId,
372 /* [retval][out] */ IDOMElement **result) { return DOMDocument::getElementById(elementId, result); }
428 /* [in] */ BSTR elementId,
370 getElementById( BSTR elementId, IDOMElement **result) argument
H A DWebFrame.cpp1243 HRESULT WebFrame::pauseSVGAnimation(BSTR elementId, IDOMNode* node, double secondsFromNow, BOOL* animationWasRunning) argument
1263 *animationWasRunning = document->accessSVGExtensions()->sampleAnimationAtTime(String(elementId, SysStringLen(elementId)), static_cast<SVGSMILElement*>(domNode->node()), secondsFromNow);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java2031 * <code>elementId</code>. If no such element exists, returns
2043 * @param elementId The unique <code>id</code> value for an element.
2046 public abstract int getElementById(String elementId); argument
H A DDTMDocumentImpl.java1867 * <code>elementId</code>. If no such element exists, returns
1879 * @param elementId The unique <code>id</code> value for an element.
1882 public int getElementById(String elementId) {return 0;} argument
H A DDTMNodeProxy.java948 * @param elementId
953 public final Element getElementById(String elementId) argument
955 return (Element) dtm.getNode(dtm.getElementById(elementId));
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp489 void InspectorDOMAgent::querySelector(ErrorString* errorString, int nodeId, const String& selectors, int* elementId) argument
491 *elementId = 0;
504 *elementId = pushNodePathToFrontend(element.get());
575 void InspectorDOMAgent::setAttribute(ErrorString* errorString, int elementId, const String& name, const String& value) argument
577 Element* element = assertElement(errorString, elementId);
586 void InspectorDOMAgent::removeAttribute(ErrorString* errorString, int elementId, const String& name) argument
588 Element* element = assertElement(errorString, elementId);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.cpp255 bool DumpRenderTreeSupportQt::pauseAnimation(QWebFrame *frame, const QString &animationName, double time, const QString &elementId) argument
268 Node* coreNode = doc->getElementById(elementId);
275 bool DumpRenderTreeSupportQt::pauseTransitionOfProperty(QWebFrame *frame, const QString &propertyName, double time, const QString &elementId) argument
288 Node* coreNode = doc->getElementById(elementId);
297 bool DumpRenderTreeSupportQt::pauseSVGAnimation(QWebFrame *frame, const QString &animationId, double time, const QString &elementId) argument
316 return doc->accessSVGExtensions()->sampleAnimationAtTime(elementId, static_cast<SVGSMILElement*>(coreNode), time);
608 bool DumpRenderTreeSupportQt::elementDoesAutoCompleteForElementWithId(QWebFrame* frame, const QString& elementId) argument
617 Node* coreNode = doc->getElementById(elementId);
1025 QUrl DumpRenderTreeSupportQt::mediaContentUrlByElementId(QWebFrame* frame, const QString& elementId) argument
1038 Node* coreNode = doc->getElementById(elementId);
1122 qt_drt_pauseAnimation(QWebFrame* frame, const QString& animationName, double time, const QString& elementId) argument
1127 qt_drt_pauseTransitionOfProperty(QWebFrame* frame, const QString& propertyName, double time, const QString &elementId) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DLayoutTestController.cpp906 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const WebString& animationName, double time, const WebString& elementId) argument
916 WebElement element = webFrame->document().getElementById(elementId);
922 bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(const WebString& propertyName, double time, const WebString& elementId) argument
932 WebElement element = webFrame->document().getElementById(elementId);
938 bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const WebString& elementId) argument
944 WebElement element = webFrame->document().getElementById(elementId);
997 WebString elementId = cppVariantToWebString(arguments[2]); local
998 result->set(pauseAnimationAtTimeOnElementWithId(animationName, time, elementId));
1008 WebString elementId = cppVariantToWebString(arguments[2]); local
1009 result->set(pauseTransitionAtTimeOnElementWithId(propertyName, time, elementId));
1019 WebString elementId = cppVariantToWebString(arguments[0]); local
1048 WebString elementId = cppVariantToWebString(arguments[2]); local
[all...]
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp712 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) argument
715 gchar* element = JSStringCopyUTF8CString(elementId);
722 bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) argument
725 gchar* element = JSStringCopyUTF8CString(elementId);
732 bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) argument
735 gchar* element = JSStringCopyUTF8CString(elementId);
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp497 const QString& elementId)
501 return DumpRenderTreeSupportQt::pauseAnimation(frame, animationName, time, elementId);
506 const QString& elementId)
510 return DumpRenderTreeSupportQt::pauseTransitionOfProperty(frame, propertyName, time, elementId);
515 const QString& elementId)
519 return DumpRenderTreeSupportQt::pauseSVGAnimation(frame, animationId, time, elementId);
749 bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const QString& elementId) argument
751 return DumpRenderTreeSupportQt::elementDoesAutoCompleteForElementWithId(m_drt->webPage()->mainFrame(), elementId);
495 pauseAnimationAtTimeOnElementWithId(const QString& animationName, double time, const QString& elementId) argument
504 pauseTransitionAtTimeOnElementWithId(const QString& propertyName, double time, const QString& elementId) argument
513 sampleSVGAnimationForElementAtTime(const QString& animationId, double time, const QString& elementId) argument
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp1033 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) argument
1039 BSTR idBSTR = JSStringCopyBSTR(elementId);
1058 bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) argument
1064 BSTR idBSTR = JSStringCopyBSTR(elementId);
1083 bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) argument
1100 BSTR elementIdBSTR = JSStringCopyBSTR(elementId);
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp314 bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) argument
361 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) argument
367 bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) argument
/external/aac/libAACenc/src/
H A Dadj_thr.cpp956 INT elementId; local
959 for(elementId=elementOffset;elementId<nElements;elementId++) {
960 for(ch=0; ch<cm->elInfo[elementId].nChannelsInEl; ch++) {
961 SHORT* ptr = qcElement[elementId]->qcOutChannel[ch]->quantSpec;
962 sfbPeFactorsLdData[elementId][ch] = (FIXP_DBL*)ptr;
969 for(elementId=elementOffset;elementId<nElements;elementId
1114 INT elementId; local
1216 INT elementId; local
1458 int elementId; local
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp1863 bool WebFrameImpl::pauseSVGAnimation(const WebString& animationId, double time, const WebString& elementId) argument
1879 return document->accessSVGExtensions()->sampleAnimationAtTime(elementId, static_cast<SVGSMILElement*>(coreNode), time);

Completed in 1438 milliseconds

12