HomeSort by relevance Sort by last modified time
    Searched defs:encoding (Results 251 - 275 of 1311) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
transfer.py 202 def encoding(self): member in class:Download
412 if response.info and 'content-encoding' in response.info:
415 self.__encoding = response.info['content-encoding']
739 msg['Content-Transfer-Encoding'] = 'binary'
    [all...]
  /external/dng_sdk/source/
dng_shared.cpp 689 const char *encoding = NULL; local
695 encoding = "Linear";
699 encoding = "sRGB";
703 encoding = "INVALID VALUE";
707 printf ("ProfileHueSatMapEncoding: %s\n", encoding);
813 const char *encoding = NULL; local
819 encoding = "Linear";
823 encoding = "sRGB";
827 encoding = "INVALID VALUE";
831 printf ("ProfileLookTableEncoding: %s\n", encoding);
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 52 message.encoding().symbol_length());
55 EncodingTypeToProto(message.encoding().encoding_type()));
76 encoding::EncodingOption::EncodingSet::const_iterator iter;
80 encoding::EncodingOption option = *iter;
81 Options_Encoding* encoding = options.add_input_encodings(); local
82 encoding->set_symbol_length(option.symbol_length());
83 encoding->set_type(EncodingTypeToProto(option.encoding_type()));
89 encoding::EncodingOption option = *iter;
90 Options_Encoding* encoding = options.add_output_encodings(); local
91 encoding->set_symbol_length(option.symbol_length())
271 const Options_Encoding& encoding = options.input_encodings(i); local
279 const Options_Encoding& encoding = options.output_encodings(i); local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
OptionsMessage.java 32 * Options.Encoding.EncodingType in polo.proto.
90 public void addInputEncoding(EncodingOption encoding) {
91 mInputEncodings.add(encoding);
94 public void addOutputEncoding(EncodingOption encoding) {
95 mOutputEncodings.add(encoding);
98 public boolean supportsInputEncoding(EncodingOption encoding) {
99 return mInputEncodings.contains(encoding);
102 public boolean supportsOutputEncoding(EncodingOption encoding) {
103 return mOutputEncodings.contains(encoding);
131 EncodingOption encoding; local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java 342 options.outputEncodings = new PoloProto.Options.Encoding[n];
349 options.inputEncodings = new PoloProto.Options.Encoding[n];
363 configuration.encoding = toProto(poloMessage.getEncoding());
369 * Converts a {@link EncodingOption} to a {@link PoloProto.Options.Encoding}.
371 private PoloProto.Options.Encoding toProto(EncodingOption enc) {
372 PoloProto.Options.Encoding encoding = new PoloProto.Options.Encoding(); local
376 encoding.type = PoloProto.Options.Encoding.ENCODING_TYPE_ALPHANUMERIC
    [all...]
  /external/icu/icu4c/source/test/intltest/
itutil.cpp 508 static const char *const encoding="ISO-8859-1"; local
510 ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
670 static const char *const encoding="ISO-8859-1"; local
673 ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
Checker.java 24 private String encoding; field in class:Checker
45 encoding = dataFile.getEncoding();
152 System.out.println(language + "(" + encoding + ") stats, " + languageName(dataFilename) + "(" + fileEncoding + ") data:");
  /external/iproute2/include/linux/hdlc/
ioctl.h 53 unsigned short encoding; member in struct:__anon13775
  /external/kernel-headers/original/uapi/linux/hdlc/
ioctl.h 53 unsigned short encoding; member in struct:__anon14589
  /external/libxml2/
testHTML.c 50 static char *encoding = NULL; variable
780 if (encoding)
781 htmlSaveFileEnc("-", doc, encoding);
787 if (encoding)
788 htmlSaveFileEnc("-", doc, encoding);
827 encoding = argv[i];
867 printf("\t--encode encoding : output in the given encoding\n");
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoderCommon.h 485 uint8_t encoding; member in struct:llvm::X86Disassembler::OperandSpecifier
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 49 options.put("--output-encoding=", Boolean.FALSE); // output encoding
51 options.put("--encoding=", Boolean.FALSE); // specify encoding
201 if (hasOption(options, "--encoding=")) {
202 // System.out.println("%% Found --encoding");
203 String encoding = (String)options.get("--encoding="); local
204 if (encoding != null) s.setEncoding(encoding);
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 61 String encoding; field in class:CacheManager.CacheResult
158 * Gets the encoding of this cache entry.
160 * @return the encoding of this cache entry
163 return encoding;
211 * Sets the encoding of this cache entry.
213 * @param encoding the encoding of this cache entry
215 public void setEncoding(String encoding) {
216 this.encoding = encoding;
    [all...]
  /frameworks/base/media/java/android/media/audiopolicy/
AudioPolicyConfig.java 116 int encoding = in.readInt(); local
119 .setChannelMask(channelMask).setEncoding(encoding).build();
156 textDump += " encoding=" + mix.getFormat().getEncoding() + "\n";
  /hardware/intel/img/psb_video/src/
psb_drv_debug.c 653 uint32_t encoding; local
668 encoding = (chk_hdr & 0x07);
669 if ((count == 1) && (encoding == 7)) {
673 DB("RENDEC_CK_HDR #symbols = %d address = %08x encoding = %01x\n", cmd_idx, count, start_address, encoding);
683 } while (encoding != 0x07);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 276 String encoding = input.getEncoding(); local
279 parse(in, encoding, input.getPublicId(), input.getSystemId());
294 parse(in, encoding, input.getPublicId(), systemId);
  /libcore/ojluni/src/main/java/java/io/
Console.java 370 private static native String encoding(); method in class:Console
540 String csname = encoding();
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 60 private byte[] encoding = null; field in class:ObjectIdentifier
75 * New version use the new filed "encoding" only.
80 * 2. old -> new: There's no "encoding" field, new readObject() reads
82 * 3. new -> new: "encoding" field exists, new readObject() uses it
113 if (encoding == null) { // from an old version
200 encoding = new byte[pos];
201 System.arraycopy(tmp, 0, encoding, 0, pos);
228 * The encoding of the ID in the stream uses "DER", a BER/1 subset.
244 * one byte of encoding. Verify that the tag of this datum
247 * Then get and check the length of the ID's encoding. We se
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/hdlc/
ioctl.h 51 unsigned short encoding; member in struct:__anon39085
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/hdlc/
ioctl.h 51 unsigned short encoding; member in struct:__anon40999
  /prebuilts/gdb/darwin-x86/lib/python2.7/
codecs.py 90 return "<%s.%s object for encoding %s at 0x%x>" % (self.__class__.__module__, self.__class__.__name__, self.name, id(self))
105 decoding and '?' on encoding.
107 character reference (only for encoding).
109 (only for encoding).
124 make encoding/decoding efficient.
147 make encoding/decoding efficient.
160 the state of the Encoding process between calls to encode().
315 # interfaces which can be used to implement new encoding submodules
339 sequences (only for encoding).
448 definition of the encoding and the given size, e.g. i
649 encoding = 'unknown' variable in class:StreamReaderWriter
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
IOBinding.py 29 # what encoding to use
36 # Encoding for file names
39 encoding = "ascii" variable
42 # a portable encoding name, we need to find the code page
44 encoding = locale.getdefaultlocale()[1] variable
45 codecs.lookup(encoding)
54 encoding = locale.nl_langinfo(locale.CODESET) variable
55 if encoding is None or encoding is '':
57 encoding = 'ascii variable
64 encoding = locale.getdefaultlocale()[1] variable
67 encoding = 'ascii' variable
72 encoding = encoding.lower() variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
codecs.py 90 return "<%s.%s object for encoding %s at 0x%x>" % (self.__class__.__module__, self.__class__.__name__, self.name, id(self))
105 decoding and '?' on encoding.
107 character reference (only for encoding).
109 (only for encoding).
124 make encoding/decoding efficient.
147 make encoding/decoding efficient.
160 the state of the Encoding process between calls to encode().
315 # interfaces which can be used to implement new encoding submodules
339 sequences (only for encoding).
448 definition of the encoding and the given size, e.g. i
649 encoding = 'unknown' variable in class:StreamReaderWriter
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
IOBinding.py 29 # what encoding to use
36 # Encoding for file names
39 encoding = "ascii" variable
42 # a portable encoding name, we need to find the code page
44 encoding = locale.getdefaultlocale()[1] variable
45 codecs.lookup(encoding)
54 encoding = locale.nl_langinfo(locale.CODESET) variable
55 if encoding is None or encoding is '':
57 encoding = 'ascii variable
64 encoding = locale.getdefaultlocale()[1] variable
67 encoding = 'ascii' variable
72 encoding = encoding.lower() variable
    [all...]
  /prebuilts/go/darwin-x86/src/net/url/
url.go 51 type encoding int type
54 encodePath encoding = 1 + iota
72 func shouldEscape(c byte, mode encoding) bool {
136 func unescape(s string, mode encoding) (string, error) {
195 func escape(s string, mode encoding) string {
248 // and URL's String method uses RawPath if it is a valid encoding of Path,
433 // RawPath is a hint as to the encoding of Path to use
550 // It must not contain any bytes that require escaping during path encoding.

Completed in 1767 milliseconds

<<11121314151617181920>>