2010-09-28 00:32:31 -07:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-06-24 01:54:33 -07:00
|
|
|
#ifndef nsHtml5NamedCharacters_h_
|
|
|
|
#define nsHtml5NamedCharacters_h_
|
2009-06-28 15:44:22 -07:00
|
|
|
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "jArray.h"
|
|
|
|
#include "nscore.h"
|
2010-03-29 04:01:18 -07:00
|
|
|
#include "nsDebug.h"
|
|
|
|
#include "prlog.h"
|
|
|
|
#include "nsMemory.h"
|
2009-06-28 15:44:22 -07:00
|
|
|
|
2010-09-28 00:32:31 -07:00
|
|
|
struct nsHtml5CharacterName {
|
|
|
|
PRUint16 nameStart;
|
|
|
|
PRUint16 nameLen;
|
|
|
|
#ifdef DEBUG
|
|
|
|
PRInt32 n;
|
|
|
|
#endif
|
|
|
|
PRInt32 length() const;
|
|
|
|
PRUnichar charAt(PRInt32 index) const;
|
|
|
|
};
|
|
|
|
|
2009-06-28 15:44:22 -07:00
|
|
|
class nsHtml5NamedCharacters
|
|
|
|
{
|
|
|
|
public:
|
2010-09-28 00:32:31 -07:00
|
|
|
static const nsHtml5CharacterName NAMES[];
|
2010-02-10 01:23:35 -08:00
|
|
|
static const PRUnichar VALUES[][2];
|
2009-06-28 15:44:22 -07:00
|
|
|
static PRUnichar** WINDOWS_1252;
|
|
|
|
static void initializeStatics();
|
|
|
|
static void releaseStatics();
|
|
|
|
};
|
|
|
|
|
2010-06-24 01:54:33 -07:00
|
|
|
#endif // nsHtml5NamedCharacters_h_
|