HomeSort by relevance Sort by last modified time
    Searched refs:Encoding (Results 51 - 75 of 430) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 447 template <typename Encoding>
448 struct ParseStringHandler : BaseReaderHandler<Encoding, ParseStringHandler<Encoding> > {
450 ~ParseStringHandler() { EXPECT_TRUE(str_ != 0); if (copy_) free(const_cast<typename Encoding::Ch*>(str_)); }
456 bool String(const typename Encoding::Ch* str, size_t length, bool copy) {
459 str_ = (typename Encoding::Ch*)malloc((length + 1) * sizeof(typename Encoding::Ch));
460 memcpy(const_cast<typename Encoding::Ch*>(str_), str, (length + 1) * sizeof(typename Encoding::Ch));
469 const typename Encoding::Ch* str_;
    [all...]
  /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(
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java 343 options.outputEncodings = new PoloProto.Options.Encoding[n];
350 options.inputEncodings = new PoloProto.Options.Encoding[n];
364 configuration.encoding = toProto(poloMessage.getEncoding());
370 * Converts a {@link EncodingOption} to a {@link PoloProto.Options.Encoding}.
372 private PoloProto.Options.Encoding toProto(EncodingOption enc) {
373 PoloProto.Options.Encoding encoding = new PoloProto.Options.Encoding(); local
377 encoding.type = PoloProto.Options.Encoding.ENCODING_TYPE_ALPHANUMERIC
    [all...]
  /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 {
31 // NewEncoding returns a new Encoding defined by the given alphabet,
33 func NewEncoding(encoder string) *Encoding {
34 e := new(Encoding)
45 // StdEncoding is the standard base32 encoding, as defined i
    [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 {
31 // NewEncoding returns a new Encoding defined by the given alphabet,
33 func NewEncoding(encoder string) *Encoding {
34 e := new(Encoding)
45 // StdEncoding is the standard base32 encoding, as defined i
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 70 case "file.encoding":
71 return System.Text.Encoding.Default.WebName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 69 case "file.encoding":
70 return System.Text.Encoding.Default.WebName;
  /external/clang/lib/Format/
ContinuationIndenter.h 19 #include "Encoding.h"
43 encoding::Encoding Encoding,
143 encoding::Encoding Encoding;
TokenAnalyzer.h 21 #include "Encoding.h"
102 encoding::Encoding Encoding;
TokenAnalyzer.cpp 19 #include "Encoding.h"
81 Encoding(encoding::detectEncoding(
84 llvm::dbgs() << "File encoding: "
85 << (Encoding == encoding::Encoding_UTF8 ? "UTF8" : "unknown")
94 Encoding);
  /external/libcxxabi/test/native/arm-linux-eabi/
ttype-encoding-90.pass.sh.s 4 @ PURPOSE: Check that 0x90 is a valid value for ttype encoding.
9 @ `TType Encoding` to 0x90.
73 .byte 255 @ @LPStart Encoding = omit
74 .byte 0x90 @ @TType Encoding = indirect | pcrel
76 .byte 3 @ Call site Encoding = udata4
ttype-encoding-00.pass.sh.s 4 @ PURPOSE: Check that 0x00 is a valid value for ttype encoding. LLVM and
5 @ GCC 4.6 are generating 0x00 as ttype encoding. libc++abi should provide
74 .byte 255 @ @LPStart Encoding = omit
75 .byte 0 @ @TType Encoding = absptr
77 .byte 3 @ Call site Encoding = udata4
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 27 const GlobalValue *GV, unsigned Encoding, Mangler &Mang,
33 if ((Encoding & DW_EH_PE_indirect) && (Encoding & DW_EH_PE_pcrel)) {
42 GV, Encoding, Mang, TM, MMI, Streamer);
  /external/v8/tools/
shell-utils.h 37 enum Encoding {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
TargetLoweringObjectFileImpl.h 61 MachineModuleInfo *MMI, unsigned Encoding,
96 MachineModuleInfo *MMI, unsigned Encoding,
AsmPrinter.h 364 /// encoding. If verbose assembly output is enabled, we output comments
365 /// describing the encoding. Desc is a string saying what the encoding is
369 /// GetSizeOfEncodedValue - Return the size of the encoding in bytes.
370 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
372 /// EmitReference - Emit a reference to a label with a specified encoding.
374 void EmitReference(const MCSymbol *Sym, unsigned Encoding) const;
375 void EmitReference(const GlobalValue *GV, unsigned Encoding) const;
392 /// encoding specified.
415 /// itself. This can be useful for portably encoding the comment characte
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetLoweringObjectFile.h 112 MachineModuleInfo *MMI, unsigned Encoding,
122 getExprForDwarfReference(const MCSymbol *Sym, unsigned Encoding,
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
rapidjson.h 570 template <typename Encoding>
572 typedef typename Encoding::Ch Ch;
589 template <typename Encoding>
590 struct StreamTraits<GenericStringStream<Encoding> > {
594 //! String stream with UTF8 encoding.
604 template <typename Encoding>
606 typedef typename Encoding::Ch Ch;
630 template <typename Encoding>
631 struct StreamTraits<GenericInsituStringStream<Encoding> > {
635 //! Insitu string stream with UTF8 encoding.
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
SIMCCodeEmitter.cpp 33 // NOTE: This enum is only used to identify the encoding type within LLVM,
34 // the actual encoding type that is part of the instruction format is different
36 enum Encoding {
77 /// getMachineOpValue - Reutrn the encoding for an MCOperand.
86 /// GPR2AlignEncode - Encoding for when 2 consecutive registers are used
90 /// GPR4AlignEncode - Encoding for when 4 consectuive registers are used
99 /// SMRDmemriEncode - Encoding for SMRD indexed loads
111 ///getEncodingBytes - Get then size in bytes of this instructions encoding.
114 /// getRegBinaryCode - Returns the hardware encoding for a register
117 /// getHWRegNum - Generated function that returns the hardware encoding fo
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64.go 5 // Package base64 implements base64 encoding as specified by RFC 4648.
17 // An Encoding is a radix 64 encoding/decoding scheme, defined by a
18 // 64-character alphabet. The most common encoding is the "base64"
19 // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
20 // (RFC 1421). RFC 4648 also defines an alternate encoding, which is
21 // the standard encoding with - and _ substituted for + and /.
22 type Encoding struct {
37 // NewEncoding returns a new padded Encoding defined by the given alphabet,
39 // The resulting Encoding uses the default padding character ('=')
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base64/
base64.go 5 // Package base64 implements base64 encoding as specified by RFC 4648.
17 // An Encoding is a radix 64 encoding/decoding scheme, defined by a
18 // 64-character alphabet. The most common encoding is the "base64"
19 // encoding defined in RFC 4648 and used in MIME (RFC 2045) and PEM
20 // (RFC 1421). RFC 4648 also defines an alternate encoding, which is
21 // the standard encoding with - and _ substituted for + and /.
22 type Encoding struct {
37 // NewEncoding returns a new padded Encoding defined by the given alphabet,
39 // The resulting Encoding uses the default padding character ('=')
    [all...]
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 191 // The CondCodes constants map directly to the 4-bit encoding of the condition
272 uint16_t Encoding;
282 uint16_t Encoding;
292 uint16_t Encoding;
302 uint16_t Encoding;
312 uint16_t Encoding;
321 uint16_t Encoding;
330 uint16_t Encoding;
344 uint16_t Encoding;
433 unsigned Encoding;
    [all...]
  /external/skia/include/core/
SkTypeface.h 163 enum Encoding {
170 * Given an array of character codes, of the specified encoding,
174 * @param encoding how the characters are encoded
185 int charsToGlyphs(const void* chars, Encoding encoding, SkGlyphID glyphs[],
365 virtual int onCharsToGlyphs(const void* chars, Encoding, SkGlyphID glyphs[],
  /prebuilts/go/darwin-x86/src/net/http/
header_test.go 39 "Content-Encoding": {"gzip"},
42 "Content-Encoding: gzip\r\nExpires: -1\r\n",
48 "Content-Encoding": {"gzip"},
51 "Content-Encoding: gzip\r\nExpires: -1\r\n",
57 "Content-Encoding": {"gzip"},
59 map[string]bool{"Content-Length": true, "Expires": true, "Content-Encoding": true},
  /prebuilts/go/linux-x86/src/net/http/
header_test.go 39 "Content-Encoding": {"gzip"},
42 "Content-Encoding: gzip\r\nExpires: -1\r\n",
48 "Content-Encoding": {"gzip"},
51 "Content-Encoding: gzip\r\nExpires: -1\r\n",
57 "Content-Encoding": {"gzip"},
59 map[string]bool{"Content-Length": true, "Expires": true, "Content-Encoding": true},

Completed in 420 milliseconds

1 23 4 5 6 7 8 91011>>