HomeSort by relevance Sort by last modified time
    Searched refs:_encoder (Results 1 - 25 of 46) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /external/python/cpython2/Lib/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
application.py 17 _encoder=encoders.encode_base64, **_params):
25 _encoder is a function which will perform the actual encoding for
36 _encoder(self)
image.py 21 _encoder=encoders.encode_base64, **_params):
30 _encoder is a function which will perform the actual encoding for
47 _encoder(self)
audio.py 48 _encoder=encoders.encode_base64, **_params):
58 _encoder is a function which will perform the actual encoding for
75 _encoder(self)
  /external/lzma/CPP/7zip/Compress/
Lzma2Encoder.cpp 24 _encoder = 0;
25 _encoder = Lzma2Enc_Create(&g_Alloc, &g_BigAlloc);
26 if (_encoder == 0)
32 if (_encoder != 0)
33 Lzma2Enc_Destroy(_encoder);
73 return SResToHRESULT(Lzma2Enc_SetProps(_encoder, &lzma2Props));
78 Byte prop = Lzma2Enc_WriteProperties(_encoder);
89 SRes res = Lzma2Enc_Encode(_encoder, &outWrap.p, &inWrap.p, progress ? &progressWrap.p : NULL);
LzmaEncoder.cpp 17 _encoder = NULL;
18 _encoder = LzmaEnc_Create(&g_Alloc);
19 if (!_encoder)
25 if (_encoder)
26 LzmaEnc_Destroy(_encoder, &g_Alloc, &g_BigAlloc);
123 return SResToHRESULT(LzmaEnc_SetProps(_encoder, &props));
130 RINOK(LzmaEnc_WriteProperties(_encoder, props, &size));
141 SRes res = LzmaEnc_Encode(_encoder, &outWrap.p, &inWrap.p, progress ? &progressWrap.p : NULL, &g_Alloc, &g_BigAlloc);
Lzma2Encoder.h 21 CLzma2EncHandle _encoder; member in class:NCompress::NLzma2::CEncoder
LzmaEncoder.h 21 CLzmaEncHandle _encoder; member in class:NCompress::NLzma::CEncoder
  /external/webrtc/webrtc/modules/video_coding/
video_sender.cc 33 _encoder(nullptr),
97 _encoder = _codecDataBase.GetEncoder();
151 _encoder = nullptr;
163 // the value of _encoder, we don't need to grab the lock here.
165 if (!_encoder)
167 *bitrate = _encoder->GetEncoderParameters().target_bitrate;
175 // the value of _encoder, we don't need to grab the lock here.
177 if (!_encoder)
180 *framerate = _encoder->GetEncoderParameters().input_frame_rate;
207 if (_encoder != nullptr
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
encoder.py 227 _encoder = encode_basestring_ascii
229 _encoder = encode_basestring
231 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding): function in function:JSONEncoder.iterencode
262 markers, self.default, _encoder, self.indent,
267 markers, self.default, _encoder, self.indent, floatstr,
272 def _make_iterencode(markers, _default, _encoder, _indent, _floatstr,
313 yield buf + _encoder(value)
387 yield _encoder(key)
390 yield _encoder(value)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
encoder.py 221 _encoder = encode_basestring_ascii
223 _encoder = encode_basestring
225 def _encoder(o, _orig_encoder=_encoder, _encoding=self.encoding): function in function:JSONEncoder.iterencode
256 markers, self.default, _encoder, self.indent,
261 markers, self.default, _encoder, self.indent, floatstr,
266 def _make_iterencode(markers, _default, _encoder, _indent, _floatstr,
307 yield buf + _encoder(value)
381 yield _encoder(key)
384 yield _encoder(value)
    [all...]

Completed in 1492 milliseconds

1 2