HomeSort by relevance Sort by last modified time
    Searched refs:nodeHandle (Results 1 - 25 of 29) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java 230 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
234 * @param nodeHandle int Handle of the node.
237 public boolean hasChildNodes(int nodeHandle);
242 * @param nodeHandle int Handle of the node.
246 public int getFirstChild(int nodeHandle);
251 * @param nodeHandle int Handle of the node.
255 public int getLastChild(int nodeHandle);
278 * @param nodeHandle int Handle of the node.
281 public int getFirstAttribute(int nodeHandle);
286 * @param nodeHandle handle to node, which should probably be an elemen
    [all...]
DTMFilter.java 150 * @param nodeHandle int Handle of the node.
154 public short acceptNode(int nodeHandle, int whatToShow);
179 * @param nodeHandle int Handle of the node.
186 public short acceptNode(int nodeHandle, int whatToShow, int expandedName);
DTMIterator.java 78 * @param nodeHandle the nodeHandle.
82 public DTM getDTM(int nodeHandle);
99 * @return nodeHandle int Handle of the context node.
109 * @param nodeHandle int Handle of the context node.
124 public void setRoot(int nodeHandle, Object environment);
DTMManager.java 190 * @param nodeHandle the nodeHandle.
194 public abstract DTM getDTM(int nodeHandle);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageFormClient.cpp 46 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
47 m_client.textFieldDidBeginEditing(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
55 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
56 m_client.textFieldDidEndEditing(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
64 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
65 m_client.textDidChangeInTextField(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
73 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(textAreaElement);
74 m_client.textDidChangeInTextArea(toAPI(page), toAPI(nodeHandle.get()), toAPI(frame), m_client.clientInfo);
82 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
83 return m_client.shouldPerformActionInTextField(toAPI(page), toAPI(nodeHandle.get()), actionType, toAPI(frame), m_client.clientInfo)
    [all...]
InjectedBundlePageFullScreenClient.cpp 56 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element);
57 m_client.enterFullScreenForElement(toAPI(page), toAPI(nodeHandle.get()));
65 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element);
66 m_client.enterFullScreenForElement(toAPI(page), toAPI(nodeHandle.get()));
InjectedBundleHitTestResult.h 48 PassRefPtr<InjectedBundleNodeHandle> nodeHandle() const;
InjectedBundleHitTestResult.cpp 47 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleHitTestResult::nodeHandle() const
InjectedBundlePageEditorClient.cpp 60 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(node);
62 return m_client.shouldInsertNode(toAPI(page), toAPI(nodeHandle.get()), toAPI(rangeToReplaceHandle.get()), toAPI(action), m_client.clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleNodeHandle.cpp 44 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(contextRef, objectRef);
45 return toAPI(nodeHandle.release().releaseRef());
50 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(nodeHandleRef)->document();
51 return toAPI(nodeHandle.release().releaseRef());
66 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(elementHandleRef)->elementShadowRoot();
67 return toAPI(nodeHandle.release().releaseRef());
97 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(htmlTableCellElementHandleRef)->htmlTableCellElementCellAbove();
98 return toAPI(nodeHandle.release().releaseRef());
WKBundleHitTestResult.cpp 43 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(hitTestResultRef)->nodeHandle();
44 return toAPI(nodeHandle.release().leakRef());
WKBundleNodeHandlePrivate.h 40 WK_EXPORT WKBundleNodeHandleRef WKBundleNodeHandleCopyDocument(WKBundleNodeHandleRef nodeHandle);
45 WK_EXPORT WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandle, bool* isReplaced);
WKBundleFrame.h 54 WK_EXPORT JSValueRef WKBundleFrameGetJavaScriptWrapperForNodeForWorld(WKBundleFrameRef frame, WKBundleNodeHandleRef nodeHandle, WKBundleScriptWorldRef world);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 77 int m_docElement = NULL; // nodeHandle to the root of the actual dtm doc content
118 // each reference slot is addressed by a nodeHandle index value.
660 // m_docElement = NULL; // reset nodeHandle to the root of the actual dtm doc content
681 // * @return nodeHandle int of the element created
    [all...]
DTMDefaultBase.java 790 public String dumpNode(int nodeHandle)
792 if(nodeHandle==DTM.NULL)
796 switch (getNodeType(nodeHandle))
846 sb.append("["+nodeHandle+": "+typestring+
847 "(0x"+Integer.toHexString(getExpandedTypeID(nodeHandle))+") "+
848 getNodeNameX(nodeHandle)+" {"+getNamespaceURI(nodeHandle)+"}"+
849 "=\""+ getNodeValue(nodeHandle)+"\"]");
872 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
876 * @param nodeHandle int Handle of the node
    [all...]
DTMManagerDefault.java 639 * @param nodeHandle DTM Handle indicating which node to retrieve
643 synchronized public DTM getDTM(int nodeHandle)
648 return m_dtms[nodeHandle >>> IDENT_DTM_NODE_BITS];
652 if(nodeHandle==DTM.NULL)
666 * @return The DTM ID (as the high bits of a NodeHandle, not as our
717 // Following shouldn't need a nodeHandle, but does...
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
HitTestResultNodeHandle_Bundle.cpp 45 WKRetainPtr<WKBundleNodeHandleRef> nodeHandle(AdoptWK, WKBundleHitTestResultCopyNodeHandle(hitTestResult));
46 if (!nodeHandle)
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 600 * @param nodeHandle The node ID.
604 public Node getNode(int nodeHandle)
607 int identity = makeNodeIdentity(nodeHandle);
742 * @param nodeHandle int Handle of the node upon which to look up this attribute..
751 public int getAttributeNode(int nodeHandle, String namespaceURI,
759 int type = getNodeType(nodeHandle);
765 int identity = makeNodeIdentity(nodeHandle);
808 * @param nodeHandle The node ID.
812 public XMLString getStringValue(int nodeHandle)
815 int type = getNodeType(nodeHandle);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 490 * @param nodeHandle The node ID.
499 public void dispatchCharactersEvents(int nodeHandle, ContentHandler ch,
504 int identity = makeNodeIdentity(nodeHandle);
586 * @param nodeHandle the id of the node.
591 public String getNodeName(int nodeHandle)
594 int expandedTypeID = getExpandedTypeID(nodeHandle);
602 int type = getNodeType(nodeHandle);
620 int qnameIndex = m_dataOrQName.elementAt(makeNodeIdentity(nodeHandle));
637 * @param nodeHandle the id of the node.
640 public String getNodeNameX(int nodeHandle)
    [all...]
SAX2RTFDTM.java 177 * @param nodeHandle the id of the node.
180 public int getDocumentRoot(int nodeHandle)
182 for (int id=makeNodeIdentity(nodeHandle); id!=NULL; id=_parent(id)) {
SAX2DTM2.java     [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
InjectedBundleNodeHandle.cpp 74 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::create(node);
75 result.first->second = nodeHandle.get();
76 return nodeHandle.release();
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathContext.java 165 * @param nodeHandle the nodeHandle.
169 public DTM getDTM(int nodeHandle)
171 return m_dtmManager.getDTM(nodeHandle);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 220 public DTM getDTM(int nodeHandle)
224 return getDTMManager().getDTM(nodeHandle);
259 public void setRoot(int nodeHandle, Object environment)
265 m_iter.setRoot(nodeHandle, environment);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyTable.java 137 public void setRoot(int nodeHandle, Object environment) {

Completed in 609 milliseconds

1 2