HomeSort by relevance Sort by last modified time
    Searched defs:Encoding (Results 26 - 50 of 84) sorted by null

12 3 4

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 781 return; // Doesn't change encoding.
805 /// \brief Compact unwind encoding values.
831 /// Generate compact unwind encoding for the function based on the CFI
887 "unwind encoding, opcode=" << Inst.getOperation()
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 403 // 16-bit addressing forms of the ModR/M byte have a different encoding for
485 // indirect register encoding, this handles addresses like [EAX]. The
486 // encoding for [EBP] with no displacement means [disp32] so we handle it
511 // Otherwise, emit the most general non-SIB encoding: [REG+disp32]
532 // Emit the normal disp32 encoding.
542 // Emit the disp8 encoding.
546 // Emit the disp8 encoding.
551 // Emit the normal disp32 encoding.
593 uint64_t Encoding = TSFlags & X86II::EncodingMask;
    [all...]
  /external/regex-re2/re2/
compile.cc 117 enum Encoding {
220 Encoding encoding_; // Input encoding
535 // encoding (Latin 1 or UTF-8).
    [all...]
re2.h 557 enum Encoding {
579 Encoding encoding() const { return encoding_; } function in class:re2::RE2::Options
580 void set_encoding(Encoding encoding) { encoding_ = encoding; }
582 // Legacy interface to encoding.
644 Encoding encoding_;
    [all...]
  /external/clang/lib/Format/
Format.cpp 762 encoding::Encoding Encoding)
767 Encoding(Encoding), FirstInLineIndex(0), FormattingDisabled(false),
    [all...]
  /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...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 310 unsigned Encoding;
313 uint64_t AlignInBits, unsigned Encoding)
315 Encoding(Encoding) {}
318 AlignInBits(N->getAlignInBits()), Encoding(N->getEncoding()) {}
324 Encoding == RHS->getEncoding();
327 return hash_combine(Tag, Name, SizeInBits, AlignInBits, Encoding);
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 405 /// Utility function to emit the encoding to a streamer.
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 539 uint64_t Encoding;
540 return AArch64_AM::processLogicalImmediate(UImm, BitSize, Encoding);
687 // ANDS does not use the same encoding scheme as the others xxxS
749 // encoding becomes the sp register.
    [all...]
  /frameworks/base/media/java/android/media/
AudioFormat.java 45 * <li><a href="#encoding">encoding</a>
69 * <h4 id="encoding">Encoding</h4>
70 * <p>Audio encoding is used to describe the bit representation of audio data, which can be
72 * <p>For linear PCM, the audio encoding describes the sample size, 8 bits, 16 bits, or 32 bits,
87 * API {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this encoding specifies that
110 * <p>For compressed audio, the encoding specifies the method of compression,
113 * a byte array or ByteBuffer. When a compressed audio encoding is specified
202 * and whose sample contents are specified by the <a href="#encoding">encoding</a>
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 119 Encoding.UTF_8, handler);
536 * Explicitly set the encoding here or else the parser will
537 * try to use the parent parser's encoding which is utf-16.
667 parse(is, Encoding.UTF_16, new TestHandler());
705 private static void parse(InputStream in, Encoding encoding,
711 source.setEncoding(encoding.expatName);
721 private enum Encoding {
730 Encoding(String expatName) {
  /external/llvm/include/llvm/IR/
DebugInfoMetadata.h 605 unsigned Encoding;
608 uint64_t SizeInBits, uint64_t AlignInBits, unsigned Encoding,
612 Encoding(Encoding) {}
617 uint64_t AlignInBits, unsigned Encoding,
620 SizeInBits, AlignInBits, Encoding, Storage, ShouldCreate);
624 uint64_t AlignInBits, unsigned Encoding,
637 uint64_t AlignInBits, unsigned Encoding),
638 (Tag, Name, SizeInBits, AlignInBits, Encoding))
641 uint64_t AlignInBits, unsigned Encoding),
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 257 TiXmlEncoding encoding /*= TIXML_ENCODING_UNKNOWN */ ) = 0;
288 static const char* SkipWhiteSpace( const char*, TiXmlEncoding encoding );
310 static const char* ReadName( const char* p, TIXML_STRING* name, TiXmlEncoding encoding );
320 TiXmlEncoding encoding ); // the current encoding
323 static const char* GetEntity( const char* in, char* value, int* length, TiXmlEncoding encoding );
327 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
330 if ( encoding == TIXML_ENCODING_UTF8 )
343 return GetEntity( p, _value, length, encoding );
369 TiXmlEncoding encoding );
1342 TIXML_STRING encoding; member in class:TiXmlDeclaration
    [all...]
  /external/tinyxml/
tinyxml.h 210 TiXmlEncoding encoding /*= TIXML_ENCODING_UNKNOWN */ ) = 0;
246 static const char* SkipWhiteSpace( const char*, TiXmlEncoding encoding );
263 static const char* ReadName( const char* p, TIXML_STRING* name, TiXmlEncoding encoding );
273 TiXmlEncoding encoding ); // the current encoding
276 static const char* GetEntity( const char* in, char* value, int* length, TiXmlEncoding encoding );
280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
283 if ( encoding == TIXML_ENCODING_UTF8 )
296 return GetEntity( p, _value, length, encoding );
328 TiXmlEncoding encoding );
1176 TIXML_STRING encoding; member in class:TiXmlDeclaration
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 412 llvm::dwarf::TypeKind Encoding;
516 Encoding = llvm::dwarf::DW_ATE_unsigned_char;
520 Encoding = llvm::dwarf::DW_ATE_signed_char;
524 Encoding = llvm::dwarf::DW_ATE_UTF;
532 Encoding = llvm::dwarf::DW_ATE_unsigned;
540 Encoding = llvm::dwarf::DW_ATE_signed;
543 Encoding = llvm::dwarf::DW_ATE_boolean;
549 Encoding = llvm::dwarf::DW_ATE_float;
573 return DBuilder.createBasicType(BTName, Size, Align, Encoding);
578 llvm::dwarf::TypeKind Encoding = llvm::dwarf::DW_ATE_complex_float
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 972 // If it is a constant, it must fit into a modified immediate encoding.
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp     [all...]
  /external/v8/include/
v8.h     [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/guice/lib/build/jdiff/
xerces.jar 
  /prebuilts/tools/common/m2/repository/xerces/xercesImpl/2.6.2/
xercesImpl-2.6.2.jar 

Completed in 1258 milliseconds

12 3 4