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

References

lib/Support/SpecialCaseList.cpp
  134   for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
  134   for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
  135     *I = I->trim();
  135     *I = I->trim();
  137     if (I->empty() || I->startswith("#"))
  137     if (I->empty() || I->startswith("#"))
  141     if (I->startswith("[")) {
  142       if (!I->endswith("]")) {
  144                  ": " + *I).str();
  148       Section = I->slice(1, I->size() - 1);
  148       Section = I->slice(1, I->size() - 1);
  163     std::pair<StringRef, StringRef> SplitLine = I->split(":");