OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TextEncoder
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.h
46
class
TextEncoder
: public RefCounted<
TextEncoder
> {
48
static PassRefPtr<
TextEncoder
> create(const String& utfLabel, ExceptionState&);
49
virtual ~
TextEncoder
();
55
using RefCounted<
TextEncoder
>::ref;
56
using RefCounted<
TextEncoder
>::deref;
59
TextEncoder
(const String& encoding);
TextEncoder.cpp
33
#include "modules/encoding/
TextEncoder
.h"
42
PassRefPtr<
TextEncoder
>
TextEncoder
::create(const String& utfLabel, ExceptionState& exceptionState)
58
return adoptRef(new
TextEncoder
(encoding.name()));
61
TextEncoder
::
TextEncoder
(const String& encoding)
67
TextEncoder
::~
TextEncoder
()
71
String
TextEncoder
::encoding() const
78
PassRefPtr<Uint8Array>
TextEncoder
::encode(const String& input, const Dictionary& options
[
all
...]
Completed in 390 milliseconds