Searched refs:NextNode (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c206 ACPI_NAMESPACE_NODE *NextNode; local
217 NextNode = Node;
219 while (NextNode && (NextNode != AcpiGbl_RootNode))
221 if (ACPI_GET_DESCRIPTOR_TYPE (NextNode) != ACPI_DESC_TYPE_NAMED)
225 NextNode));
229 NextNode = NextNode->Parent;
H A Dnswalk.c120 ACPI_NAMESPACE_NODE *NextNode = NULL; local
126 NextNode = AcpiNsGetNextNode (ParentNode, ChildNode);
132 /* NextNode is NULL if we are at the end-of-list */
134 return (NextNode);
139 while (NextNode)
143 if (NextNode->Type == Type)
145 return (NextNode);
150 NextNode = NextNode->Peer;
H A Dnsalloc.c180 ACPI_NAMESPACE_NODE *NextNode; local
189 NextNode = ParentNode->Child;
193 while (NextNode != Node)
195 PrevNode = NextNode;
196 NextNode = NextNode->Peer;
330 ACPI_NAMESPACE_NODE *NextNode; local
344 NextNode = ParentNode->Child;
345 while (NextNode)
349 if (NextNode
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/events/
H A Devregion.c759 ACPI_NAMESPACE_NODE *NextNode; local
792 NextNode = AcpiNsGetNextNode (EcDeviceNode, NULL);
793 while (NextNode)
795 if ((NextNode->Type == ACPI_TYPE_REGION) &&
796 (NextNode->Object) &&
797 (NextNode->Object->Region.SpaceId == ACPI_ADR_SPACE_EC))
802 NextNode = AcpiNsGetNextNode (EcDeviceNode, NextNode);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp525 const ExplodedNode *NextNode = N->pred_empty() local
530 while (NextNode) {
531 N = NextNode;
533 NextNode = N->getFirstPred();
828 if (NextNode) {
834 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
1344 const ExplodedNode *NextNode = N->pred_empty() ? NULL : *(N->pred_begin()); local
1345 while (NextNode) {
1346 N = NextNode;
1347 NextNode
1576 const ExplodedNode *NextNode = N->getFirstPred(); local
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A Dilist.h436 NodeTy *NextNode = this->getNext(Node); local
440 this->setNext(PrevNode, NextNode);
442 Head = NextNode;
443 this->setPrev(NextNode, PrevNode);
444 IT = NextNode;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTDiagnostic.cpp431 /// NextNode - The index of the next sibling node or 0.
432 unsigned NextNode; member in struct:__anon2952::TemplateDiff::DiffTree::DiffNode
469 : Kind(Invalid), NextNode(0), ChildNode(0), ParentNode(ParentNode),
567 for (i = Node.ChildNode; FlatTree[i].NextNode != 0;
568 i = FlatTree[i].NextNode) {
570 FlatTree[i].NextNode = NextFreeNode;
646 if (FlatTree[ReadNode].NextNode == 0)
649 ReadNode = FlatTree[ReadNode].NextNode;
655 return FlatTree[ReadNode].NextNode != 0;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h1201 QualType NextNode = (Node.*TraverseFunction)(); local
1202 if (NextNode.isNull())
1204 return InnerMatcher.matches(NextNode, Finder, Builder);
1225 TypeLoc NextNode = (Node.*TraverseFunction)(); local
1226 if (!NextNode)
1228 return InnerMatcher.matches(NextNode, Finder, Builder);
H A DASTMatchers.h3273 NestedNameSpecifier *NextNode = Node.getPrefix(); local
3274 if (NextNode == NULL)
3276 return InnerMatcher.matches(*NextNode, Finder, Builder);
3291 NestedNameSpecifierLoc NextNode = Node.getPrefix(); local
3292 if (!NextNode)
3294 return InnerMatcher.matches(NextNode, Finder, Builder);

Completed in 207 milliseconds