HomeSort by relevance Sort by last modified time
    Searched full:_convert (Results 1 - 25 of 34) sorted by null

1 2

  /external/lzma/CPP/7zip/Compress/
BranchRegister.cpp 15 REGISTER_FILTER_CREATE(CreateBra_Decoder_ ## n, CCoder(n ## _Convert, false)) \
16 REGISTER_FILTER_CREATE(CreateBra_Encoder_ ## n, CCoder(n ## _Convert, true)) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 282 self._convert = None
410 if self._convert and data:
411 data = self._convert(data)
470 self._convert = self._adpcm2lin
480 self._convert = self._ulaw2lin
495 self._convert = self._decomp_data
570 self._convert = None
710 if self._convert:
711 data = self._convert(data)
737 self._convert = None
    [all...]
wave.py 126 self._convert = None
254 if self._convert and data:
255 data = self._convert(data)
314 self._convert = None
419 if self._convert:
420 data = self._convert(data)
  /external/python/cpython2/Lib/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 294 self._convert = None
425 if self._convert and data:
426 data = self._convert(data)
485 self._convert = self._adpcm2lin
495 self._convert = self._ulaw2lin
508 self._convert = self._decomp_data
584 self._convert = None
724 if self._convert:
725 data = self._convert(data)
755 self._convert = Non
    [all...]
wave.py 127 self._convert = None
259 if self._convert and data:
260 data = self._convert(data)
319 self._convert = None
424 if self._convert:
425 data = self._convert(data)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 294 self._convert = None
422 if self._convert and data:
423 data = self._convert(data)
482 self._convert = self._adpcm2lin
492 self._convert = self._ulaw2lin
507 self._convert = self._decomp_data
582 self._convert = None
722 if self._convert:
723 data = self._convert(data)
753 self._convert = Non
    [all...]
wave.py 126 self._convert = None
254 if self._convert and data:
255 data = self._convert(data)
314 self._convert = None
419 if self._convert:
420 data = self._convert(data)
  /prebuilts/gdb/linux-x86/lib/python2.7/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 294 self._convert = None
422 if self._convert and data:
423 data = self._convert(data)
482 self._convert = self._adpcm2lin
492 self._convert = self._ulaw2lin
507 self._convert = self._decomp_data
582 self._convert = None
722 if self._convert:
723 data = self._convert(data)
753 self._convert = Non
    [all...]
wave.py 126 self._convert = None
254 if self._convert and data:
255 data = self._convert(data)
314 self._convert = None
419 if self._convert:
420 data = self._convert(data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 294 self._convert = None
422 if self._convert and data:
423 data = self._convert(data)
482 self._convert = self._adpcm2lin
492 self._convert = self._ulaw2lin
507 self._convert = self._decomp_data
582 self._convert = None
722 if self._convert:
723 data = self._convert(data)
753 self._convert = Non
    [all...]
wave.py 126 self._convert = None
254 if self._convert and data:
255 data = self._convert(data)
314 self._convert = None
419 if self._convert:
420 data = self._convert(data)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 52 def _convert(node): function in function:literal_eval
58 return tuple(map(_convert, node.elts))
60 return list(map(_convert, node.elts))
62 return dict((_convert(k), _convert(v)) for k, v
80 return _convert(node_or_string)
aifc.py 294 self._convert = None
422 if self._convert and data:
423 data = self._convert(data)
482 self._convert = self._adpcm2lin
492 self._convert = self._ulaw2lin
507 self._convert = self._decomp_data
582 self._convert = None
722 if self._convert:
723 data = self._convert(data)
753 self._convert = Non
    [all...]
wave.py 126 self._convert = None
254 if self._convert and data:
255 data = self._convert(data)
314 self._convert = None
419 if self._convert:
420 data = self._convert(data)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
bgenType.py 242 to derive the new and convert procs by appending _New and _Convert; it
252 self.convert = arg + '_Convert'
  /external/python/cpython2/Tools/bgen/bgen/
bgenType.py 242 to derive the new and convert procs by appending _New and _Convert; it
252 self.convert = arg + '_Convert'
  /external/libcap/contrib/
pcaps4server 331 ${j}_convert
353 ${i}_convert
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/debug/
_debug.c 344 int _convert = strlen(__format_str) + 1; local
345 LPWSTR _lpw = (LPWSTR)alloca(_convert * sizeof(wchar_t));
347 MultiByteToWideChar(GetACP(), 0, __format_str, -1, _lpw, _convert); local
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/debug/
_debug.c 344 int _convert = strlen(__format_str) + 1; local
345 LPWSTR _lpw = (LPWSTR)alloca(_convert * sizeof(wchar_t));
347 MultiByteToWideChar(GetACP(), 0, __format_str, -1, _lpw, _convert); local

Completed in 1469 milliseconds

1 2