#ifdef UNSAFE_BUFFERS_BUILD
#pragma allow_unsafe_buffers
#endif
#include "third_party/blink/renderer/core/html/parser/special_sequences_tracker.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace {
const LChar kCData[] = …;
constexpr wtf_size_t kCDataLength = …;
}
void SpecialSequencesTracker::UpdateIndices(const String& string) { … }
unsigned SpecialSequencesTracker::IndexOfNullChar(const String& string) const { … }
bool SpecialSequencesTracker::MatchPossibleCDataSection(
const String& string,
wtf_size_t start_string_index) { … }
void SpecialSequencesTracker::UpdateIndexOfCDATA(const String& string) { … }
}