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

  /external/chromium_org/tools/telemetry/telemetry/core/
repeat_options.py 38 def _ParseRepeatOption(self, browser_options, input_str, parser):
40 input_str, '')))
43 setattr(self, input_str + '_secs', float(match.group(1)))
45 setattr(self, input_str + '_iters', 1)
47 setattr(self, input_str + '_iters', int(match.group(1)))
48 delattr(browser_options, input_str)
52 'e.g. \'10\' or \'10s\'\n' % input_str.replace('_','-'))
  /external/chromium_org/native_client_sdk/src/tools/
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/chromium_org/chrome_frame/
chrome_launcher.h 45 // Returns a string that is equivalent in input_str without any leading
46 // or trailing whitespace. Returns an empty string if input_str contained only
48 std::wstring TrimWhiteSpace(const wchar_t* input_str);
chrome_launcher.cc 79 std::wstring TrimWhiteSpace(const wchar_t* input_str) {
81 if (input_str != NULL) {
82 std::wstring str(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/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);
  /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/tools/gyp/pylib/gyp/
input.py 617 def FindEnclosingBracketGroup(input_str):
620 for index, char in enumerate(input_str):
702 input_str = str(input)
703 if IsStrCanonicalInt(input_str):
704 return int(input_str)
707 if expansion_symbol not in input_str:
708 return input_str
712 matches = list(variable_re.finditer(input_str))
714 return input_str
716 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/qemu/
net-android.c 248 const char *input_str)
250 char *str = strdup(input_str);
264 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/googleurl/src/
url_canon_unittest.cc 233 string16 input_str(WStringToUTF16(utf_cases[i].input16));
234 int input_len = static_cast<int>(input_str.length());
237 success &= AppendUTF8EscapedChar(input_str.c_str(), &ch, input_len,
285 string16 input_str(WStringToUTF16(icu_cases[i].input));
286 int input_len = static_cast<int>(input_str.length());
287 converter.ConvertFromUTF16(input_str.c_str(), input_len, &output);
    [all...]
  /external/chromium_org/url/
url_canon_unittest.cc 220 base::string16 input_str(WStringToUTF16(utf_cases[i].input16));
221 int input_len = static_cast<int>(input_str.length());
224 success &= AppendUTF8EscapedChar(input_str.c_str(), &ch, input_len,
272 base::string16 input_str(WStringToUTF16(icu_cases[i].input));
273 int input_len = static_cast<int>(input_str.length());
274 converter.ConvertFromUTF16(input_str.c_str(), input_len, &output);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 503 def replace_right_shift(input_str):
504 return input_str.replace(">>", "> >")
    [all...]

Completed in 564 milliseconds