Home
last modified time | relevance | path

Searched refs:ThisGroup (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DNativeFormatting.cpp38 ArrayRef<char> ThisGroup; in writeWithCommas() local
40 ThisGroup = Buffer.take_front(InitialDigits); in writeWithCommas()
41 S.write(ThisGroup.data(), ThisGroup.size()); in writeWithCommas()
47 ThisGroup = Buffer.take_front(3); in writeWithCommas()
48 S.write(ThisGroup.data(), 3); in writeWithCommas()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp27 ArrayRef<std::string> ThisGroup; in typesetItemList() local
28 ThisGroup = Opts.take_front(GroupSize); in typesetItemList()
29 Opts = Opts.drop_front(ThisGroup.size()); in typesetItemList()
30 Result += join(ThisGroup, Sep); in typesetItemList()