mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
/* 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
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsHtml5StringParser_h_
|
|
#define nsHtml5StringParser_h_
|
|
|
|
#include "nsHtml5AtomTable.h"
|
|
#include "nsParserBase.h"
|
|
|
|
class nsHtml5TreeOpExecutor;
|
|
class nsHtml5TreeBuilder;
|
|
class nsHtml5Tokenizer;
|
|
class nsIContent;
|
|
class nsIDocument;
|
|
|
|
class nsHtml5StringParser : public nsParserBase
|
|
{
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
/**
|
|
* Constructor for use ONLY by nsContentUtils. Others, please call the
|
|
* nsContentUtils statics that wrap this.
|
|
*/
|
|
nsHtml5StringParser();
|
|
virtual ~nsHtml5StringParser();
|
|
|
|
/**
|
|
* Invoke the fragment parsing algorithm (innerHTML).
|
|
* DO NOT CALL from outside nsContentUtils.cpp.
|
|
*
|
|
* @param aSourceBuffer the string being set as innerHTML
|
|
* @param aTargetNode the target container
|
|
* @param aContextLocalName local name of context node
|
|
* @param aContextNamespace namespace of context node
|
|
* @param aQuirks true to make <table> not close <p>
|
|
* @param aPreventScriptExecution true to prevent scripts from executing;
|
|
* don't set to false when parsing into a target node that has been bound
|
|
* to tree.
|
|
*/
|
|
nsresult ParseFragment(const nsAString& aSourceBuffer,
|
|
nsIContent* aTargetNode,
|
|
nsIAtom* aContextLocalName,
|
|
int32_t aContextNamespace,
|
|
bool aQuirks,
|
|
bool aPreventScriptExecution);
|
|
|
|
/**
|
|
* Parse an entire HTML document from a source string.
|
|
* DO NOT CALL from outside nsContentUtils.cpp.
|
|
*
|
|
*/
|
|
nsresult ParseDocument(const nsAString& aSourceBuffer,
|
|
nsIDocument* aTargetDoc,
|
|
bool aScriptingEnabledForNoscriptParsing);
|
|
|
|
private:
|
|
|
|
void Tokenize(const nsAString& aSourceBuffer,
|
|
nsIDocument* aDocument,
|
|
bool aScriptingEnabledForNoscriptParsing);
|
|
|
|
/**
|
|
* The tree operation executor
|
|
*/
|
|
nsRefPtr<nsHtml5TreeOpExecutor> mExecutor;
|
|
|
|
/**
|
|
* The HTML5 tree builder
|
|
*/
|
|
const nsAutoPtr<nsHtml5TreeBuilder> mTreeBuilder;
|
|
|
|
/**
|
|
* The HTML5 tokenizer
|
|
*/
|
|
const nsAutoPtr<nsHtml5Tokenizer> mTokenizer;
|
|
|
|
/**
|
|
* The scoped atom table
|
|
*/
|
|
nsHtml5AtomTable mAtomTable;
|
|
|
|
};
|
|
|
|
#endif // nsHtml5StringParser_h_
|