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

  /external/autotest/site_utils/tester_feedback/
input_handlers.py 41 def process(self, input_str):
44 @param input_str: The user input.
66 def process(self, input_str):
95 def process(self, input_str):
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)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/guile/
interpreter.i 16 char input_str[16384];
42 if (fgets(input_str,16384,stdin) == NULL) {
45 if (strncmp(input_str,"quit",4) == 0) exit(1);
46 status = gscm_eval_str(&eval_answer, toplev, input_str);
  /external/libcxx/utils/sym_check/sym_check/
util.py 8 def execute_command(cmd, input_str=None):
18 out, err = p.communicate(input=input_str)
25 def execute_command_verbose(cmd, input_str=None):
29 out, err, exitCode = execute_command(cmd, input_str=input_str)
92 [_cppfilt_exe], input_str=symbol)
  /system/tools/aidl/tests/
aidl_test_client_utf8_strings.cpp 138 const string* input_str = (*input)[i].get(); local
141 if (!input_str) {
153 if (*input_str != *repeated_str || *input_str != *reversed_str) {
154 LOG(ERROR) << "Expected '" << *input_str << "' but got "
  /external/chromium-trace/catapult/dashboard/dashboard/
graph_json.py 154 def _PositiveIntOrNone(input_str):
156 if not input_str:
159 parsed = int(input_str)
  /external/v8/tools/gyp/pylib/gyp/
input.py 627 def FindEnclosingBracketGroup(input_str):
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/mesa3d/src/glsl/tests/lower_jumps/
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/
dbus-sha.c 523 DBusString input_str; local
527 _dbus_string_init_const_len (&input_str, input, input_len);
533 if (!_dbus_sha_compute (&input_str, &results))
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
util.py 608 def RemoveCRLFFromString(input_str):
610 return re.sub(r'[\r\n]', '', input_str)
    [all...]

Completed in 2702 milliseconds