Home
last modified time | relevance | path

Searched refs:getNext (Results 1 – 25 of 120) sorted by relevance

12345

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A Dilist_node.h66 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 DEquivalenceClasses.h95 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 Dilist_node_base.h29 ilist_node_base *getNext() const { return Next; } in getNext() function
43 ilist_node_base *getNext() const { return Next; } in getNext() function
H A Dilist_iterator.h43 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();
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp44 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()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DYAMLParser.cpp258 Token getNext();
604 Token T = scanner.getNext(); in dumpTokens()
688 Token T = scanner.getNext(); in scanTokens()
904 Token Scanner::getNext() { in getNext() function in Scanner
1924 scanner->getNext(); in begin()
1995 Token Node::getNext() { in getNext() function in Node
1996 return Doc->getNext(); in getNext()
2206 getNext(); // skip TK_Key. in getKey()
2248 getNext(); // skip TK_Value. in getValue()
2282 getNext(); in increment()
[all …]
H A DOptimizedStructLayout.cpp250 static Field *getNext(Field *Cur) { in performOptimizedStructLayout() function
284 for (auto I = Queue.Head; I; I = Queue.getNext(I)) { in performOptimizedStructLayout()
296 assert(Last ? Queue->getNext(Last) == Cur : Queue->Head == Cur); in performOptimizedStructLayout()
311 if (auto NewHead = Queue->getNext(Cur)) in performOptimizedStructLayout()
365 Last = Cur, Cur = Queue->getNext(Cur)) { in performOptimizedStructLayout()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.h60 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 DRegAllocRegistry.h44 SubClass *getNext() const { in getNext() function
45 return static_cast<SubClass *>(MachinePassRegistryNode::getNext()); in getNext()
H A DSchedulerRegistry.h48 RegisterScheduler *getNext() const { in getNext() function
49 return (RegisterScheduler *)MachinePassRegistryNode::getNext(); in getNext()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolFunc.cpp40 while (auto Child = DataChildren->getNext()) { in FunctionArgEnumerator()
63 std::unique_ptr<PDBSymbolData> getNext() override { in getNext() function in __anon96f0f0460111::FunctionArgEnumerator
108 if (auto FirstLine = Lines->getNext()) { in getCompilandId()
H A DPDBContext.cpp55 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 DPDBSymbolData.cpp35 if (auto FirstLine = Lines->getNext()) in getCompilandId()
48 while (auto Section = SecContribs->getNext()) { in getCompilandId()
H A DPDBSymbolTypeFunctionSig.cpp49 std::unique_ptr<PDBSymbol> getNext() override { in getNext() function in __anonf99374e50111::FunctionArgEnumerator
50 auto FunctionArgSymbol = Enumerator->getNext(); in getNext()
H A DPDBSymbolCompiland.cpp49 while (auto Env = Envs->getNext()) { in getSourceFileFullPath()
94 while (auto File = SrcFiles->getNext()) { in getSourceFileFullPath()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp176 while (auto table_up = enum_tables_up->getNext()) { in CalculateAbilities()
341 while (auto pdb_func_up = results_up->getNext()) { in ParseFunctions()
379 while (auto file = files->getNext()) { in ParseSupportFiles()
433 while (auto symbol_up = results_up->getNext()) { in ParseFunctionBlocksForPDBSymbol()
473 while (auto symbol = results->getNext()) { in ParseTypes()
534 while (auto result = results->getNext()) { in ParseVariablesForContext()
819 while (auto compiland = compilands->getNext()) { in ResolveSymbolContext()
918 while (auto symbol_up = result_up->getNext()) in GetMangledForPDBData()
986 if (auto first_line = lines->getNext()) { in ParseVariableForPDBData()
1109 while (auto result = results->getNext()) in ParseVariables()
[all …]
H A DPDBASTParser.cpp203 first_line_up = lines_up->getNext(); in GetDeclarationForSymbol()
266 while (auto base = bases_enum->getNext()) { in GetMSInheritance()
519 while (auto enum_value = enum_values->getNext()) { in CreateLLDBTypeFromPDBType()
880 methods_enum->getNext()) { in GetDeclForSymbol()
967 arg_enum->getNext()) { in GetDeclForSymbol()
1067 children_enum->getNext()) { in GetDeclContextContainingSymbol()
1124 while (auto child = children->getNext()) in ParseDeclsForDeclContext()
1211 while (auto nested = nested_enums->getNext()) in CompleteTypeFromUDT()
1247 while (auto member = members_enum.getNext()) { in AddRecordMembers()
1362 while (auto base = bases_enum.getNext()) { in AddRecordBases()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBEnumChildren.h29 virtual ChildTypePtr getNext() = 0;
39 std::unique_ptr<ChildType> getNext() override { return nullptr; } in getNext() function
H A DConcreteSymbolEnumerator.h39 std::unique_ptr<ChildType> getNext() override { in getNext() function
40 return unique_dyn_cast_or_null<ChildType>(Enumerator->getNext()); in getNext()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeCollection.h25 virtual std::optional<TypeIndex> getNext(TypeIndex Prev) = 0;
40 Next = getNext(N); in ForEachRecord()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DNativeEnumTypes.cpp48 TI = Types.getNext(*TI); in NativeEnumTypes()
68 std::unique_ptr<PDBSymbol> NativeEnumTypes::getNext() { in getNext() function in NativeEnumTypes
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DTapiUniversal.h38 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function
87 Obj = Obj.getNext();
H A DArchive.h221 Expected<Child> getNext() const;
279 auto NextChild = C.getNext(); in inc()
304 Symbol getNext() const;
325 symbol = symbol.getNext();
H A DMachOUniversal.h58 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function
127 Obj = Obj.getNext();
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DPrettyCompilandDumper.cpp59 while (auto File = Files->getNext()) { in start()
74 while (auto Line = Lines->getNext()) { in start()
120 while (auto Child = ChildrenEnum->getNext()) in start()

12345