Merge mozilla-central and tracemonkey. (a=blockers)
[mozilla-central.git] / parser / html / nsHtml5UTF16Buffer.cpp
blob89e313b31ca845738e323656866a69c54a115039
1 /*
2 * Copyright (c) 2008-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 UTF16Buffer.java instead and regenerate.
28 #define nsHtml5UTF16Buffer_cpp__
30 #include "prtypes.h"
31 #include "nsIAtom.h"
32 #include "nsHtml5AtomTable.h"
33 #include "nsString.h"
34 #include "nsINameSpaceManager.h"
35 #include "nsIContent.h"
36 #include "nsIDocument.h"
37 #include "nsTraceRefcnt.h"
38 #include "jArray.h"
39 #include "nsHtml5DocumentMode.h"
40 #include "nsHtml5ArrayCopy.h"
41 #include "nsHtml5NamedCharacters.h"
42 #include "nsHtml5NamedCharactersAccel.h"
43 #include "nsHtml5Atoms.h"
44 #include "nsHtml5ByteReadable.h"
45 #include "nsIUnicodeDecoder.h"
46 #include "nsAHtml5TreeBuilderState.h"
47 #include "nsHtml5Macros.h"
49 #include "nsHtml5Tokenizer.h"
50 #include "nsHtml5TreeBuilder.h"
51 #include "nsHtml5MetaScanner.h"
52 #include "nsHtml5AttributeName.h"
53 #include "nsHtml5ElementName.h"
54 #include "nsHtml5HtmlAttributes.h"
55 #include "nsHtml5StackNode.h"
56 #include "nsHtml5StateSnapshot.h"
57 #include "nsHtml5Portability.h"
59 #include "nsHtml5UTF16Buffer.h"
62 nsHtml5UTF16Buffer::nsHtml5UTF16Buffer(PRUnichar* buffer, PRInt32 start, PRInt32 end)
63 : buffer(buffer),
64 start(start),
65 end(end)
67 MOZ_COUNT_CTOR(nsHtml5UTF16Buffer);
70 PRInt32
71 nsHtml5UTF16Buffer::getStart()
73 return start;
76 void
77 nsHtml5UTF16Buffer::setStart(PRInt32 start)
79 this->start = start;
82 PRUnichar*
83 nsHtml5UTF16Buffer::getBuffer()
85 return buffer;
88 PRInt32
89 nsHtml5UTF16Buffer::getEnd()
91 return end;
94 PRBool
95 nsHtml5UTF16Buffer::hasMore()
97 return start < end;
100 void
101 nsHtml5UTF16Buffer::adjust(PRBool lastWasCR)
103 if (lastWasCR && buffer[start] == '\n') {
104 start++;
108 void
109 nsHtml5UTF16Buffer::setEnd(PRInt32 end)
111 this->end = end;
114 void
115 nsHtml5UTF16Buffer::initializeStatics()
119 void
120 nsHtml5UTF16Buffer::releaseStatics()
125 #include "nsHtml5UTF16BufferCppSupplement.h"