tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsHtml5UTF16Buffer.cpp (2229B)


      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 */
     22 
     23 /*
     24 * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
     25 * Please edit UTF16Buffer.java instead and regenerate.
     26 */
     27 
     28 #define nsHtml5UTF16Buffer_cpp__
     29 
     30 #include "nsHtml5AttributeName.h"
     31 #include "nsHtml5ElementName.h"
     32 #include "nsHtml5Tokenizer.h"
     33 #include "nsHtml5TreeBuilder.h"
     34 #include "nsHtml5StackNode.h"
     35 #include "nsHtml5StateSnapshot.h"
     36 #include "nsHtml5Portability.h"
     37 
     38 #include "nsHtml5UTF16Buffer.h"
     39 
     40 int32_t nsHtml5UTF16Buffer::getStart() { return start; }
     41 
     42 void nsHtml5UTF16Buffer::setStart(int32_t start) { this->start = start; }
     43 
     44 char16_t* nsHtml5UTF16Buffer::getBuffer() { return buffer; }
     45 
     46 int32_t nsHtml5UTF16Buffer::getEnd() { return end; }
     47 
     48 bool nsHtml5UTF16Buffer::hasMore() { return start < end; }
     49 
     50 int32_t nsHtml5UTF16Buffer::getLength() { return end - start; }
     51 
     52 void nsHtml5UTF16Buffer::adjust(bool lastWasCR) {
     53  if (lastWasCR && buffer[start] == '\n') {
     54    start++;
     55  }
     56 }
     57 
     58 void nsHtml5UTF16Buffer::setEnd(int32_t end) { this->end = end; }
     59 
     60 void nsHtml5UTF16Buffer::initializeStatics() {}
     61 
     62 void nsHtml5UTF16Buffer::releaseStatics() {}
     63 
     64 #include "nsHtml5UTF16BufferCppSupplement.h"