HomeSort by relevance Sort by last modified time
    Searched defs:Encoding (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/nist-sip/java/javax/sip/header/
Encoding.java 5 public interface Encoding {
7 void setEncoding(String encoding) throws ParseException;
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 108 if (const char *Encoding =
110 O << Encoding;
112 O << "unknown-encoding(" << BT->getEncoding() << ')';
  /external/v8/tools/
shell-utils.h 37 enum Encoding {
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlSanitizer.java 139 Encoding.decodeHtml(html.substring(token.start, token.end)));
142 balancer.text(Encoding.stripBannedCodeunits(
172 attrs.add(Encoding.decodeHtml(stripQuotes(
Encoding.java 36 final class Encoding {
  /external/owasp/sanitizer/src/tests/org/owasp/html/
EncodingTest.java 45 assertEquals(golden, Encoding.decodeHtml(html));
48 assertSame(golden, Encoding.decodeHtml(golden));
53 Encoding.decodeHtml("\\\\u000a"));
56 Encoding.decodeHtml("&#x000a;"));
59 Encoding.decodeHtml("&#x00a;"));
62 Encoding.decodeHtml("&#x0a;"));
65 Encoding.decodeHtml("&#xa;"));
68 Encoding.decodeHtml("&#x10000;"));
71 Encoding.decodeHtml("&#xa"));
74 Encoding.decodeHtml("&#x00ziggy"))
    [all...]
  /external/clang/lib/Format/
Encoding.h 1 //===--- Encoding.h - Format C++ code -------------------------------------===//
11 /// \brief Contains functions for text encoding manipulation. Supports UTF-8,
26 namespace encoding { namespace in namespace:clang::format
28 enum Encoding {
33 /// \brief Detects encoding of the Text. If the Text can be decoded using UTF-8,
34 /// it is considered UTF8, otherwise we treat it as some 8-bit encoding.
35 inline Encoding detectEncoding(StringRef Text) {
52 /// Encoding.
53 inline unsigned getCodePointCount(StringRef Text, Encoding Encoding) {
    [all...]
FormatTokenLexer.h 19 #include "Encoding.h"
32 const FormatStyle &Style, encoding::Encoding Encoding);
77 encoding::Encoding Encoding;
TokenAnalyzer.h 21 #include "Encoding.h"
102 encoding::Encoding Encoding;
BreakableToken.h 20 #include "Encoding.h"
76 bool InPPDirective, encoding::Encoding Encoding,
79 Encoding(Encoding), Style(Style) {}
84 const encoding::Encoding Encoding;
101 encoding::Encoding Encoding
    [all...]
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
SIMCCodeEmitter.cpp 58 /// \returns the encoding for an MCOperand.
86 // Returns the encoding value to use if the given integer is an integer inline
195 uint64_t Encoding = getBinaryCodeForInstr(MI, Fixups, STI);
200 OS.write((uint8_t) ((Encoding >> (8 * i)) & 0xff));
293 llvm_unreachable("Encoding of this operand type is not supported yet.");
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFMCCodeEmitter.cpp 43 // binary encoding for an instruction.
48 // getMachineOpValue - Return binary encoding of operand. If the machin
138 // Get instruction encoding and emit it
157 uint64_t Encoding;
160 Encoding = MRI.getEncodingValue(Op1.getReg());
161 Encoding <<= 16;
164 Encoding |= Op2.getImm() & 0xffff;
165 return Encoding;
  /frameworks/base/core/java/android/util/
Xml.java 78 public static void parse(InputStream in, Encoding encoding,
83 source.setEncoding(encoding.expatName);
129 public enum Encoding {
138 Encoding(String expatName) {
144 * Finds an encoding by name. Returns UTF-8 if you pass {@code null}.
146 public static Encoding findEncodingByName(String encodingName)
149 return Encoding.UTF_8;
152 for (Encoding encoding : Encoding.values())
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLX509CertPath.java 48 * Supported encoding types for CerthPath. Used by the various APIs that
51 private enum Encoding {
57 Encoding(String apiName) {
61 static Encoding findByApiName(String apiName) throws CertificateEncodingException {
62 for (Encoding element : values()) {
75 Encoding.PKI_PATH.apiName,
76 Encoding.PKCS7.apiName,
79 private static final Encoding DEFAULT_ENCODING = Encoding.PKI_PATH;
98 private byte[] getEncoded(Encoding encoding) throws CertificateEncodingException
    [all...]
  /external/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiMCCodeEmitter.cpp 48 // the binary encoding of instructions/opereands.
51 // binary encoding for an instruction.
56 // getMachineOpValue - Return binary encoding of operand. If the machine
110 // getMachineOpValue - Return binary encoding of operand. If the machine
178 // Get instruction encoding and emit it
191 unsigned Encoding;
202 Encoding = (getLanaiRegisterNumbering(Op1.getReg()) << 18);
207 Encoding |= (Op2.getImm() & 0xffff);
210 Encoding |= (0x3 << 16);
212 Encoding |= (0x1 << 16)
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 44 /// encoding and therefore distinct from the UID
48 // The encoding field from the record
49 uint8_t Encoding;
124 /// immediateEncodingFromString - Translates an immediate encoding from the
131 /// @return - The operand's encoding.
155 /// \brief Adjust the encoding type for an operand based on the instruction.
156 void adjustOperandEncoding(OperandEncoding &encoding);
  /external/skia/include/core/
SkTypeface.h 133 enum Encoding {
140 * Given an array of character codes, of the specified encoding,
144 * @param encoding how the characters are encoded
155 int charsToGlyphs(const void* chars, Encoding encoding, SkGlyphID glyphs[],
327 virtual int onCharsToGlyphs(const void* chars, Encoding, SkGlyphID glyphs[],
  /external/skqp/include/core/
SkTypeface.h 133 enum Encoding {
140 * Given an array of character codes, of the specified encoding,
144 * @param encoding how the characters are encoded
155 int charsToGlyphs(const void* chars, Encoding encoding, SkGlyphID glyphs[],
327 virtual int onCharsToGlyphs(const void* chars, Encoding, SkGlyphID glyphs[],
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 50 unsigned Encoding = getPersonalityEncoding();
51 switch (Encoding & 0x70) {
53 report_fatal_error("We do not support this DWARF encoding yet!");
319 unsigned Encoding, MCStreamer &Streamer) const {
321 if (Encoding & dwarf::DW_EH_PE_indirect) {
338 getExprForDwarfReference(SSym, Encoding & ~dwarf::DW_EH_PE_indirect, Streamer);
342 getExprForDwarfGlobalReference(GV, Mang, MMI, Encoding, Streamer);
494 MachineModuleInfo *MMI, unsigned Encoding,
498 if (Encoding & DW_EH_PE_indirect) {
518 getExprForDwarfReference(SSym, Encoding & ~dwarf::DW_EH_PE_indirect, Streamer)
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 77 Xml.parse(newInputStream(), Xml.Encoding.UTF_8, new DefaultHandler());
  /prebuilts/go/darwin-x86/src/encoding/base32/
base32.go 5 // Package base32 implements base32 encoding as specified by RFC 4648.
19 // An Encoding is a radix 32 encoding/decoding scheme, defined by a
20 // 32-character alphabet. The most common is the "base32" encoding
22 // The alternate "base32hex" encoding is used in DNSSEC.
23 type Encoding struct {
37 // NewEncoding returns a new Encoding defined by the given alphabet,
39 func NewEncoding(encoder string) *Encoding {
40 e := new(Encoding)
53 // StdEncoding is the standard base32 encoding, as defined i
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64.go 5 // Package base64 implements base64 encoding as specified by RFC 4648.
9 "encoding/binary"
18 // An Encoding is a radix 64 encoding/decoding scheme, defined by a
19 // 64-character alphabet. The most common encoding is the "base64"
20 // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
21 // (RFC 1421). RFC 4648 also defines an alternate encoding, which is
22 // the standard encoding with - and _ substituted for + and /.
23 type Encoding struct {
38 // NewEncoding returns a new padded Encoding defined by the given alphabet
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base32/
base32.go 5 // Package base32 implements base32 encoding as specified by RFC 4648.
19 // An Encoding is a radix 32 encoding/decoding scheme, defined by a
20 // 32-character alphabet. The most common is the "base32" encoding
22 // The alternate "base32hex" encoding is used in DNSSEC.
23 type Encoding struct {
37 // NewEncoding returns a new Encoding defined by the given alphabet,
39 func NewEncoding(encoder string) *Encoding {
40 e := new(Encoding)
53 // StdEncoding is the standard base32 encoding, as defined i
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base64/
base64.go 5 // Package base64 implements base64 encoding as specified by RFC 4648.
9 "encoding/binary"
18 // An Encoding is a radix 64 encoding/decoding scheme, defined by a
19 // 64-character alphabet. The most common encoding is the "base64"
20 // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
21 // (RFC 1421). RFC 4648 also defines an alternate encoding, which is
22 // the standard encoding with - and _ substituted for + and /.
23 type Encoding struct {
38 // NewEncoding returns a new padded Encoding defined by the given alphabet
    [all...]
  /bionic/libc/bionic/
iconv.cpp 45 enum Encoding {
80 static bool __parse_encoding(const char* s, Encoding* encoding, Mode* mode) {
93 *encoding = UTF_8;
95 *encoding = US_ASCII;
97 *encoding = UTF_16_LE;
99 *encoding = UTF_16_BE;
101 *encoding = UTF_32_LE;
103 *encoding = UTF_32_BE;
105 *encoding = WCHAR_T
    [all...]

Completed in 742 milliseconds

1 2 3 4 5 6