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

References

tools/clang/tools/extra/clang-doc/BitcodeReader.cpp
  500   I->ChildFunctions.emplace_back(std::move(R));
tools/clang/tools/extra/clang-doc/BitcodeWriter.cpp
  466   for (const auto &C : I.ChildFunctions)
tools/clang/tools/extra/clang-doc/HTMLGenerator.cpp
  741       genFunctionsBlock(I.ChildFunctions, CDCtx, I.Path);
  751   if (!I.ChildFunctions.empty())
  753         genInfoIndexItem(I.ChildFunctions, "Functions"));
tools/clang/tools/extra/clang-doc/MDGenerator.cpp
  179   if (!I.ChildFunctions.empty()) {
  181     for (const auto &F : I.ChildFunctions)
tools/clang/tools/extra/clang-doc/Representation.cpp
  170   reduceChildren(ChildFunctions, std::move(Other.ChildFunctions));
  170   reduceChildren(ChildFunctions, std::move(Other.ChildFunctions));
tools/clang/tools/extra/clang-doc/Serialize.cpp
  580   ParentI->ChildFunctions.emplace_back(std::move(Func));
tools/clang/tools/extra/clang-doc/YAMLGenerator.cpp
  204     IO.mapOptional("ChildFunctions", I.ChildFunctions);
tools/clang/tools/extra/unittests/clang-doc/BitcodeTest.cpp
   63   I.ChildFunctions.emplace_back();
tools/clang/tools/extra/unittests/clang-doc/ClangDocTest.cpp
  143   ASSERT_EQ(Expected->ChildFunctions.size(), Actual->ChildFunctions.size());
  143   ASSERT_EQ(Expected->ChildFunctions.size(), Actual->ChildFunctions.size());
  144   for (size_t Idx = 0; Idx < Actual->ChildFunctions.size(); ++Idx)
  145     CheckFunctionInfo(&Expected->ChildFunctions[Idx],
  146                       &Actual->ChildFunctions[Idx]);
tools/clang/tools/extra/unittests/clang-doc/HTMLGeneratorTest.cpp
   50   I.ChildFunctions.emplace_back();
   51   I.ChildFunctions.back().Access = AccessSpecifier::AS_none;
   52   I.ChildFunctions.back().Name = "OneFunction";
tools/clang/tools/extra/unittests/clang-doc/MDGeneratorTest.cpp
   32   I.ChildFunctions.emplace_back();
   33   I.ChildFunctions.back().Name = "OneFunction";
   34   I.ChildFunctions.back().Access = AccessSpecifier::AS_none;
tools/clang/tools/extra/unittests/clang-doc/MergeTest.cpp
   25   One.ChildFunctions.emplace_back();
   26   One.ChildFunctions.back().Name = "OneFunction";
   27   One.ChildFunctions.back().USR = NonEmptySID;
   40   Two.ChildFunctions.emplace_back();
   41   Two.ChildFunctions.back().Name = "TwoFunction";
   61   Expected->ChildFunctions.emplace_back();
   62   Expected->ChildFunctions.back().Name = "OneFunction";
   63   Expected->ChildFunctions.back().USR = NonEmptySID;
   64   Expected->ChildFunctions.emplace_back();
   65   Expected->ChildFunctions.back().Name = "TwoFunction";
tools/clang/tools/extra/unittests/clang-doc/SerializeTest.cpp
  107   ExpectedBWithFunction.ChildFunctions.emplace_back(std::move(F));
  328   ExpectedBWithFunction.ChildFunctions.emplace_back(std::move(F));
  344   ExpectedBWithFunction.ChildFunctions.emplace_back(std::move(F));
  501   ExpectedBWithFunction.ChildFunctions.emplace_back(std::move(F));
  512   ExpectedBWithExportedFunction.ChildFunctions.emplace_back(
tools/clang/tools/extra/unittests/clang-doc/YAMLGeneratorTest.cpp
   35   I.ChildFunctions.emplace_back();
   36   I.ChildFunctions.back().Name = "OneFunction";
   37   I.ChildFunctions.back().Access = AccessSpecifier::AS_none;