HomeSort by relevance Sort by last modified time
    Searched refs:strs (Results 51 - 75 of 167) sorted by null

1 23 4 5 6 7

  /external/python/cpython2/Lib/
trace.py 393 def find_lines_from_code(code, strs):
398 if lineno not in strs:
403 def find_lines(code, strs):
406 linenos = find_lines_from_code(code, strs)
412 linenos.update(find_lines(c, strs))
447 strs = find_strings(filename)
448 return find_lines(code, strs)
  /external/python/cpython3/Lib/
trace.py 348 def _find_lines_from_code(code, strs):
353 if lineno not in strs:
358 def _find_lines(code, strs):
361 linenos = _find_lines_from_code(code, strs)
367 linenos.update(_find_lines(c, strs))
404 strs = _find_strings(filename, encoding)
405 return _find_lines(code, strs)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
trace.py 393 def find_lines_from_code(code, strs):
398 if lineno not in strs:
403 def find_lines(code, strs):
406 linenos = find_lines_from_code(code, strs)
412 linenos.update(find_lines(c, strs))
447 strs = find_strings(filename)
448 return find_lines(code, strs)
  /prebuilts/gdb/linux-x86/lib/python2.7/
trace.py 393 def find_lines_from_code(code, strs):
398 if lineno not in strs:
403 def find_lines(code, strs):
406 linenos = find_lines_from_code(code, strs)
412 linenos.update(find_lines(c, strs))
447 strs = find_strings(filename)
448 return find_lines(code, strs)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 393 def find_lines_from_code(code, strs):
398 if lineno not in strs:
403 def find_lines(code, strs):
406 linenos = find_lines_from_code(code, strs)
412 linenos.update(find_lines(c, strs))
447 strs = find_strings(filename)
448 return find_lines(code, strs)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 393 def find_lines_from_code(code, strs):
398 if lineno not in strs:
403 def find_lines(code, strs):
406 linenos = find_lines_from_code(code, strs)
412 linenos.update(find_lines(c, strs))
447 strs = find_strings(filename)
448 return find_lines(code, strs)
  /external/python/cpython2/Lib/idlelib/
UndoDelegator.py 311 strs = []
313 strs.append(" %r" % (cmd,))
314 return s + "(\n" + ",\n".join(strs) + "\n)"
  /external/python/cpython3/Lib/idlelib/
undo.py 310 strs = []
312 strs.append(" %r" % (cmd,))
313 return s + "(\n" + ",\n".join(strs) + "\n)"
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
UndoDelegator.py 311 strs = []
313 strs.append(" %r" % (cmd,))
314 return s + "(\n" + ",\n".join(strs) + "\n)"
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
UndoDelegator.py 311 strs = []
313 strs.append(" %r" % (cmd,))
314 return s + "(\n" + ",\n".join(strs) + "\n)"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 311 strs = []
313 strs.append(" %r" % (cmd,))
314 return s + "(\n" + ",\n".join(strs) + "\n)"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 311 strs = []
313 strs.append(" %r" % (cmd,))
314 return s + "(\n" + ",\n".join(strs) + "\n)"
  /system/extras/simpleperf/scripts/
debug_unwind_reporter.py 414 strs = (lines[i].strip()).split()
415 if len(strs) == 2:
416 unwinding_result[strs[0]] = strs[1]
utils.py 317 strs = build_version.split('.')
318 if strs:
319 android_version = int(strs[0])
  /build/blueprint/
ninja_strings.go 256 func parseNinjaStrings(scope scope, strs []string) ([]*ninjaString,
259 if len(strs) == 0 {
262 result := make([]*ninjaString, len(strs))
263 for i, str := range strs {
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
OverlayPackagesProviderTest.java 316 private void setStringArray(int resourceId, String[] strs) {
318 .thenReturn(strs);
  /external/tensorflow/tensorflow/core/debug/
debug_io_utils.cc 128 const protobuf::RepeatedPtrField<string>& strs = tensor_proto->string_val(); local
129 const size_t num_strs = strs.size();
140 if (StringValMaxBytesInProto(strs[i]) > chunk_size_ub) {
146 if (chunk_size + StringValMaxBytesInProto(strs[i]) > chunk_size_ub) {
150 chunk_size += StringValMaxBytesInProto(strs[i]);
168 value->mutable_tensor()->add_string_val(strs[j]);
    [all...]
  /prebuilts/go/darwin-x86/src/net/textproto/
reader.go 472 var strs []string
475 strs = make([]string, hint)
523 if vv == nil && len(strs) > 0 {
526 // Set the capacity on strs[0] to 1, so any future append
528 vv, strs = strs[:1:1], strs[1:]
  /prebuilts/go/linux-x86/src/net/textproto/
reader.go 472 var strs []string
475 strs = make([]string, hint)
523 if vv == nil && len(strs) > 0 {
526 // Set the capacity on strs[0] to 1, so any future append
528 vv, strs = strs[:1:1], strs[1:]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowParcelTest.java 422 String[] strs = { "a1", "b2" }; local
423 parcel.writeStringArray(strs);
426 assertTrue(Arrays.equals(strs, newStrs));
  /external/elfutils/libcpu/
i386_parse.y 894 static void *strs[3];
929 if (tfind (&search, &strs[i], compare_argstring) == NULL)
934 if (tsearch (newp, &strs[i], compare_argstring) == NULL)
1182 twalk (strs[i], print_op_str);
1187 twalk (strs[i], print_op_str_idx);
1224 struct argstring **res = tfind (&search, &strs[i],
    [all...]
  /external/owasp/sanitizer/empiricism/
html-containment.js 386 function makeSet(strs) {
388 for (var i = 0, n = strs.length; i < n; ++i) {
389 s[strs[i]] = s;
  /system/extras/simpleperf/
cmd_record.cpp 554 std::vector<std::string> strs = android::base::Split(args[i], ","); local
555 if (strs[0] == "fp") {
558 } else if (strs[0] == "dwarf") {
561 if (strs.size() > 1) {
563 uint64_t size = strtoull(strs[1].c_str(), &endptr, 0);
566 << strs[1];
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
maverick.c 342 LDSTall (strs, 4, 0, 0, "f");
352 insns_LDSTall (strs), insns_LDSTall (strd),
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 905 DiCursor strs = DiCursor_INVALID; local
    [all...]

Completed in 862 milliseconds

1 23 4 5 6 7