Bug 1845715 - Check for failure when getting RegExp match result template r=iain
[gecko.git] / parser / html / nsHtml5StateSnapshot.cpp
blob2a38e0c7d06cab01d12699831c7884e384def365
1 /*
2 * Copyright (c) 2009-2010 Mozilla Foundation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
24 * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
25 * Please edit StateSnapshot.java instead and regenerate.
28 #define nsHtml5StateSnapshot_cpp__
30 #include "nsAtom.h"
31 #include "nsHtml5AtomTable.h"
32 #include "nsHtml5String.h"
33 #include "nsNameSpaceManager.h"
34 #include "nsIContent.h"
35 #include "nsTraceRefcnt.h"
36 #include "jArray.h"
37 #include "nsHtml5ArrayCopy.h"
38 #include "nsAHtml5TreeBuilderState.h"
39 #include "nsGkAtoms.h"
40 #include "nsHtml5ByteReadable.h"
41 #include "nsHtml5Macros.h"
42 #include "nsIContentHandle.h"
43 #include "nsHtml5Portability.h"
44 #include "nsHtml5ContentCreatorFunction.h"
46 #include "nsHtml5AttributeName.h"
47 #include "nsHtml5ElementName.h"
48 #include "nsHtml5Tokenizer.h"
49 #include "nsHtml5TreeBuilder.h"
50 #include "nsHtml5StackNode.h"
51 #include "nsHtml5UTF16Buffer.h"
52 #include "nsHtml5Portability.h"
54 #include "nsHtml5StateSnapshot.h"
56 nsHtml5StateSnapshot::nsHtml5StateSnapshot(
57 jArray<nsHtml5StackNode*, int32_t> stack,
58 jArray<nsHtml5StackNode*, int32_t> listOfActiveFormattingElements,
59 jArray<int32_t, int32_t> templateModeStack, nsIContentHandle* formPointer,
60 nsIContentHandle* headPointer, int32_t mode, int32_t originalMode,
61 bool framesetOk, bool needToDropLF, bool quirks)
62 : stack(stack),
63 listOfActiveFormattingElements(listOfActiveFormattingElements),
64 templateModeStack(templateModeStack),
65 formPointer(formPointer),
66 headPointer(headPointer),
67 mode(mode),
68 originalMode(originalMode),
69 framesetOk(framesetOk),
70 needToDropLF(needToDropLF),
71 quirks(quirks) {
72 MOZ_COUNT_CTOR(nsHtml5StateSnapshot);
75 jArray<nsHtml5StackNode*, int32_t> nsHtml5StateSnapshot::getStack() {
76 return stack;
79 jArray<int32_t, int32_t> nsHtml5StateSnapshot::getTemplateModeStack() {
80 return templateModeStack;
83 jArray<nsHtml5StackNode*, int32_t>
84 nsHtml5StateSnapshot::getListOfActiveFormattingElements() {
85 return listOfActiveFormattingElements;
88 nsIContentHandle* nsHtml5StateSnapshot::getFormPointer() { return formPointer; }
90 nsIContentHandle* nsHtml5StateSnapshot::getHeadPointer() { return headPointer; }
92 int32_t nsHtml5StateSnapshot::getMode() { return mode; }
94 int32_t nsHtml5StateSnapshot::getOriginalMode() { return originalMode; }
96 bool nsHtml5StateSnapshot::isFramesetOk() { return framesetOk; }
98 bool nsHtml5StateSnapshot::isNeedToDropLF() { return needToDropLF; }
100 bool nsHtml5StateSnapshot::isQuirks() { return quirks; }
102 int32_t nsHtml5StateSnapshot::getListOfActiveFormattingElementsLength() {
103 return listOfActiveFormattingElements.length;
106 int32_t nsHtml5StateSnapshot::getStackLength() { return stack.length; }
108 int32_t nsHtml5StateSnapshot::getTemplateModeStackLength() {
109 return templateModeStack.length;
112 nsHtml5StateSnapshot::~nsHtml5StateSnapshot() {
113 MOZ_COUNT_DTOR(nsHtml5StateSnapshot);
114 for (int32_t i = 0; i < stack.length; i++) {
115 stack[i]->release(nullptr);
117 for (int32_t i = 0; i < listOfActiveFormattingElements.length; i++) {
118 if (listOfActiveFormattingElements[i]) {
119 listOfActiveFormattingElements[i]->release(nullptr);
124 void nsHtml5StateSnapshot::initializeStatics() {}
126 void nsHtml5StateSnapshot::releaseStatics() {}