gecko/parser/html/nsHtml5NamedCharacters.h
Henri Sivonen 51828f4951 Bug 555940 - Make named character names use a dedicated data type. r=tglek, a=jst.
--HG--
extra : rebase_source : d201cbad639f7ce87caa04f4260d1a9f3b3da867
2010-09-28 10:32:31 +03:00

54 lines
1.7 KiB
C++

/*
* Copyright (c) 2008-2010 Mozilla Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#ifndef nsHtml5NamedCharacters_h_
#define nsHtml5NamedCharacters_h_
#include "prtypes.h"
#include "jArray.h"
#include "nscore.h"
#include "nsDebug.h"
#include "prlog.h"
#include "nsMemory.h"
struct nsHtml5CharacterName {
PRUint16 nameStart;
PRUint16 nameLen;
#ifdef DEBUG
PRInt32 n;
#endif
PRInt32 length() const;
PRUnichar charAt(PRInt32 index) const;
};
class nsHtml5NamedCharacters
{
public:
static const nsHtml5CharacterName NAMES[];
static const PRUnichar VALUES[][2];
static PRUnichar** WINDOWS_1252;
static void initializeStatics();
static void releaseStatics();
};
#endif // nsHtml5NamedCharacters_h_