Searched refs:nodeList (Results 1 - 25 of 25) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/API/tests/
H A DNodeList.c34 NodeList* nodeList = (NodeList*)malloc(sizeof(NodeList)); local
35 nodeList->parentNode = parentNode;
36 nodeList->refCount = 0;
37 return nodeList;
40 extern unsigned NodeList_length(NodeList* nodeList) argument
44 NodeLink* n = nodeList->parentNode->childNodesTail;
53 extern Node* NodeList_item(NodeList* nodeList, unsigned index) argument
55 unsigned length = NodeList_length(nodeList);
60 NodeLink* n = nodeList->parentNode->childNodesTail;
70 extern void NodeList_ref(NodeList* nodeList) argument
75 NodeList_deref(NodeList* nodeList) argument
[all...]
H A DJSNodeList.c37 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
38 ASSERT(nodeList);
39 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
57 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
58 ASSERT(nodeList);
59 return JSValueMakeNumber(context, NodeList_length(nodeList));
69 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
70 ASSERT(nodeList);
74 Node* node = NodeList_item(nodeList, uindex);
86 NodeList* nodeList local
94 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
119 JSNodeList_new(JSContextRef context, NodeList* nodeList) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DStaticNodeList.h45 RefPtr<StaticNodeList> nodeList = adoptRef(new StaticNodeList); local
46 nodeList->m_nodes.swap(nodes);
47 return nodeList.release();
H A DMutationRecord.cpp86 static NodeList* lazilyInitializeEmptyNodeList(RefPtr<NodeList>& nodeList) argument
88 if (!nodeList)
89 nodeList = StaticNodeList::createEmpty();
90 return nodeList.get();
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Ddomxpath.c239 int position, xpathResultSet *nodeList,
2838 xpathResultSet *nodeList,
2882 rsSetInt (result, nodeList->nr_nodes - position);
2888 rsSetInt (result, nodeList->nr_nodes);
2902 nodeList, cbs, &leftResult, docOrder, errMsg);
2925 nodeList, cbs, &leftResult, docOrder, errMsg);
2950 nodeList, cbs, &leftResult, docOrder, errMsg);
2974 nodeList, cbs, &leftResult, docOrder, errMsg);
3040 nodeList, cbs, &leftResult, docOrder, errMsg);
3067 nodeList, cb
2833 xpathEvalFunction( ast step, domNode *ctxNode, domNode *exprContext, int position, xpathResultSet *nodeList, xpathCBs *cbs, xpathResultSet *result, int *docOrder, char **errMsg ) argument
3828 xpathEvalStep( ast step, domNode *ctxNode, domNode *exprContext, int position, xpathResultSet *nodeList, xpathCBs *cbs, xpathResultSet *result, int *docOrder, char **errMsg ) argument
5100 xpathEvalStepAndPredicates( ast steps, xpathResultSet *nodeList, domNode *currentNode, domNode *exprContext, int currentPos, int *docOrder, xpathCBs *cbs, xpathResultSet *result, char **errMsg ) argument
5151 xpathEvalSteps( ast steps, xpathResultSet *nodeList, domNode *currentNode, domNode *exprContext, int currentPos, int *docOrder, xpathCBs *cbs, xpathResultSet *result, char **errMsg ) argument
5237 xpathResultSet nodeList; local
5285 xpathResultSet stepResult, nodeList, newNodeList; local
[all...]
H A Ddomxpath.h134 domNode *ctxNode, int position, xpathResultSet *nodeList,
182 int xpathEvalSteps (ast steps, xpathResultSet *nodeList,
H A Ddomxslt.c444 domNode *actionNode, xpathResultSet *nodeList,
2884 xpathResultSet nodeList; local
2935 xpathRSInit( &nodeList );
2936 rsAddNodeFast( &nodeList, xs->xmlRootNode);
2940 rc = xsltSetVar (xs, variableName, &nodeList, xs->xmlRootNode,
2942 xpathRSFree ( &nodeList );
3923 xpathResultSet rs, nodeList; local
4130 xpathRSInit( &nodeList );
4131 rsAddNodeFast( &nodeList, currentNode );
4132 DBG(rsPrint( &nodeList ));
5447 ApplyTemplates( xsltState * xs, xpathResultSet * context, domNode * currentNode, int currentPos, domNode * actionNode, xpathResultSet * nodeList, const char * mode, const char * modeURI, char ** errMsg ) argument
6053 xpathResultSet nodeList, rs; local
7406 xpathResultSet nodeList; local
[all...]
H A Dtcldom.c1266 xpathResultSet *nodeList,
1316 tcldom_xpathResultSet(interp, nodeList, type, value);
3283 CheckArgs (4,4,0, "<domDoc> renameNode nodeList name");
1261 tcldom_xpathFuncCallBack( void *clientData, char *functionName, domNode *ctxNode, int position, xpathResultSet *nodeList, domNode *exprContext, int argc, xpathResultSets *args, xpathResultSet *result, char **errMsg ) argument
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLCollection.cpp272 template <> inline bool isMatchingElement(const LiveNodeList* nodeList, Element* element) argument
274 return nodeList->nodeMatches(element);
277 template <> inline bool isMatchingElement(const HTMLTagNodeList* nodeList, Element* element) argument
279 return nodeList->nodeMatchesInlined(element);
282 template <> inline bool isMatchingElement(const ClassNodeList* nodeList, Element* element) argument
284 return nodeList->nodeMatchesInlined(element);
336 inline Element* firstMatchingElement(const NodeListType* nodeList, ContainerNode* root) argument
339 while (element && !isMatchingElement(nodeList, element))
345 inline Element* nextMatchingElement(const NodeListType* nodeList, Element* current, ContainerNode* root) argument
349 } while (current && !isMatchingElement(nodeList, curren
354 traverseMatchingElementsForwardToOffset(const NodeListType* nodeList, unsigned offset, Element* currentElement, unsigned& currentOffset, ContainerNode* root) argument
549 firstMatchingChildElement(const HTMLCollection* nodeList, ContainerNode* root) argument
557 nextMatchingChildElement(const HTMLCollection* nodeList, Element* current, ContainerNode* root) argument
[all...]
H A DMediaDocument.cpp145 RefPtr<NodeList> nodeList = node->getElementsByTagNameNS(videoTag.namespaceURI(), videoTag.localName());
147 if (nodeList.get()->length() > 0)
148 return static_cast<HTMLVideoElement*>(nodeList.get()->item(0));
/macosx-10.9.5/WebCore-7537.78.1/loader/archive/cf/
H A DLegacyWebArchive.cpp444 Vector<Node*> nodeList; local
445 String markupString = createMarkup(node, IncludeNode, &nodeList, DoNotResolveURLs, tagNamesToFilter.get());
450 return create(markupString, frame, nodeList, filter);
494 Vector<Node*> nodeList;
497 String markupString = frame->documentTypeString() + createMarkup(range, &nodeList, AnnotateForInterchange);
499 return create(markupString, frame, nodeList, 0);
594 Vector<Node*> nodeList; local
595 String markupString = frame->documentTypeString() + createMarkup(selectionRange.get(), &nodeList, AnnotateForInterchange);
597 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList, 0);
/macosx-10.9.5/ICU-511.35/icuSources/tools/ctestfw/
H A Dctest.c78 const TestNode** nodeList,
319 * @param nodeList an array of MAXTESTS depth that's used for keeping track of where we are. nodeList[depth] points to the 'parent' at depth depth.
324 const TestNode** nodeList,
343 nodeList[depth++] = root;
349 strcat(pathToFunction, nodeList[i]->name);
352 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */
434 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR );
448 iterateTestsWithLevel ( root->child, depth, nodeList, mode );
480 iterateTestsWithLevel ( root->sibling, depth, nodeList, mod
322 iterateTestsWithLevel( const TestNode* root, int depth, const TestNode** nodeList, TestMode mode) argument
490 const TestNode *nodeList[MAXTESTS]; local
503 const TestNode *nodeList[MAXTESTS]; local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DTouchAdjustment.cpp479 bool findBestClickableCandidate(Node*& targetNode, IntPoint &targetPoint, const IntPoint &touchHotspot, const IntRect &touchArea, const NodeListHashSet& nodeList) argument
483 TouchAdjustment::compileSubtargetList(nodeList, subtargets, TouchAdjustment::nodeRespondsToTapGesture, TouchAdjustment::appendBasicSubtargetsForNode);
487 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint &targetPoint, const IntPoint &touchHotspot, const IntRect &touchArea, const NodeListHashSet& nodeList) argument
491 TouchAdjustment::compileSubtargetList(nodeList, subtargets, TouchAdjustment::providesContextMenuItems, TouchAdjustment::appendContextSubtargetsForNode);
495 bool findBestZoomableArea(Node*& targetNode, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, const NodeListHashSet& nodeList) argument
499 TouchAdjustment::compileZoomableSubtargets(nodeList, subtargets);
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/lib/
H A Dtdom.tcl470 nodeListType nodeList args} {
535 nodeListType nodeList args} {
600 nodeListType nodeList args } {
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DFrameLoaderClientBlackBerry.cpp590 RefPtr<NodeList> nodeList = headElement->getElementsByTagName(HTMLNames::metaTag.localName()); local
591 unsigned size = nodeList->length();
599 HTMLMetaElement* metaElement = static_cast<HTMLMetaElement*>(nodeList->item(i));
617 nodeList = headElement->getElementsByTagName(HTMLNames::linkTag.localName());
618 size = nodeList->length();
621 HTMLLinkElement* linkElement = static_cast<HTMLLinkElement*>(nodeList->item(i));
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXSLTUnicodeSort.cpp101 list = ctxt->nodeList;
/macosx-10.9.5/libxslt-13/libxslt/examples/
H A DxsltICUSort.c72 list = ctxt->nodeList;
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDOMAgent.cpp1002 RefPtr<NodeList> nodeList = document->querySelectorAll(whitespaceTrimmedQuery, ec); local
1003 if (ec || !nodeList)
1006 unsigned size = nodeList->length();
1008 resultCollector.add(nodeList->item(i));
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DDOMHTML.idl210 HRESULT getElementsByName([in] BSTR elementName, [out, retval] IDOMNodeList** nodeList);
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/
H A Dgraphops.tcl47 set nodeList [lsort -dict [$g nodes]]
60 foreach n $nodeList {
66 lappend matrix [linsert $nodeList 0 {}]
71 foreach n $nodeList {
75 foreach node $nodeList {
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebFrame.mm499 Vector<Node*> nodeList;
500 NSString *markupString = createMarkup(core(range), nodes ? &nodeList : 0, AnnotateForInterchange);
502 *nodes = [self _nodesFromList:&nodeList];
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dtransform.c4822 oldList = ctxt->nodeList;
5028 ctxt->nodeList = list;
5163 ctxt->nodeList = oldList;
5609 oldList = ctxt->nodeList;
5681 ctxt->nodeList = list;
5749 ctxt->nodeList = oldList;
6284 xmlXPathFreeNodeSet(ctxt->nodeList);
H A Dxsltutils.c994 list = ctxt->nodeList;
1122 list = ctxt->nodeList;
H A DxsltInternals.h1703 xmlNodeSetPtr nodeList; /* the current node list */ member in struct:_xsltTransformContext
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DDOMHTMLClasses.h433 /* [retval][out] */ IDOMNodeList **nodeList);

Completed in 213 milliseconds