Searched refs:encoding_type (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
H A Dbucketlistresultset.py25 encoding_type=None):
34 encoding_type=encoding_type)
39 if marker and encoding_type == "url":
55 headers=None, encoding_type=None):
61 self.encoding_type = encoding_type
67 encoding_type=self.encoding_type)
71 encoding_type
[all...]
H A Dmultipart.py203 encoding_type=None):
217 if encoding_type:
218 query_args += '&encoding-type=%s' % encoding_type
H A Dbucket.py233 encoding_type=None):
265 :param encoding_type: Requests Amazon S3 to encode the response and
275 :type encoding_type: string
281 encoding_type=encoding_type)
284 version_id_marker='', headers=None, encoding_type=None):
311 :param encoding_type: Requests Amazon S3 to encode the response and
321 :type encoding_type: string
329 encoding_type=encoding_type)
[all...]
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/
H A Dencodingoption.cc22 EncodingOption::EncodingOption(EncodingOption::EncodingType encoding_type, argument
24 : encoding_type_(encoding_type),
28 EncodingOption::EncodingType EncodingOption::encoding_type() const { function in class:polo::encoding::EncodingOption
H A Dencodingoption.h50 // @param encoding_type the encoding type
52 EncodingOption(EncodingType encoding_type, uint32_t symbol_length);
55 EncodingType encoding_type() const;
74 return (option1.encoding_type() == option2.encoding_type()
76 || (option1.encoding_type() < option2.encoding_type());
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/
H A Dserverpairingsession.cc82 << encoding.encoding_type();
90 << encoding.encoding_type();
H A Dpairingsession.cc198 switch (encoding.encoding_type()) {
204 << encoding.encoding_type();
309 return option.encoding_type() != encoding::EncodingOption::kUnknown
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/s3/
H A Dtest_bucket.py154 bucket.get_all_keys(encoding_type='url')
160 encoding_type='url'
164 bucket.get_all_versions(encoding_type='url')
171 encoding_type='url'
175 bucket.get_all_multipart_uploads(encoding_type='url')
181 encoding_type='url'
/external/freetype/include/freetype/internal/
H A Dt1types.h101 T1_EncodingType encoding_type; member in struct:T1_FontRec_
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
H A Dt1types.h100 T1_EncodingType encoding_type; member in struct:T1_FontRec_
/external/pdfium/third_party/freetype/include/freetype/internal/
H A Dt1types.h100 T1_EncodingType encoding_type; member in struct:T1_FontRec_
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DSIMCCodeEmitter.cpp278 unsigned encoding_type = getEncodingType(MI); local
279 switch (encoding_type) {
/external/ImageMagick/MagickCore/
H A Dannotate.c1266 encoding_type;
1357 encoding_type=ft_encoding_unicode;
1358 ft_status=FT_Select_Charmap(face,encoding_type);
1364 encoding_type=ft_encoding_adobe_custom;
1366 encoding_type=ft_encoding_adobe_expert;
1368 encoding_type=ft_encoding_adobe_standard;
1370 encoding_type=ft_encoding_apple_roman;
1372 encoding_type=ft_encoding_big5;
1374 encoding_type=ft_encoding_gb2312;
1376 encoding_type
1255 encoding_type; local
[all...]
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
H A Dprotobufwireadapter.cc55 EncodingTypeToProto(message.encoding().encoding_type()));
83 encoding->set_type(EncodingTypeToProto(option.encoding_type()));
92 encoding->set_type(EncodingTypeToProto(option.encoding_type()));
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
H A Dt1driver.c306 retval = sizeof ( type1->encoding_type );
308 *((T1_EncodingType *)value) = type1->encoding_type;
312 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY &&
H A Dt1load.c1372 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY;
1382 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD;
1386 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT;
1390 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1;
2278 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY )
H A Dt1objs.c526 switch ( type1->encoding_type )
/external/pdfium/third_party/freetype/src/type1/
H A Dt1driver.c306 retval = sizeof ( type1->encoding_type );
308 *((T1_EncodingType *)value) = type1->encoding_type;
312 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY &&
H A Dt1load.c1369 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY;
1379 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD;
1383 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT;
1387 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1;
2260 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY )
H A Dt1objs.c526 switch ( type1->encoding_type )
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type42/
H A Dt42parse.c493 face->type1.encoding_type = T1_ENCODING_TYPE_ARRAY;
503 face->type1.encoding_type = T1_ENCODING_TYPE_STANDARD;
507 face->type1.encoding_type = T1_ENCODING_TYPE_EXPERT;
511 face->type1.encoding_type = T1_ENCODING_TYPE_ISOLATIN1;
H A Dt42objs.c99 if ( type1->encoding_type == T1_ENCODING_TYPE_ARRAY )
368 switch ( type1->encoding_type )
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
H A Dtest_bucket.py102 rs = self.bucket.list(encoding_type="url")
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
H A Dpairingsessiontest.cc125 session_.GetConfiguration()->encoding().encoding_type());
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.hpp306 uint64 encoding_type() const { return encoding_type_; } function in class:mkvmuxer::ContentEncoding

Completed in 2431 milliseconds

12