HomeSort by: relevance | last modified time | path
    Searched refs:Frames (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugFrameDataSubsection.h 31 FixedStreamArray<FrameData>::Iterator begin() const { return Frames.begin(); }
32 FixedStreamArray<FrameData>::Iterator end() const { return Frames.end(); }
38 FixedStreamArray<FrameData> Frames;
54 void setFrames(ArrayRef<FrameData> Frames);
58 std::vector<FrameData> Frames;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugFrameDataSubsection.cpp 26 if (auto EC = Reader.readArray(Frames, Count))
37 uint32_t Size = sizeof(FrameData) * Frames.size();
49 std::vector<FrameData> SortedFrames(Frames.begin(), Frames.end());
59 Frames.push_back(Frame);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
DIContext.h 90 SmallVector<DILineInfo, 4> Frames;
96 assert(Index < Frames.size());
97 return Frames[Index];
101 assert(Index < Frames.size());
102 return &Frames[Index];
106 return Frames.size();
110 Frames.push_back(Frame);
114 Frames.resize(i);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeFunctionSymbol.cpp 107 std::vector<SymIndexId> Frames;
121 // Insert frames in reverse order.
124 Frames.insert(Frames.begin(), Id);
142 return std::make_unique<NativeEnumSymbols>(Session, std::move(Frames));
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 99 auto Frames = ParentFunc->findInlineFramesByVA(Address.Address);
100 if (!Frames || Frames->getChildCount() == 0) {
105 while (auto Frame = Frames->getNext()) {
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 217 const DebugFrameDataSubsectionRef &Frames);
219 std::vector<YAMLFrameData> Frames;
362 IO.mapRequired("Frames", Frames);
514 for (const auto &YF : Frames) {
710 const DebugFrameDataSubsectionRef &Frames) {
712 for (const auto &F : Frames) {
731 Result->Frames.push_back(YF);
872 DebugFrameDataSubsectionRef &Frames, const StringsAndChecksumsRef &State) {
874 YAMLFrameDataSubsection::fromCodeViewSubsection(State.strings(), Frames);
    [all...]

Completed in 24 milliseconds