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

1 23 4 5 6

  /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)"
  /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 {
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/nonrequiredapps/
OverlayPackagesProviderTest.java 343 private void setStringArray(int resourceId, String[] strs) {
345 .thenReturn(strs);
  /system/extras/simpleperf/
cmd_record.cpp 434 std::vector<std::string> strs = android::base::Split(args[i], ","); local
435 if (strs[0] == "fp") {
438 } else if (strs[0] == "dwarf") {
441 if (strs.size() > 1) {
443 uint64_t size = strtoull(strs[1].c_str(), &endptr, 0);
446 << strs[1];
    [all...]
cmd_report_test.cpp 169 const std::vector<std::string>& strs) {
181 for (auto& s : strs) {
environment.cpp 318 std::vector<std::string> strs = android::base::Split(tid_str, ","); local
319 for (const auto& s : strs) {
tracing.cpp 329 std::vector<std::string> strs = android::base::Split(pair.second, "\n"); local
331 for (const auto& s : strs) {
  /prebuilts/go/darwin-x86/src/net/textproto/
reader.go 472 var strs []string
475 strs = make([]string, hint)
513 if vv == nil && len(strs) > 0 {
516 // Set the capacity on strs[0] to 1, so any future append
518 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)
513 if vv == nil && len(strs) > 0 {
516 // Set the capacity on strs[0] to 1, so any future append
518 vv, strs = strs[:1:1], strs[1:]
  /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;
  /toolchain/binutils/binutils-2.25/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...]
  /frameworks/rs/
rsCppUtils.h 191 const char* rsuJoinStrings(int n, const char* const* strs);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0/
kotlin-gradle-plugin-core-1.0.0.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
py2_test_grammar.py 809 strs = ["Apple", "Banana", "Coconut"]
815 self.assertEqual([(i, s) for i in nums for s in strs],
821 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
839 check_syntax_error(self, "[i, s for i in nums for s in strs]")
py3_test_grammar.py 757 strs = ["Apple", "Banana", "Coconut"]
763 self.assertEqual([(i, s) for i in nums for s in strs],
769 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
787 check_syntax_error(self, "[i, s for i in nums for s in strs]")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_grammar.py 820 strs = ["Apple", "Banana", "Coconut"]
826 self.assertEqual([(i, s) for i in nums for s in strs],
832 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
850 check_syntax_error(self, "[i, s for i in nums for s in strs]")
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
py2_test_grammar.py 809 strs = ["Apple", "Banana", "Coconut"]
815 self.assertEqual([(i, s) for i in nums for s in strs],
821 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
839 check_syntax_error(self, "[i, s for i in nums for s in strs]")
py3_test_grammar.py 757 strs = ["Apple", "Banana", "Coconut"]
763 self.assertEqual([(i, s) for i in nums for s in strs],
769 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
787 check_syntax_error(self, "[i, s for i in nums for s in strs]")
  /external/python/cpython2/Lib/test/
test_grammar.py 848 strs = ["Apple", "Banana", "Coconut"]
854 self.assertEqual([(i, s) for i in nums for s in strs],
860 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
878 check_syntax_error(self, "[i, s for i in nums for s in strs]")
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Host.cpp 1206 SmallVector<StringRef, 8> strs; local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_grammar.py 842 strs = ["Apple", "Banana", "Coconut"]
848 self.assertEqual([(i, s) for i in nums for s in strs],
854 self.assertEqual([(i, s) for i in nums for s in [f for f in strs if "n" in f]],
872 check_syntax_error(self, "[i, s for i in nums for s in strs]")

Completed in 1022 milliseconds

1 23 4 5 6