Home
last modified time | relevance | path

Searched refs:result_s (Results 1 – 3 of 3) sorted by relevance

/external/ltp/scripts/tests/
Dtest_abspath.sh71 result_s="matches expected string _abspath(${test_string}) => $result == $expected_string)"
74 result_s="doesn't match expected string _abspath(${test_string}) => $result != $expected_string)"
79 tst_resm $result_v "Test string $result_s"
92 result_s="matches expected string abspath.sh ${test_string} => $result == $expected_string)"
95 result_s="doesn't match expected string abspath.sh ${test_string} => $result != $expected_string)"
100 tst_resm $result_v "Test string $result_s"
109 result_s="matches expected string abspath.sh ${test_string} => $result == $expected_string)"
112 result_s="doesn't match expected string abspath.sh ${test_string} => $result != $expected_string)"
117 tst_resm $result_v "Test string $result_s"
/external/python/cpython2/Objects/
Dbytearrayobject.c1572 char *self_s, *result_s; in replace_interleave() local
1604 result_s = PyByteArray_AS_STRING(result); in replace_interleave()
1609 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
1610 result_s += to_len; in replace_interleave()
1614 *result_s++ = *self_s++; in replace_interleave()
1615 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
1616 result_s += to_len; in replace_interleave()
1620 Py_MEMCPY(result_s, self_s, self_len-i); in replace_interleave()
1631 char *self_s, *result_s; in replace_delete_single_character() local
1651 result_s = PyByteArray_AS_STRING(result); in replace_delete_single_character()
[all …]
Dstringobject.c2359 char *self_s, *result_s; in replace_interleave() local
2391 result_s = PyString_AS_STRING(result); in replace_interleave()
2396 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
2397 result_s += to_len; in replace_interleave()
2401 *result_s++ = *self_s++; in replace_interleave()
2402 Py_MEMCPY(result_s, to_s, to_len); in replace_interleave()
2403 result_s += to_len; in replace_interleave()
2407 Py_MEMCPY(result_s, self_s, self_len-i); in replace_interleave()
2418 char *self_s, *result_s; in replace_delete_single_character() local
2438 result_s = PyString_AS_STRING(result); in replace_delete_single_character()
[all …]