HomeSort by relevance Sort by last modified time
    Searched refs:Encoding (Results 201 - 225 of 528) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 514 /// Return true if type encoding is unsigned.
548 unsigned Encoding = BTy->getEncoding();
549 assert((Encoding == dwarf::DW_ATE_unsigned ||
550 Encoding == dwarf::DW_ATE_unsigned_char ||
551 Encoding == dwarf::DW_ATE_signed ||
552 Encoding == dwarf::DW_ATE_signed_char ||
553 Encoding == dwarf::DW_ATE_float || Encoding == dwarf::DW_ATE_UTF ||
554 Encoding == dwarf::DW_ATE_boolean ||
557 "Unsupported encoding");
    [all...]
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 175 Xml.parse(inputStream, Xml.Encoding.UTF_8, new YouTubeContentHandler(videoAdapter));
183 Xml.parse(inputStream, Xml.Encoding.UTF_8, newContentHandler(videoAdapter));
191 Xml.parse(inputStream, Xml.Encoding.UTF_8, contentHandler);
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
link.go 47 // Encoding:
58 // Encoding: same as memory reference, but type = TYPE_ADDR.
63 // Encoding:
71 // Encoding: same as above, but type = TYPE_INDIR.
76 // instruction encoding to use a full 32-bit constant, never a
81 // Encoding:
87 // Encoding:
94 // Encoding:
99 // Encoding:
108 // If the final argument to TEXT omits the -±y, the encoding should stil
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
link.go 47 // Encoding:
58 // Encoding: same as memory reference, but type = TYPE_ADDR.
63 // Encoding:
71 // Encoding: same as above, but type = TYPE_INDIR.
76 // instruction encoding to use a full 32-bit constant, never a
81 // Encoding:
87 // Encoding:
94 // Encoding:
99 // Encoding:
108 // If the final argument to TEXT omits the -±y, the encoding should stil
    [all...]
  /external/flatbuffers/net/FlatBuffers/
Table.cs 63 return Encoding.UTF8.GetString(bb.Data, startPos , len);
  /external/llvm/bindings/go/llvm/
DIBuilderBindings.h 75 unsigned Encoding);
DIBuilderBindings.cpp 111 unsigned Encoding) {
113 return wrap(D->createBasicType(Name, SizeInBits, AlignInBits, Encoding));
  /external/skia/src/core/
SkFont.cpp 57 int SkFont::textToGlyphs(const void* text, size_t byteLength, SkTextEncoding encoding,
67 switch (encoding) {
85 // TODO: unify/eliminate SkTypeface::Encoding with SkTextEncoding
86 SkTypeface::Encoding typefaceEncoding;
87 switch (encoding) {
98 SkASSERT(kGlyphID_SkTextEncoding == encoding);
108 SkScalar SkFont::measureText(const void* text, size_t byteLength, SkTextEncoding encoding) const {
  /external/skia/src/ports/
SkTypeface_win_dw.h 109 int onCharsToGlyphs(const void* chars, Encoding encoding,
  /external/swiftshader/third_party/LLVM/lib/MC/
MCStreamer.cpp 370 unsigned Encoding) {
374 CurFrame->PersonalityEncoding = Encoding;
377 void MCStreamer::EmitCFILsda(const MCSymbol *Sym, unsigned Encoding) {
381 CurFrame->LsdaEncoding = Encoding;
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 90 Xml.parse(in, Xml.Encoding.UTF_8, this);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 33 // Encoding
35 /*! \class rapidjson::Encoding
36 \brief Concept for encoding of Unicode characters.
39 concept Encoding {
89 //! UTF-8 encoding.
93 \note implements Encoding concept
231 //! UTF-16 encoding.
235 \note implements Encoding concept
296 //! UTF-16 little endian encoding.
328 //! UTF-16 big endian encoding.
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
responsewrite_test.go 101 "Transfer-Encoding: chunked\r\n\r\n" +
168 "Transfer-Encoding: chunked\r\n\r\n" +
  /prebuilts/go/linux-x86/src/net/http/
responsewrite_test.go 101 "Transfer-Encoding: chunked\r\n\r\n" +
168 "Transfer-Encoding: chunked\r\n\r\n" +
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 72 llvm_unreachable("invalid abbreviation encoding");
129 // Get the element encoding.
219 // Get the element encoding.
225 "Array element type has to be an encoding of a type");
293 BitCodeAbbrevOp::Encoding E = (BitCodeAbbrevOp::Encoding)Read(3);
  /external/protobuf/csharp/src/Google.Protobuf/
ByteString.cs 167 /// Creates a new <see cref="ByteString" /> by encoding the specified text with
168 /// the given encoding.
170 public static ByteString CopyFrom(string text, Encoding encoding)
172 return new ByteString(encoding.GetBytes(text));
176 /// Creates a new <see cref="ByteString" /> by encoding the specified text in UTF-8.
180 return CopyFrom(text, Encoding.UTF8);
192 /// Converts this <see cref="ByteString"/> into a string by applying the given encoding.
195 /// This method should only be used to convert binary data which was the result of encoding
196 /// text with the given encoding.
    [all...]
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
Utils.java 38 import org.jcodings.Encoding;
186 Encoding encoding = ((RubyString) value).getEncoding(); local
189 if (encoding != ASCIIEncoding.INSTANCE)
190 throw runtime.newTypeError("Encoding for bytes fields" +
191 " must be \"ASCII-8BIT\", but was " + encoding);
194 if (encoding != UTF8Encoding.INSTANCE
195 && encoding != USASCIIEncoding.INSTANCE)
196 throw runtime.newTypeError("Encoding for string fields" +
197 " must be \"UTF-8\" or \"ASCII\", but was " + encoding);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCStreamer.h 538 virtual void EmitCFIPersonality(const MCSymbol *Sym, unsigned Encoding);
539 virtual void EmitCFILsda(const MCSymbol *Sym, unsigned Encoding);
601 /// encoding inline with the assembly. This method takes ownership of \arg CE.
604 /// information in conjunction with encoding information. This method takes
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 479 /// Emit a .byte 42 directive that corresponds to an encoding. If verbose
480 /// assembly output is enabled, we output comments describing the encoding.
481 /// Desc is a string saying what the encoding is specifying (e.g. "LSDA").
484 /// Return the size of the encoding in bytes.
485 unsigned GetSizeOfEncodedValue(unsigned Encoding) const;
487 /// Emit reference to a ttype global with a specified encoding.
488 void EmitTTypeReference(const GlobalValue *GV, unsigned Encoding) const;
503 /// Get the value for DW_AT_APPLE_isa. Zero if no isa encoding specified.
543 /// This can be useful for portably encoding the comment character or other

Completed in 1400 milliseconds

1 2 3 4 5 6 7 891011>>