Home
last modified time | relevance | path

Searched refs:input_str (Results 1 – 6 of 6) sorted by relevance

/external/autotest/site_utils/tester_feedback/
Dinput_handlers.py41 def process(self, input_str): argument
66 def process(self, input_str): argument
95 def process(self, input_str): argument
96 input_str = input_str.lower().strip()
97 if input_str == 'y':
99 if input_str == 'n':
101 if not input_str and self._default is not None:
134 def process(self, input_str): argument
136 input_str = input_str or self._default
137 if input_str:
[all …]
/external/protobuf/objectivec/DevTools/
Dpddm_tests.py118 for idx, (input_str, expected_prefix) in enumerate(test_list, 1):
119 f = io.StringIO(input_str)
173 for idx, (input_str, expected_prefix) in enumerate(test_list, 1):
174 f = io.StringIO(input_str)
223 for idx, (input_str, expected) in enumerate(test_list, 1):
224 result = mc.Expand(input_str)
267 for idx, (input_str, expected_err) in enumerate(test_list, 1):
269 result = mc.Expand(input_str)
350 for idx, (input_str, line_counts) in enumerate(test_list, 1):
351 f = io.StringIO(input_str)
[all …]
/external/toolchain-utils/
Dtest_gcc_dejagnu.py96 def GetNumNewFailures(input_str): argument
97 if not input_str:
101 for l in input_str.splitlines():
/external/toolchain-utils/crosperf/
Dsuite_runner_unittest.py80 input_str = ('--profiler=custom_perf --profiler_args=\'perf_options'
84 res = suite_runner.GetProfilerArgs(input_str)
/external/mesa3d/src/compiler/glsl/tests/lower_jumps/
Dcreate_test_cases.py291 input_str = sexp_to_string(sort_decls(input_sexp))
304 f.write('{0}\nEOF\n'.format(input_str))
/external/python/cpython2/Modules/
D_json.c279 char *input_str; in ascii_escape_str() local
282 input_str = PyString_AS_STRING(pystr); in ascii_escape_str()
286 Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i]; in ascii_escape_str()
291 c = (Py_UNICODE)(unsigned char)input_str[j]; in ascii_escape_str()
295 uni = PyUnicode_DecodeUTF8(input_str, input_chars, "strict"); in ascii_escape_str()
333 memcpy(&output[1], input_str, i); in ascii_escape_str()
336 Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i]; in ascii_escape_str()