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

  /external/srec/seti/setiUtils/include/
platform_utils.h 30 Returns the position in NULL terminated input_str where seps are found,
37 char * safe_strtok(char *input_str, char *seps, int * token_len);
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
repaint_overlay.py 14 def extract_layer_tree(input_str):
15 if not isinstance(input_str, str):
18 if input_str[0:2] == '{\n':
21 start = input_str.find('\n{\n')
25 end = input_str.find('\n}\n', start)
30 return input_str[start:end + 3]
  /external/chromium_org/native_client_sdk/src/tools/lib/
quote.py 8 def quote(input_str, specials, escape='\\'):
23 escape + r'\1', input_str)
24 return re.sub(r'(' + escape + r')', escape + r'\1', input_str)
27 def unquote(input_str, specials, escape='\\'):
28 """Splits the input string |input_str| where special characters in
41 for c in input_str:
  /external/srec/seti/setiUtils/src/
platform_utils.c 36 Returns the position in NULL terminated input_str where seps are found,
44 char * safe_strtok(char *input_str, char *seps, int * token_len)
52 if (!m || !input_str)
55 n = strlen(input_str);
56 pos = input_str;
  /external/lldb/source/Interpreter/
CommandHistory.cpp 40 CommandHistory::FindString (const char* input_str) const
43 if (!input_str)
45 if (input_str[0] != g_repeat_char)
47 if (input_str[1] == '-')
50 size_t idx = Args::StringToUInt32 (input_str+2, 0, 0, &success);
59 else if (input_str[1] == g_repeat_char)
69 uint32_t idx = Args::StringToUInt32 (input_str+1, 0, 0, &success);
  /external/lldb/include/lldb/Interpreter/
CommandHistory.h 41 FindString (const char* input_str) const;
  /external/chromium_org/tools/gn/
label.cc 104 const char* input_str = input.data(); local
114 location_piece = base::StringPiece(&input_str[0], path_separator);
118 name_piece = base::StringPiece(&input_str[path_separator + 1],
132 &input_str[path_separator + 1],
146 &input_str[toolchain_separator + 1],
  /external/chromium_org/url/
url_canon_icu_unittest.cc 72 base::string16 input_str(WStringToUTF16(icu_cases[i].input));
73 int input_len = static_cast<int>(input_str.length());
74 converter.ConvertFromUTF16(input_str.c_str(), input_len, &output);
url_canon_unittest.cc 204 base::string16 input_str(WStringToUTF16(utf_cases[i].input16));
205 int input_len = static_cast<int>(input_str.length());
208 success &= AppendUTF8EscapedChar(input_str.c_str(), &ch, input_len,
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 633 def FindEnclosingBracketGroup(input_str):
636 for index, char in enumerate(input_str):
729 input_str = str(input)
730 if IsStrCanonicalInt(input_str):
731 return int(input_str)
734 if expansion_symbol not in input_str:
735 return input_str
739 matches = list(variable_re.finditer(input_str))
741 return input_str
743 output = input_str
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/simplejson/
_speedups.c 341 char *input_str; local
344 input_str = PyString_AS_STRING(pystr);
348 Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i];
353 c = (Py_UNICODE)(unsigned char)input_str[j];
357 uni = PyUnicode_DecodeUTF8(input_str, input_chars, "strict");
387 memcpy(&output[1], input_str, i);
390 Py_UNICODE c = (Py_UNICODE)(unsigned char)input_str[i];
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
search_provider_unittest.cc     [all...]
  /external/qemu/net/
net-android.c 223 const char *input_str)
225 char *str = strdup(input_str);
239 if ((src_str = strchr(input_str,'@'))) {
    [all...]
net.c 215 const char *input_str)
217 char *str = strdup(input_str);
231 if ((src_str = strchr(input_str,'@'))) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 347 def replace_right_shift(input_str):
348 return input_str.replace(">>", "> >")
    [all...]

Completed in 583 milliseconds