Searched defs:nodeList (Results 1 - 12 of 12) sorted by relevance

/external/opencore/engines/player/config/core/
H A Dpv_player_node_registry_populator.cpp439 nodelistType* nodeList = OSCL_NEW(nodelistType, ()); local
440 aContext = nodeList;
449 nodeList->push_back(tmpfac);
463 nodeList->push_back(tmpfac);
477 nodeList->push_back(tmpfac);
491 nodeList->push_back(tmpfac);
505 nodeList->push_back(tmpfac);
519 nodeList->push_back(tmpfac);
533 nodeList->push_back(tmpfac);
547 nodeList
564 Oscl_Vector<PVMFRecognizerPluginFactory*, OsclMemAllocator>* nodeList = (Oscl_Vector<PVMFRecognizerPluginFactory*, OsclMemAllocator>*) aContext; local
[all...]
/external/webkit/JavaScriptCore/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.c38 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
39 ASSERT(nodeList);
40 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
58 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
59 ASSERT(nodeList);
60 return JSValueMakeNumber(context, NodeList_length(nodeList));
70 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
71 ASSERT(nodeList);
75 Node* node = NodeList_item(nodeList, uindex);
87 NodeList* nodeList local
95 NodeList* nodeList = JSObjectGetPrivate(thisObject); local
120 JSNodeList_new(JSContextRef context, NodeList* nodeList) argument
[all...]
/external/webkit/WebCore/wml/
H A DWMLTemplateElement.cpp76 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card"); local
77 if (!nodeList)
80 unsigned length = nodeList->length();
86 cards.add(static_cast<WMLCardElement*>(nodeList->item(i)));
92 nodeList = doc->getElementsByTagName("template");
93 if (!nodeList)
96 length = nodeList->length();
103 WMLTemplateElement* temp = static_cast<WMLTemplateElement*>(nodeList->item(i));
H A DWMLCardElement.cpp248 RefPtr<NodeList> nodeList = document->getElementsByTagName("card"); local
249 if (nodeList && nodeList->length() == 1 && nodeList->item(0) == this)
280 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
281 if (!nodeList)
284 unsigned length = nodeList->length();
289 WMLCardElement* card = static_cast<WMLCardElement*>(nodeList->item(i));
305 RefPtr<NodeList> nodeList = doc->getElementsByTagName("card");
306 if (!nodeList)
[all...]
/external/opencore/modules/linux_download/node_registry/src/
H A Dpvmfdownloadnodereg.cpp163 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = new Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>; local
178 nodeList->push_back(nodeinfo);
180 aContext = (OsclAny *)nodeList;
188 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = (Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator> *)aContext; local
190 while (!nodeList->empty())
192 PVPlayerNodeInfo tmpnode = nodeList->front();
194 nodeList->erase(nodeList->begin());
197 delete nodeList;
/external/opencore/modules/linux_mp4/node_registry/src/
H A Dpvmfmp4nodereg.cpp165 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = new Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>; local
178 nodeList->push_back(nodeinfo);
180 aContext = (OsclAny *)nodeList;
189 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = (Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator> *)aContext; local
191 while (!nodeList->empty())
193 PVPlayerNodeInfo tmpnode = nodeList->front();
195 nodeList->erase(nodeList->begin());
198 delete nodeList;
/external/opencore/modules/linux_rtsp/node_registry/src/
H A Dpvmfrtspnodereg.cpp163 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = new Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>; local
177 nodeList->push_back(nodeinfo);
179 aContext = (OsclAny *)nodeList;
187 Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator>* nodeList = (Oscl_Vector<PVPlayerNodeInfo, OsclMemAllocator> *)aContext; local
189 while (!nodeList->empty())
191 PVPlayerNodeInfo tmpnode = nodeList->front();
193 nodeList->erase(nodeList->begin());
196 delete nodeList;
/external/webkit/WebCore/loader/
H A DMediaDocument.cpp179 RefPtr<NodeList> nodeList = targetNode->getElementsByTagName("video"); local
180 if (nodeList.get()->length() > 0)
181 video = static_cast<HTMLVideoElement*>(nodeList.get()->item(0));
218 RefPtr<NodeList> nodeList = htmlBody->getElementsByTagName("video"); local
220 if (nodeList.get()->length() > 0) {
221 HTMLVideoElement* videoElement = static_cast<HTMLVideoElement*>(nodeList.get()->item(0));
/external/srec/tools/grxmlcompile/
H A Dsub_phon.cpp360 int *nodeList= new int [numVertex]; local
362 nodeList[ii]= NONE_LABEL;
369 nodeList[currId]= DISCARD_LABEL;
370 else if (nodeList[currId] != DISCARD_LABEL) {
371 if (nodeList[currId] == NONE_LABEL)
372 nodeList[currId]= arc[ii]->GetOutput();
373 else if (nodeList[currId] != arc[ii]->GetOutput())
374 nodeList[currId]= DISCARD_LABEL;
382 if (nodeList[currId] >= 0 && arc[ii]->GetOutput() >= 0) // unique ones
405 delete [] nodeList;
[all...]
H A Dsub_grph.cpp376 int *nodeList= new int [numVertex]; local
382 ProcessBegins (startPoint, endPoint, BEGINRULE_LABEL, nodeList, 0, visitList, numVertex);
385 delete [] nodeList;
397 int *nodeList= new int [numVertex]; local
403 ProcessEnds (endPoint, startPoint, ENDRULE_LABEL, nodeList, 0, visitList, numVertex);
406 delete [] nodeList;
418 int *nodeList= new int [numVertex]; local
424 ProcessBegins (startPoint, endPoint, NONE_LABEL, nodeList, 0, visitList, numVertex);
427 delete [] nodeList;
455 int *nodeList local
470 PullUpBegins(int currId, int baseId, int finalId, int procLabel, int *nodeList, int currNum, int maxNum) argument
491 ProcessBegins(int currId, int finalId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
527 int *nodeList= new int [numVertex]; local
542 PullUpEnds(int currId, int baseId, int initialId, int procLabel, int *nodeList, int currNum, int maxNum) argument
563 ProcessEnds(int currId, int initialId, int procLabel, int *nodeList, int currNum, int *visitMark, int maxNum) argument
763 int *nodeList= new int [numVertex]; local
778 PullUpTags(int currId, int baseId, int initialId, int outTag, int *nodeList, int currNum, int maxNum) argument
802 ProcessTags(int currId, int initialId, int *nodeList, int currNum, int *visitMark, int maxNum) argument
[all...]
/external/webkit/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp424 Vector<Node*> nodeList;
425 String markupString = createMarkup(node, IncludeNode, &nodeList);
430 return create(markupString, frame, nodeList);
474 Vector<Node*> nodeList;
477 String markupString = frame->documentTypeString() + createMarkup(range, &nodeList, AnnotateForInterchange);
479 return create(markupString, frame, nodeList);
566 Vector<Node*> nodeList; local
567 String markupString = frame->documentTypeString() + createMarkup(selectionRange.get(), &nodeList, AnnotateForInterchange);
569 RefPtr<LegacyWebArchive> archive = create(markupString, frame, nodeList);

Completed in 232 milliseconds