HomeSort by relevance Sort by last modified time
    Searched refs:first_param (Results 1 - 6 of 6) sorted by null

  /external/python/cpython2/Lib/test/
test_posix.py 303 def _test_all_chown_common(self, chown_func, first_param, stat_func):
307 stat = stat_func(first_param)
313 chown_func(first_param, uid, gid)
315 chown_func(first_param, -1, gid)
317 chown_func(first_param, uid, -1)
335 chown_func(first_param, big_value, big_value)
337 chown_func(first_param, -1, -1)
339 chown_func(first_param, uid, gid)
348 self.assertRaises(OSError, chown_func, first_param, 0, 0)
350 self.assertRaises(OSError, chown_func, first_param, 0, -1
    [all...]
  /external/mesa3d/src/compiler/glsl/
ast_function.cpp 1341 ir_rvalue *first_param = (ir_rvalue *)parameters->get_head_raw(); local
1544 ir_rvalue *const first_param = (ir_rvalue *) parameters->get_head_raw(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_posix.py 214 def _test_all_chown_common(self, chown_func, first_param):
224 chown_func(first_param, ent.pw_uid, ent.pw_gid)
230 first_param, 0, 0)
233 chown_func(first_param, os.getuid(), os.getgid())
  /external/python/cpython3/Lib/test/
test_posix.py 694 def _test_all_chown_common(self, chown_func, first_param, stat_func):
698 stat = stat_func(first_param)
704 chown_func(first_param, uid, gid)
706 chown_func(first_param, -1, gid)
708 chown_func(first_param, uid, -1)
726 chown_func(first_param, big_value, big_value)
728 chown_func(first_param, -1, -1)
730 chown_func(first_param, uid, gid)
739 self.assertRaises(OSError, chown_func, first_param, 0, 0)
741 self.assertRaises(OSError, chown_func, first_param, 0, -1
    [all...]
  /external/tensorflow/tensorflow/lite/delegates/nnapi/
nnapi_delegate.cc 719 auto first_param = context->tensors[node->inputs->data[0]].params;
722 if (curr_param.scale != first_param.scale ||
723 curr_param.zero_point != first_param.zero_point) {
    [all...]
  /external/python/cpython3/Lib/email/
_header_value_parser.py 735 first_param = parts[0][1]
736 charset = first_param.charset
740 if not first_param.extended and len(parts) > 1:
    [all...]

Completed in 583 milliseconds