/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ilist_node.h | 65 ilist_node_impl *getNext() { in getNext() function 66 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 73 const ilist_node_impl *getNext() const { in getNext() function 74 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 193 static ilist_node_impl<OptionsT> *getNext(ilist_node_impl<OptionsT> &N) { in getNext() function 194 return N.getNext(); in getNext() 205 getNext(const ilist_node_impl<OptionsT> &N) { in getNext() function 206 return N.getNext(); in getNext()
|
D | EquivalenceClasses.h | 93 assert(getNext() == nullptr && "Already has a next pointer!"); in setNext() 101 assert(RHS.isLeader() && RHS.getNext() == nullptr && "Not a singleton!"); in ECValue() 109 const ECValue *getNext() const { in getNext() function 234 L2LV.Next = L2LV.getNext(); in unionSets() 276 Node = Node->getNext();
|
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); } 154 NodePtr = IsReverse ? NodePtr->getNext() : NodePtr->getPrev(); 158 NodePtr = IsReverse ? NodePtr->getPrev() : NodePtr->getNext();
|
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
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
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() 73 const ilist_node_impl *getNext() const { in getNext() function 74 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext() 186 static ilist_node_impl<OptionsT> *getNext(ilist_node_impl<OptionsT> &N) { in getNext() function 187 return N.getNext(); in getNext() 196 getNext(const ilist_node_impl<OptionsT> &N) { in getNext() function 197 return N.getNext(); in getNext()
|
D | ilist_iterator.h | 43 template <class T> static void increment(T *&I) { I = Access::getNext(*I); } 49 template <class T> static void decrement(T *&I) { I = Access::getNext(*I); } 141 NodePtr = IsReverse ? NodePtr->getNext() : NodePtr->getPrev(); 145 NodePtr = IsReverse ? NodePtr->getPrev() : NodePtr->getNext();
|
D | ilist_node_base.h | 30 ilist_node_base *getNext() const { return Next; } in getNext() function 44 ilist_node_base *getNext() const { return Next; } in getNext() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | YAMLParser.cpp | 263 Token getNext(); 597 Token T = scanner.getNext(); in dumpTokens() 681 Token T = scanner.getNext(); in scanTokens() 811 Token Scanner::getNext() { in getNext() function in Scanner 1795 scanner->getNext(); in begin() 1866 Token Node::getNext() { in getNext() function in Node 1867 return Doc->getNext(); in getNext() 2077 getNext(); // skip TK_Key. in getKey() 2119 getNext(); // skip TK_Value. in getValue() 2153 getNext(); in increment() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
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()
|
D | RegAllocRegistry.h | 43 SubClass *getNext() const { in getNext() function 44 return static_cast<SubClass *>(MachinePassRegistryNode::getNext()); in getNext()
|
D | SchedulerRegistry.h | 48 RegisterScheduler *getNext() const { in getNext() function 49 return (RegisterScheduler *)MachinePassRegistryNode::getNext(); in getNext()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/ |
D | PDBSymbolFunc.cpp | 38 while (auto Child = DataChildren->getNext()) { in FunctionArgEnumerator() 61 std::unique_ptr<PDBSymbolData> getNext() override { in getNext() function in __anonc5ac2c3a0111::FunctionArgEnumerator 106 if (auto FirstLine = Lines->getNext()) { in getCompilandId()
|
D | PDBSymbolData.cpp | 36 if (auto FirstLine = Lines->getNext()) in getCompilandId() 49 while (auto Section = SecContribs->getNext()) { in getCompilandId()
|
D | PDBSymbolTypeFunctionSig.cpp | 49 std::unique_ptr<PDBSymbol> getNext() override { in getNext() function in __anon5be8d0590111::FunctionArgEnumerator 50 auto FunctionArgSymbol = Enumerator->getNext(); in getNext()
|
D | PDBSymbolCompiland.cpp | 48 while (auto Env = Envs->getNext()) { in getSourceFileFullPath() 93 while (auto File = SrcFiles->getNext()) { in getSourceFileFullPath()
|
D | PDBContext.cpp | 53 auto LineInfo = LineNumbers->getNext(); in getLineInfoForAddress() 77 while (auto LineInfo = LineNumbers->getNext()) { in getLineInfoForAddressRange()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/ |
D | IPDBEnumChildren.h | 28 virtual ChildTypePtr getNext() = 0; 39 virtual std::unique_ptr<ChildType> getNext() override { in getNext() function
|
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()
|
D | IPDBDataStream.h | 32 virtual bool getNext(RecordType &Record) = 0;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeCollection.h | 26 virtual Optional<TypeIndex> getNext(TypeIndex Prev) = 0; 40 Next = getNext(N); in ForEachRecord()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Archive.h | 110 Expected<Child> getNext() const; 168 auto NextChild = C.getNext(); in inc() 195 Symbol getNext() const; 216 symbol = symbol.getNext();
|
D | TapiUniversal.h | 36 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function 77 Obj = Obj.getNext();
|
D | MachOUniversal.h | 56 ObjectForArch getNext() const { return ObjectForArch(Parent, Index + 1); } in getNext() function 134 Obj = Obj.getNext();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeEnumTypes.cpp | 46 TI = Types.getNext(*TI); in NativeEnumTypes() 66 std::unique_ptr<PDBSymbol> NativeEnumTypes::getNext() { in getNext() function in NativeEnumTypes
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/DIA/ |
D | DIAEnumFrameData.h | 25 ChildTypePtr getNext() override;
|