Searched refs:outcome (Results 1 – 8 of 8) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | classobject.c | 941 long outcome; in instance_hash() local 991 outcome = res->ob_type->tp_hash(res); in instance_hash() 995 outcome = -1; in instance_hash() 998 return outcome; in instance_hash() 1017 Py_ssize_t outcome; in instance_length() local 1032 outcome = PyInt_AsSsize_t(res); in instance_length() 1033 if (outcome == -1 && PyErr_Occurred()) { in instance_length() 1039 if (outcome != (int)outcome) { in instance_length() 1042 outcome = -1; in instance_length() 1046 if (outcome < 0) { in instance_length() [all …]
|
D | object.c | 667 static struct { int op; int outcome; } tries[3] = { in try_rich_to_3way_compare() member 683 return tries[i].outcome; in try_rich_to_3way_compare()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | classobject.c | 965 long outcome; in instance_hash() local 1015 outcome = res->ob_type->tp_hash(res); in instance_hash() 1019 outcome = -1; in instance_hash() 1022 return outcome; in instance_hash() 1041 Py_ssize_t outcome; in instance_length() local 1056 outcome = PyInt_AsSsize_t(res); in instance_length() 1057 if (outcome == -1 && PyErr_Occurred()) { in instance_length() 1063 if (outcome != (int)outcome) { in instance_length() 1066 outcome = -1; in instance_length() 1070 if (outcome < 0) { in instance_length() [all …]
|
D | object.c | 672 static struct { int op; int outcome; } tries[3] = { in try_rich_to_3way_compare() member 688 return tries[i].outcome; in try_rich_to_3way_compare()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | filecmp.py | 54 outcome = _do_cmp(f1, f2) 55 _cache[f1, f2] = s1, s2, outcome 56 return outcome
|
D | doctest.py | 1265 outcome = FAILURE # guilty until proved innocent or insane 1271 outcome = SUCCESS 1283 outcome = BOOM 1287 outcome = SUCCESS 1295 outcome = SUCCESS 1298 if outcome is SUCCESS: 1301 elif outcome is FAILURE: 1305 elif outcome is BOOM: 1311 assert False, ("unknown outcome", outcome)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_re.py | 771 pattern = s = outcome = repl = expected = None 773 pattern, s, outcome, repl, expected = t 775 pattern, s, outcome = t 782 if outcome == SYNTAX_ERROR: pass # Expected a syntax error 795 if outcome == SYNTAX_ERROR: 798 elif outcome == FAIL: 801 elif outcome == SUCCEED:
|
D | test_support.py | 330 outcome = fcmp(x[i], y[i]) 331 if outcome != 0: 332 return outcome
|