Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/encoding/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  TextEncoder.h   Sprache: C

 
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 mozilla_dom_textencoder_h_
#define mozilla_dom_textencoder_h_

#include "mozilla/dom/NonRefcountedDOMObject.h"
#include "mozilla/dom/TextEncoderBinding.h"
#include "mozilla/dom/TypedArray.h"
#include "mozilla/Encoding.h"

namespace mozilla {
class ErrorResult;

namespace dom {

class TextEncoder final : public NonRefcountedDOMObject {
 public:
  // The WebIDL constructor.

  static UniquePtr<TextEncoder> Constructor(const GlobalObject& aGlobal) {
    return MakeUnique<TextEncoder>();
  }

  TextEncoder() = default;

  virtual ~TextEncoder() = default;

  bool WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto,
                  JS::MutableHandle<JSObject*> aReflector) {
    return TextEncoder_Binding::Wrap(aCx, this, aGivenProto, aReflector);
  }

 public:
  /**
   * Return the encoding name.
   *
   * @param aEncoding, current encoding.
   */

  void GetEncoding(nsACString& aEncoding);

  /**
   * Encodes incoming code units to utf-8.
   *
   * @param aCx        Javascript context.
   * @param aObj       the wrapper of the TextEncoder
   * @param aString    already-encoded utf-8 code units to be returned, via
   *                   UTF8String.
   * @return JSObject* The Uint8Array wrapped in a JS object.  Returned via
   *                   the aRetval out param.
   */

  void Encode(JSContext* aCx, JS::Handle<JSObject*> aObj,
              const nsACString& aUtf8String,
              JS::MutableHandle<JSObject*> aRetval, ErrorResult& aRv);

  void EncodeInto(JSContext* aCx, JS::Handle<JSString*> aSrc,
                  const Uint8Array& aDst, TextEncoderEncodeIntoResult& aResult,
                  OOMReporter& aError);
};

}  // namespace dom
}  // namespace mozilla

#endif  // mozilla_dom_textencoder_h_

Messung V0.5
C=90 H=92 G=90

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.