Home
last modified time | relevance | path

Searched refs:_progress (Results 1 – 12 of 12) sorted by relevance

/external/lzma/CPP/7zip/Common/
DProgressUtils.cpp18 _progress = progress; in Init()
19 _progress.QueryInterface(IID_ICompressProgressInfo, &_ratioProgress); in Init()
42 return _progress->SetCompleted(_inSizeIsMain ? &inSize2 : &outSize2); in SetRatioInfo()
DProgressUtils.h15 CMyComPtr<IProgress> _progress; variable
/external/python/google-api-python-client/tests/
Dtest_http.py471 self.assertEqual(0, download._progress)
480 self.assertEqual(3, download._progress)
488 self.assertEqual(5, download._progress)
616 self.assertEqual(0, download._progress)
633 self.assertEqual(3, download._progress)
647 self.assertEqual(5, download._progress)
658 self.assertEqual(0, download._progress)
666 self.assertEqual(0, download._progress)
678 self.assertEqual(0, download._progress)
686 self.assertEqual(0, download._progress)
[all …]
/external/mesa3d/src/compiler/nir/
Dnir_lower_bool_to_int32.c34 rewrite_1bit_ssa_def_to_32bit(nir_ssa_def *def, void *_progress) in rewrite_1bit_ssa_def_to_32bit() argument
36 bool *progress = _progress; in rewrite_1bit_ssa_def_to_32bit()
Dnir_lower_bool_to_float.c35 rewrite_1bit_ssa_def_to_32bit(nir_ssa_def *def, void *_progress) in rewrite_1bit_ssa_def_to_32bit() argument
37 bool *progress = _progress; in rewrite_1bit_ssa_def_to_32bit()
Dnir_lower_bool_to_bitsize.c35 rewrite_1bit_ssa_def_to_32bit(nir_ssa_def *def, void *_progress) in rewrite_1bit_ssa_def_to_32bit() argument
37 bool *progress = _progress; in rewrite_1bit_ssa_def_to_32bit()
/external/python/google-api-python-client/googleapiclient/
Dhttp.py698 self._progress = 0
735 self._progress,
736 self._progress + self._chunksize - 1,
754 self._progress += len(content)
764 if self._total_size is None or self._progress == self._total_size:
766 return MediaDownloadProgress(self._progress, self._total_size), self._done
776 MediaDownloadProgress(self._progress, self._total_size),
/external/autotest/utils/frozen_chromite/third_party/googleapiclient/
Dhttp.py635 self._progress = 0
664 self._progress, self._progress + self._chunksize)
675 self._progress += len(content)
685 if self._progress == self._total_size:
687 return MediaDownloadProgress(self._progress, self._total_size), self._done
/external/lzma/CPP/7zip/Archive/7z/
D7zDecode.cpp18 CMyComPtr<ICompressProgressInfo> _progress; member in NArchive::N7z::CDecProgress
20 CDecProgress(ICompressProgressInfo *progress): _progress(progress) {} in CDecProgress()
28 return _progress->SetRatioInfo(NULL, outSize); in SetRatioInfo()
D7zEncode.h19 CMyComPtr<ICompressProgressInfo> _progress; variable
D7zEncode.cpp102 _progress = progress; in Init()
116 if (_progress) in SetRatioInfo()
117 return _progress->SetRatioInfo(inSize, &outSize2); in SetRatioInfo()
/external/tensorflow/tensorflow/examples/speech_commands/
Dinput_data.py221 def _progress(count, block_size, total_size): function
228 filepath, _ = urllib.request.urlretrieve(data_url, filepath, _progress)