| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | IListNodeBaseTest.cpp | 22 EXPECT_EQ(nullptr, A.getNext()); in TEST() 27 EXPECT_EQ(nullptr, TA.getNext()); in TEST() 36 EXPECT_EQ(nullptr, A.getNext()); in TEST() 38 EXPECT_EQ(nullptr, B.getNext()); in TEST() 40 EXPECT_EQ(nullptr, C.getNext()); in TEST() 44 EXPECT_EQ(&C, A.getNext()); in TEST() 61 EXPECT_EQ(&TC, TA.getNext()); in TEST() 75 EXPECT_EQ(&B, A.getNext()); in TEST() 80 EXPECT_EQ(&B, A.getNext()); in TEST() 89 EXPECT_EQ(&TB, TA.getNext()); in TEST() [all …]
|
| H A D | IListBaseTest.cpp | 38 EXPECT_EQ(&A, S.getNext()); in TYPED_TEST() 39 EXPECT_EQ(&S, A.getNext()); in TYPED_TEST() 46 EXPECT_EQ(&A, S.getNext()); in TYPED_TEST() 47 EXPECT_EQ(&B, A.getNext()); in TYPED_TEST() 48 EXPECT_EQ(&S, B.getNext()); in TYPED_TEST() 67 EXPECT_EQ(&B, S.getNext()); in TYPED_TEST() 68 EXPECT_EQ(&S, B.getNext()); in TYPED_TEST() 75 EXPECT_EQ(&S, S.getNext()); in TYPED_TEST() 99 EXPECT_EQ(&A, S.getNext()); in TYPED_TEST() 100 EXPECT_EQ(&D, A.getNext()); in TYPED_TEST() [all …]
|
| H A D | IListSentinelTest.cpp | 32 using NodeAccess::getNext; 38 EXPECT_EQ(&S, LocalAccess::getNext(S)); in TEST() 55 EXPECT_EQ(nullptr, LocalAccess::getNext(N)); in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | ilist_node.h | 66 ilist_node_impl *getNext() { in getNext() function 67 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 74 const ilist_node_impl *getNext() const { in getNext() function 75 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 194 static ilist_node_impl<OptionsT> *getNext(ilist_node_impl<OptionsT> &N) { in getNext() function 195 return N.getNext(); in getNext() 206 getNext(const ilist_node_impl<OptionsT> &N) { in getNext() function 207 return N.getNext(); in getNext()
|
| H A D | EquivalenceClasses.h | 95 assert(getNext() == nullptr && "Already has a next pointer!"); in setNext() 103 assert(RHS.isLeader() && RHS.getNext() == nullptr && "Not a singleton!"); in ECValue() 109 const ECValue *getNext() const { in getNext() function 255 L2LV.Next = L2LV.getNext(); in unionSets() 296 Node = Node->getNext();
|
| H A D | ilist_node_base.h | 29 ilist_node_base *getNext() const { return Next; } in getNext() function 43 ilist_node_base *getNext() const { return Next; } in getNext() function
|
| H A D | ilist_iterator.h | 43 template <class T> static void increment(T *&I) { I = Access::getNext(*I); } 50 template <class T> static void decrement(T *&I) { I = Access::getNext(*I); } 153 NodePtr = IsReverse ? NodePtr->getNext() : NodePtr->getPrev(); 157 NodePtr = IsReverse ? NodePtr->getPrev() : NodePtr->getNext();
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | DAGISelMatcherOpt.cpp | 44 if (RecordMatcher *RM = dyn_cast<RecordMatcher>(MC->getNext())) in ContractNodes() 49 if (CheckTypeMatcher *CT = dyn_cast<CheckTypeMatcher>(MC->getNext())) in ContractNodes() 54 if (CheckSameMatcher *CS = dyn_cast<CheckSameMatcher>(MC->getNext())) in ContractNodes() 58 if (CheckIntegerMatcher *CI = dyn_cast<CheckIntegerMatcher>(MC->getNext())) in ContractNodes() 62 if (auto *CCC = dyn_cast<CheckCondCodeMatcher>(MC->getNext())) in ContractNodes() 71 MC->setNext(MC->getNext()->takeNext()); in ContractNodes() 79 dyn_cast<MoveParentMatcher>(MC->getNext())) { in ContractNodes() 87 dyn_cast<CompleteMatchMatcher>(EN->getNext())) { in ContractNodes() 150 isa<CheckOpcodeMatcher>(N->getNext())) { in ContractNodes() 168 for (; M; M = M->getNext()) in FindNodeWithKind()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | YAMLParser.cpp | 259 Token getNext(); 2282 getNext(); in increment() 2414 getNext(); in Document() 2427 getNext(); in skip() 2457 getNext(); in parseBlockNode() 2489 getNext(); in parseBlockNode() 2496 getNext(); in parseBlockNode() 2503 getNext(); in parseBlockNode() 2510 getNext(); in parseBlockNode() 2517 getNext(); in parseBlockNode() [all …]
|
| H A D | OptimizedStructLayout.cpp | 249 static Field *getNext(Field *Cur) { in performOptimizedStructLayout() function 283 for (auto I = Queue.Head; I; I = Queue.getNext(I)) { in performOptimizedStructLayout() 295 assert(Last ? Queue->getNext(Last) == Cur : Queue->Head == Cur); in performOptimizedStructLayout() 310 if (auto NewHead = Queue->getNext(Cur)) in performOptimizedStructLayout() 364 Last = Cur, Cur = Queue->getNext(Cur)) { in performOptimizedStructLayout()
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/PDB/ |
| H A D | NativeSymbolReuseTest.cpp | 77 while (auto Compiland = Compilands->getNext()) in TEST() 80 while (auto Compiland = Compilands->getNext()) in TEST() 92 while (auto Compiland = Compilands->getNext()) in TEST() 125 while (auto Compiland = Compilands->getNext()) in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachinePassRegistry.h | 60 MachinePassRegistryNode *getNext() const { return Next; } in getNext() function 93 R = R->getNext()) { in setDefault() 122 *I = (*I)->getNext(); in Remove() 149 Node; Node = Node->getNext()) { in initialize()
|
| H A D | RegAllocRegistry.h | 44 SubClass *getNext() const { in getNext() function 45 return static_cast<SubClass *>(MachinePassRegistryNode::getNext()); in getNext()
|
| H A D | SchedulerRegistry.h | 48 RegisterScheduler *getNext() const { in getNext() function 49 return (RegisterScheduler *)MachinePassRegistryNode::getNext(); in getNext()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBSymbolFunc.cpp | 40 while (auto Child = DataChildren->getNext()) { in FunctionArgEnumerator() 63 std::unique_ptr<PDBSymbolData> getNext() override { in getNext() function in __anon4b6ec6bf0111::FunctionArgEnumerator 108 if (auto FirstLine = Lines->getNext()) { in getCompilandId()
|
| H A D | PDBContext.cpp | 55 auto LineInfo = LineNumbers->getNext(); in getLineInfoForAddress() 86 while (auto LineInfo = LineNumbers->getNext()) { in getLineInfoForAddressRange() 114 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress() 120 std::unique_ptr<IPDBLineNumber> Line = LineNumbers->getNext(); in getInliningInfoForAddress()
|
| H A D | PDBSymbolData.cpp | 35 if (auto FirstLine = Lines->getNext()) in getCompilandId() 48 while (auto Section = SecContribs->getNext()) { in getCompilandId()
|
| H A D | PDBSymbolTypeFunctionSig.cpp | 49 std::unique_ptr<PDBSymbol> getNext() override { in getNext() function in __anon5906adbe0111::FunctionArgEnumerator 50 auto FunctionArgSymbol = Enumerator->getNext(); in getNext()
|
| /llvm-project-15.0.7/clang/test/CXX/class.access/class.friend/ |
| H A D | p1.cpp | 134 X *getNext() { return Next; } // expected-note {{declared private here}} in getNext() function in test2::ilist_node 141 static X *getNext(X *N) { return N->getNext(); } in getNext() function 148 static X *getNext(X *N) { return N->getNext(); } // \ in getNext() function
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 377 while (auto file = files->getNext()) { in ParseSupportFiles() 471 while (auto symbol = results->getNext()) { in ParseTypes() 981 if (auto first_line = lines->getNext()) { in ParseVariableForPDBData() 1104 while (auto result = results->getNext()) in ParseVariables() 1126 while (auto result = results->getNext()) { in FindGlobalVariables() 1165 while (auto pdb_data = results->getNext()) { in FindGlobalVariables() 1489 while (auto result = results->getNext()) { in FindTypesByRegex() 1537 while (auto result = results->getNext()) { in FindTypesByName() 1785 while (auto file = files->getNext()) { in ParseCompileUnitLineTable() 1896 if (auto first_line = lines->getNext()) in GetCompileUnitContainsAddress() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | IPDBEnumChildren.h | 29 virtual ChildTypePtr getNext() = 0; 39 std::unique_ptr<ChildType> getNext() override { return nullptr; } in getNext() function
|
| H A D | ConcreteSymbolEnumerator.h | 39 std::unique_ptr<ChildType> getNext() override { in getNext() function 40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
|
| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeCollection.h | 25 virtual Optional<TypeIndex> getNext(TypeIndex Prev) = 0; 40 Next = getNext(N); in ForEachRecord()
|
| /llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeEnumTypes.cpp | 49 TI = Types.getNext(*TI); in NativeEnumTypes() 69 std::unique_ptr<PDBSymbol> NativeEnumTypes::getNext() { in getNext() function in NativeEnumTypes
|
| /llvm-project-15.0.7/llvm/include/llvm/Object/ |
| H A D | TapiUniversal.h | 38 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function 87 Obj = Obj.getNext();
|