parser/html/nsHtml5UTF16Buffer.h

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 /*
     2  * Copyright (c) 2008-2010 Mozilla Foundation
     3  *
     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:
    10  *
    11  * The above copyright notice and this permission notice shall be included in 
    12  * all copies or substantial portions of the Software.
    13  *
    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.
    21  */
    23 /*
    24  * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
    25  * Please edit UTF16Buffer.java instead and regenerate.
    26  */
    28 #ifndef nsHtml5UTF16Buffer_h
    29 #define nsHtml5UTF16Buffer_h
    31 #include "nsIAtom.h"
    32 #include "nsHtml5AtomTable.h"
    33 #include "nsString.h"
    34 #include "nsNameSpaceManager.h"
    35 #include "nsIContent.h"
    36 #include "nsTraceRefcnt.h"
    37 #include "jArray.h"
    38 #include "nsHtml5ArrayCopy.h"
    39 #include "nsAHtml5TreeBuilderState.h"
    40 #include "nsHtml5Atoms.h"
    41 #include "nsHtml5ByteReadable.h"
    42 #include "nsIUnicodeDecoder.h"
    43 #include "nsHtml5Macros.h"
    44 #include "nsIContentHandle.h"
    46 class nsHtml5StreamParser;
    48 class nsHtml5Tokenizer;
    49 class nsHtml5TreeBuilder;
    50 class nsHtml5MetaScanner;
    51 class nsHtml5AttributeName;
    52 class nsHtml5ElementName;
    53 class nsHtml5HtmlAttributes;
    54 class nsHtml5StateSnapshot;
    55 class nsHtml5Portability;
    58 class nsHtml5UTF16Buffer
    59 {
    60   private:
    61     char16_t* buffer;
    62     int32_t start;
    63     int32_t end;
    64   public:
    65     int32_t getStart();
    66     void setStart(int32_t start);
    67     char16_t* getBuffer();
    68     int32_t getEnd();
    69     bool hasMore();
    70     void adjust(bool lastWasCR);
    71     void setEnd(int32_t end);
    72     static void initializeStatics();
    73     static void releaseStatics();
    75 #include "nsHtml5UTF16BufferHSupplement.h"
    76 };
    80 #endif

mercurial