reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-doc/BitcodeReader.cpp
  508   I->ChildFunctions.emplace_back(std::move(R));
  520   I->ChildFunctions.emplace_back(std::move(R));
tools/clang/tools/extra/clang-doc/BitcodeWriter.cpp
  514   for (const auto &C : I.ChildFunctions)
  531   for (const auto &C : I.ChildFunctions)
tools/clang/tools/extra/clang-doc/HTMLGenerator.cpp
  806       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  816   if (!I.ChildFunctions.empty())
  818         genInfoIndexItem(I.ChildFunctions, "Functions"));
tools/clang/tools/extra/clang-doc/MDGenerator.cpp
  234   if (!I.ChildFunctions.empty()) {
  236     for (const auto &F : I.ChildFunctions)
tools/clang/tools/extra/clang-doc/Representation.cpp
  189   reduceChildren(ChildFunctions, std::move(Other.ChildFunctions));
  189   reduceChildren(ChildFunctions, std::move(Other.ChildFunctions));
tools/clang/tools/extra/clang-doc/Serialize.cpp
  477             BI.ChildFunctions.emplace_back(std::move(FI));
  612   ParentI->ChildFunctions.emplace_back(std::move(Func));
tools/clang/tools/extra/clang-doc/YAMLGenerator.cpp
  137   IO.mapOptional("ChildFunctions", I.ChildFunctions);
tools/clang/tools/extra/unittests/clang-doc/BitcodeTest.cpp
   86   I.Bases.back().ChildFunctions.emplace_back();
   92   I.ChildFunctions.emplace_back();
tools/clang/tools/extra/unittests/clang-doc/ClangDocTest.cpp
  180   ASSERT_EQ(Expected->ChildFunctions.size(), Actual->ChildFunctions.size());
  180   ASSERT_EQ(Expected->ChildFunctions.size(), Actual->ChildFunctions.size());
  181   for (size_t Idx = 0; Idx < Actual->ChildFunctions.size(); ++Idx)
  182     CheckFunctionInfo(&Expected->ChildFunctions[Idx],
  183                       &Actual->ChildFunctions[Idx]);
tools/clang/tools/extra/unittests/clang-doc/HTMLGeneratorTest.cpp
  162   I.ChildFunctions.emplace_back();
  163   I.ChildFunctions.back().Name = "OneFunction";
tools/clang/tools/extra/unittests/clang-doc/MDGeneratorTest.cpp
   96   I.ChildFunctions.emplace_back();
   97   I.ChildFunctions.back().Name = "OneFunction";
tools/clang/tools/extra/unittests/clang-doc/MergeTest.cpp
   94   One.ChildFunctions.emplace_back();
   95   One.ChildFunctions.back().Name = "OneFunction";
   96   One.ChildFunctions.back().USR = NonEmptySID;
  111   Two.ChildFunctions.emplace_back();
  112   Two.ChildFunctions.back().Name = "TwoFunction";
  136   Expected->ChildFunctions.emplace_back();
  137   Expected->ChildFunctions.back().Name = "OneFunction";
  138   Expected->ChildFunctions.back().USR = NonEmptySID;
  139   Expected->ChildFunctions.emplace_back();
  140   Expected->ChildFunctions.back().Name = "TwoFunction";
tools/clang/tools/extra/unittests/clang-doc/SerializeTest.cpp
  159   ExpectedRecordWithEConstructor.ChildFunctions.emplace_back(
  175   ExpectedRecordWithMethod.ChildFunctions.emplace_back(std::move(Method));
  198   ExpectedRecordWithTemplateMethod.ChildFunctions.emplace_back(
  218   ExpectedTemplatedRecord.ChildFunctions.emplace_back(
  397   ExpectedE.Bases.back().ChildFunctions.emplace_back(std::move(FunctionSet));
  410   ExpectedE.Bases.back().ChildFunctions.emplace_back(std::move(FunctionGet));
  443   ExpectedH.Bases.back().ChildFunctions.emplace_back(std::move(FunctionSetNew));
  456   ExpectedH.Bases.back().ChildFunctions.emplace_back(std::move(FunctionGetNew));
tools/clang/tools/extra/unittests/clang-doc/YAMLGeneratorTest.cpp
   89   I.Bases.back().ChildFunctions.emplace_back();
   90   I.Bases.back().ChildFunctions.back().Name = "InheritedFunctionOne";
  100   I.ChildFunctions.emplace_back();
  101   I.ChildFunctions.back().Name = "OneFunction";