HomeSort by relevance Sort by last modified time
    Searched defs:encoding (Results 126 - 150 of 1576) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/elfutils/backends/
s390_retval.c 113 Dwarf_Word encoding; local
116 &encoding) != 0)
118 if (encoding == DW_ATE_float && size <= 8)
sparc_retval.c 118 Dwarf_Word encoding; local
121 &encoding) != 0)
123 if (encoding == DW_ATE_float)
x86_64_retval.c 124 Dwarf_Word encoding; local
127 &encoding) != 0)
130 switch (encoding)
  /external/freetype/src/psaux/
t1cmap.c 29 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
184 /***** TYPE1 CUSTOM ENCODING CMAP *****/
195 T1_Encoding encoding = &face->type1.encoding; local
200 cmap->first = (FT_UInt)encoding->code_first;
201 cmap->count = (FT_UInt)encoding->code_last - cmap->first;
202 cmap->indices = encoding->char_index;
205 FT_ASSERT( encoding->code_first <= encoding->code_last );
284 /***** TYPE1 SYNTHETIC UNICODE ENCODING CMAP *****
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
encodingoption.h 24 namespace encoding { namespace in namespace:polo
26 // An encoding option for a challenge message consisting of an encoding scheme
30 // Representation of a specific encoding type. The numeric values should
31 // be sorted by encoding complexity from least to greatest.
33 // Unknown encoding type.
49 // Creates a new encoding option.
50 // @param encoding_type the encoding type
51 // @param symbol_length the encoding symbole length
54 // Gets the encoding scheme for the challenge message
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
ServerPairingSession.java 88 EncodingOption encoding = mSessionConfig.getEncoding(); local
91 if (!mLocalOptions.supportsOutputEncoding(encoding)) {
93 "output encoding: " + encoding.getType());
96 if (!mLocalOptions.supportsInputEncoding(encoding)) {
98 "input encoding: " + encoding.getType());
  /external/junit-params/src/main/java/junitparams/custom/
FileParametersProvider.java 44 String encoding = fileParameters.encoding(); local
54 return new InputStreamReader(getClass().getClassLoader().getResourceAsStream(filename), encoding);
56 return new InputStreamReader(new FileInputStream(filename), encoding);
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 67 * Return value encoding in canonical form.
68 * @return The value of the header in canonical encoding.
71 StringBuffer encoding = new StringBuffer(); local
73 encoding.append(LESS_THAN).append(uri.encode()).append(GREATER_THAN);
75 encoding.append(string);
78 encoding.append(SEMICOLON).append(parameters.encode());
80 return encoding.toString();
  /external/python/cpython2/Lib/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding
    [all...]
  /external/skia/bench/
CmapBench.cpp 17 static SkTypeface::Encoding paint2Encoding(const SkPaint& paint) {
20 return (SkTypeface::Encoding)enc;
45 SkTypeface::Encoding encoding = paint2Encoding(paint); local
51 face->charsToGlyphs(text, encoding, glyphs, glyphCount);
57 SkTypeface::Encoding encoding = paint2Encoding(paint); local
61 face->charsToGlyphs(text, encoding, nullptr, glyphCount);
  /external/skqp/bench/
CmapBench.cpp 17 static SkTypeface::Encoding paint2Encoding(const SkPaint& paint) {
20 return (SkTypeface::Encoding)enc;
45 SkTypeface::Encoding encoding = paint2Encoding(paint); local
51 face->charsToGlyphs(text, encoding, glyphs, glyphCount);
57 SkTypeface::Encoding encoding = paint2Encoding(paint); local
61 face->charsToGlyphs(text, encoding, nullptr, glyphCount);
  /external/v8/src/parsing/
duplicate-finder.cc 20 byte* encoding = BackupKey(key, is_one_byte); local
21 base::HashMap::Entry* entry = map_.LookupOrInsert(encoding, hash);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ByteBuffer.java 31 private String encoding = null; field in class:ByteBuffer
225 * Detects the encoding of the byte buffer, stores and returns it.
229 * @return Returns the encoding string.
233 if (encoding == null)
235 // needs four byte at maximum to determine encoding
239 encoding = "UTF-8";
250 encoding = "UTF-16BE";
254 encoding = "UTF-32BE";
258 encoding = "UTF-32";
269 encoding = "UTF-8"
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
serializable.h 110 EncodingType encoding; local
114 DeserializeArrayType(&encoding, &size, reader, start, end)) {
  /libcore/luni/src/main/java/org/xml/sax/
InputSource.java 24 * with a specified encoding), and/or a character stream.</p>
34 * encoding declaration found in that stream.
37 * encoding specified in the InputSource or else (if no encoding is
38 * specified) autodetecting the character encoding using an algorithm
81 * the character encoding, if known.</p>
105 * character encoding.</p>
181 * <p>If the application knows the character encoding of the
183 * the encoding using the setEncoding method.</p>
203 * <p>The getEncoding method will return the character encoding
332 private String encoding; field in class:InputSource
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/
ExchangeAttachment.java 26 public String encoding; field in class:ExchangeAttachment
36 encoding = in.readString();
53 dest.writeString(encoding);
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 12 Encoding basic Python object hierarchies::
31 Compact encoding::
75 Specializing JSON object encoding::
118 encoding='utf-8', variable
124 encoding='utf-8', default=None, sort_keys=False, **kw):
137 ``encoding`` parameter is used. Unless ``fp.write()`` explicitly
161 ``encoding`` is the character encoding for str instances, default is UTF-8.
178 encoding == 'utf-8' and default is None and not sort_keys and not kw):
185 separators=separators, encoding=encoding
    [all...]
  /system/core/libunwindstack/tests/
DwarfMemoryTest.cpp 171 uint8_t encoding = (i << 4) | value; local
172 ASSERT_EQ(expected, dwarf_mem_->GetEncodedSize<AddressType>(encoding))
173 << "encoding 0x" << std::hex << static_cast<uint32_t>(encoding) << " test value 0x"
  /external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/
BaseEncodingTest.java 244 BaseEncoding encoding, String decoded, String encoded) {
245 testEncodingWithSeparators(encoding, decoded, encoded);
246 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
247 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded));
251 BaseEncoding encoding, String decoded, String encoded) {
252 testEncoding(encoding, decoded, encoded);
257 testEncoding(encoding.withSeparator(separator, sepLength), decoded,
263 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) {
264 testEncodes(encoding, decoded, encoded);
265 testDecodes(encoding, encoded, decoded)
    [all...]
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
OkApacheClient.java 66 Header encoding = entity.getContentEncoding(); local
67 if (encoding != null) {
68 builder.header(encoding.getName(), encoding.getValue());
95 } else if ("Content-Encoding".equalsIgnoreCase(name)) {
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 310 BaseEncoding encoding, String decoded, String encoded) {
311 testEncodingWithSeparators(encoding, decoded, encoded);
312 testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded));
313 testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded));
317 BaseEncoding encoding, String decoded, String encoded) {
318 testEncoding(encoding, decoded, encoded);
323 testEncoding(encoding.withSeparator(separator, sepLength), decoded,
329 private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) {
330 testEncodes(encoding, decoded, encoded);
331 testDecodes(encoding, encoded, decoded)
    [all...]
  /art/runtime/
stack_map.cc 123 CodeInfoEncoding encoding = ExtractEncoding(); local
124 size_t number_of_stack_maps = GetNumberOfStackMaps(encoding);
130 encoding.stack_map.encoding.Dump(vios);
131 if (HasInlineInfo(encoding)) {
132 encoding.inline_info.encoding.Dump(vios);
135 GetDexRegisterLocationCatalog(encoding).Dump(vios, *this);
139 StackMap stack_map = GetStackMapAt(i, encoding);
142 encoding,
156 CodeInfoEncoding encoding = code_info.ExtractEncoding(); local
172 CodeInfoEncoding encoding = code_info.ExtractEncoding(); local
256 CodeInfoEncoding encoding = code_info.ExtractEncoding(); local
    [all...]

Completed in 917 milliseconds

1 2 3 4 56 7 8 91011>>