Searched refs:input_str (Results 1 – 9 of 9) sorted by relevance
/external/autotest/site_utils/tester_feedback/ |
D | input_handlers.py | 41 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/lldb/source/Interpreter/ |
D | CommandHistory.cpp | 40 CommandHistory::FindString (const char* input_str) const in FindString() 43 if (!input_str) in FindString() 45 if (input_str[0] != g_repeat_char) in FindString() 47 if (input_str[1] == '-') in FindString() 50 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success); in FindString() 59 else if (input_str[1] == g_repeat_char) in FindString() 69 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success); in FindString()
|
/external/libcxx/utils/sym_check/sym_check/ |
D | util.py | 8 def execute_command(cmd, input_str=None): argument 18 out, err = p.communicate(input=input_str) 25 def execute_command_verbose(cmd, input_str=None): argument 29 out, err, exitCode = execute_command(cmd, input_str=input_str) 92 [_cppfilt_exe], input_str=symbol)
|
/external/v8/tools/gyp/pylib/gyp/ |
D | input.py | 627 def FindEnclosingBracketGroup(input_str): argument 630 for index, char in enumerate(input_str): 723 input_str = str(input) 724 if IsStrCanonicalInt(input_str): 725 return int(input_str) 728 if expansion_symbol not in input_str: 729 return input_str 733 matches = list(variable_re.finditer(input_str)) 735 return input_str 737 output = input_str [all …]
|
/external/lldb/include/lldb/Interpreter/ |
D | CommandHistory.h | 41 FindString (const char* input_str) const;
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | graph_json.py | 154 def _PositiveIntOrNone(input_str): argument 156 if not input_str: 159 parsed = int(input_str)
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
D | create_test_cases.py | 284 input_str = sexp_to_string(sort_decls(input_sexp)) 297 f.write('{0}\nEOF\n'.format(input_str))
|
/external/dbus/dbus/ |
D | dbus-sha.c | 523 DBusString input_str; in check_sha_binary() local 527 _dbus_string_init_const_len (&input_str, input, input_len); in check_sha_binary() 533 if (!_dbus_sha_compute (&input_str, &results)) in check_sha_binary()
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
D | util.py | 608 def RemoveCRLFFromString(input_str): argument 610 return re.sub(r'[\r\n]', '', input_str)
|