HomeSort by relevance Sort by last modified time
    Searched full:strs (Results 26 - 50 of 78) sorted by null

12 3 4

  /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;
  /packages/inputmethods/LatinIME/native/jni/src/
defines.h 147 char **strs = backtrace_symbols(callstack, frames); local
153 AKLOGI("%s", strs[i]);
155 free(strs);
  /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)"
  /external/lldb/source/Host/linux/
Host.cpp 474 char** strs = ::backtrace_symbols (&frame_buffer[0], num_frames); local
475 if (strs)
479 strm.Printf("%s\n", strs[i]);
480 ::free (strs);
  /external/icu/icu4c/source/i18n/
filteredbrk.cpp 331 LocalUResourceBundlePointer strs;
334 strs.adoptInstead(ures_getNextResource(breaks.getAlias(), strs.orphan(), &subStatus));
335 if(strs.isValid() && U_SUCCESS(subStatus)) {
336 UnicodeString str(ures_getUnicodeString(strs.getAlias(), &status));
339 } while (strs.isValid() && U_SUCCESS(subStatus));
  /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/javassist/src/main/javassist/
CtField.java 553 * <code>String[] strs</code> - the character strings specified
558 * receives only <code>strs</code>.
610 * <code>String[] strs</code> - the character strings specified
618 * only <code>strs</code>.
671 * <code>String[] strs</code> - the character strings specified
676 * receive only <code>strs</code>.
739 * <code>String[] strs</code> - the character strings specified
747 * receive only <code>strs</code>.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
Folders.py 19 kSystemTrashFolderType = FOUR_CHAR_CODE('strs')
  /external/elfutils/src/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/marisa-trie/tools/
marisa-benchmark.cc 58 " -i, --predict-strs restore key strings in predictive searches\n"
337 { "predict-strs", 0, NULL, 'i' },
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-benchmark.cc 58 " -i, --predict-strs restore key strings in predictive searches\n"
337 { "predict-strs", 0, NULL, 'i' },
  /frameworks/rs/
rsCppUtils.h 284 const char* rsuJoinStrings(int n, const char* const* strs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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]")
  /prebuilts/python/darwin-x86/2.7.5/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]")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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]")
  /prebuilts/python/linux-x86/2.7.5/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]")
  /external/owasp/sanitizer/benchmark-data/
Yahoo!.html     [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
TestFmwk.java 1807 String strs[] = new String[array.length]; local
1826 String strs[] = new String[array.length]; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 904 DiCursor strs = DiCursor_INVALID; local
    [all...]
  /external/icu/icu4c/source/common/
uloc.cpp 2285 char **strs; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
multidict.py 216 The key/value contents are assumed to be ``str``/``strs`` or

Completed in 1077 milliseconds

12 3 4