Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
#include "nsHtml5Tokenizer.h"
#include "nsHtml5TokenizerLoopPoliciesALU.h"
int32_t nsHtml5Tokenizer::StateLoopFastestALU(int32_t state, char16_t c,
int32_t pos, char16_t* buf,
bool reconsume,
int32_t returnState,
int32_t endPos) {
return stateLoop<nsHtml5FastestPolicyALU>(state, c, pos, buf, reconsume,
returnState, endPos);
}
int32_t nsHtml5Tokenizer::StateLoopLineColALU(int32_t state, char16_t c,
int32_t pos, char16_t* buf,
bool reconsume,
int32_t returnState,
int32_t endPos) {
return stateLoop<nsHtml5LineColPolicyALU>(state, c, pos, buf, reconsume,
returnState, endPos);
}
int32_t nsHtml5Tokenizer::StateLoopViewSourceALU(int32_t state, char16_t c,
int32_t pos, char16_t* buf,
bool reconsume,
int32_t returnState,
int32_t endPos) {
return stateLoop<nsHtml5ViewSourcePolicyALU>(state, c, pos, buf, reconsume,
returnState, endPos);
}