HomeSort by relevance Sort by last modified time
    Searched full:strchr (Results 1 - 25 of 1875) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
strchr.vgtest 1 prog: strchr
4 stderr_filter_args: strchr.c
strchr.stderr.exp3 2 at 0x........: strchr (vg_replace_strmem.c:...)
3 by 0x........: main (strchr.c:15)
6 at 0x........: strchr (vg_replace_strmem.c:...)
7 by 0x........: main (strchr.c:15)
11 by 0x........: main (strchr.c:16)
strchr.stderr.exp 3 by 0x........: main (strchr.c:15)
7 by 0x........: main (strchr.c:15)
11 by 0x........: main (strchr.c:16)
strchr.c 4 // The issue here is the same one in memcmptest -- 'strchr' and 'index' are
15 a = strchr (s, '1');
filter_strchr 5 sed -e "s/: strchr (vg_replace_strmem.c:/: index (vg_replace_strmem.c:/;
strchr.stderr.exp2 3 by 0x........: main (strchr.c:15)
7 by 0x........: main (strchr.c:15)
11 by 0x........: main (strchr.c:16)
15 by 0x........: main (strchr.c:16)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_returnfuncptrs.py 11 # The get_strchr function returns a *pointer* to the C strchr function.
15 strchr = get_strchr()
16 self.assertEqual(strchr("abcdef", "b"), "bcdef")
17 self.assertEqual(strchr("abcdef", "x"), None)
18 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
19 self.assertRaises(TypeError, strchr, "abcdef")
29 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(addr)
30 self.assertTrue(strchr("abcdef", "b"), "bcdef")
31 self.assertEqual(strchr("abcdef", "x"), None)
32 self.assertRaises(ArgumentError, strchr, "abcdef", 3
    [all...]
test_stringptr.py 45 strchr = lib.my_strchr
46 strchr.restype = c_char_p
50 strchr.argtypes = c_char_p, c_char
51 self.assertEqual(strchr("abcdef", "c"), "cdef")
52 self.assertEqual(strchr(c_buffer("abcdef"), "c"), "cdef")
56 strchr.argtypes = POINTER(c_char), c_char
58 self.assertEqual(strchr(buf, "c"), "cdef")
59 self.assertEqual(strchr("abcdef", "c"), "cdef")
62 # to strchr is no longer valid after the function returns!
65 strchr.restype = POINTER(c_char
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_returnfuncptrs.py 11 # The get_strchr function returns a *pointer* to the C strchr function.
15 strchr = get_strchr()
16 self.assertEqual(strchr("abcdef", "b"), "bcdef")
17 self.assertEqual(strchr("abcdef", "x"), None)
18 self.assertRaises(ArgumentError, strchr, "abcdef", 3)
19 self.assertRaises(TypeError, strchr, "abcdef")
29 strchr = CFUNCTYPE(c_char_p, c_char_p, c_char)(addr)
30 self.assertTrue(strchr("abcdef", "b"), "bcdef")
31 self.assertEqual(strchr("abcdef", "x"), None)
32 self.assertRaises(ArgumentError, strchr, "abcdef", 3
    [all...]
test_stringptr.py 45 strchr = lib.my_strchr
46 strchr.restype = c_char_p
50 strchr.argtypes = c_char_p, c_char
51 self.assertEqual(strchr("abcdef", "c"), "cdef")
52 self.assertEqual(strchr(c_buffer("abcdef"), "c"), "cdef")
56 strchr.argtypes = POINTER(c_char), c_char
58 self.assertEqual(strchr(buf, "c"), "cdef")
59 self.assertEqual(strchr("abcdef", "c"), "cdef")
62 # to strchr is no longer valid after the function returns!
65 strchr.restype = POINTER(c_char
    [all...]
  /external/llvm/test/Transforms/InstCombine/
strchr-1.ll 1 ; Test that the strchr library call simplifier works correctly.
10 declare i8* @strchr(i8*, i32)
14 ; CHECK-NOT: call i8* @strchr
18 %dst = call i8* @strchr(i8* %str, i32 119)
25 ; CHECK-NOT: call i8* @strchr
29 %dst = call i8* @strchr(i8* %str, i32 119)
36 ; CHECK-NOT: call i8* @strchr
40 %dst = call i8* @strchr(i8* %src, i32 0)
47 ; CHECK-NOT: call i8* @strchr
51 %dst = call i8* @strchr(i8* %src, i32 %chr
    [all...]
strchr-2.ll 1 ; Test that the strchr libcall simplifier works correctly.
10 declare i8 @strchr(i8*, i32)
14 ; CHECK: call i8 @strchr
18 %dst = call i8 @strchr(i8* %str, i32 119)
PR7357.ll 8 ; CHECK: call arm_aapcscc i8* @strchr
11 %c = call arm_aapcscc i8* @strchr(i8* getelementptr ([11 x i8]* @.str1, i32 0,
17 declare arm_aapcscc i8* @strchr(i8*, i32) nounwind readonly
  /system/core/libcutils/
cpu_info.c 47 chp = strchr(chp, ':');
60 whitespace = strchr(chp, ' ');
63 whitespace = strchr(chp, '\t');
66 whitespace = strchr(chp, '\r');
69 whitespace = strchr(chp, '\n');
  /external/llvm/test/Transforms/GVN/
calls-readonly.ll 2 ; Should delete the second call to strlen even though the intervening strchr call exists.
19 %3 = tail call i8* @strchr(i8* %Q, i32 97) ; <i8*> [#uses=1]
29 declare i8* @strchr(i8*, i32) nounwind readonly
  /bionic/libc/arch-arm64/denver64/
denver64.mk 8 arch-arm64/generic/bionic/strchr.S \
  /bionic/libc/arch-arm64/generic/
generic.mk 8 arch-arm64/generic/bionic/strchr.S \
  /external/chromium_org/third_party/skia/src/svg/
SkSVGUse.cpp 26 const char* start = strchr(f_xlink_href.c_str(), '#') + 1;
  /external/deqp/framework/delibs/deutil/
deCommandLine.c 47 char strChr;
63 strChr = 0;
75 if (strChr != 0 && c == '\\')
86 else if (strChr != 0 && c == strChr)
89 strChr = 0;
91 else if (strChr == 0 && (c == '"' || c == '\''))
94 strChr = c;
96 else if (c == ' ' && strChr == 0)
  /external/skia/src/svg/
SkSVGUse.cpp 26 const char* start = strchr(f_xlink_href.c_str(), '#') + 1;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-rxspencer.c 52 char *p, *end = strchr (str, '\0') + 1;
127 if (strchr (letters, *src))
153 if (!in_class && strchr (letters, *src))
157 if (!in_class && *src == '[' && strchr (":.=", src[1]))
159 else if (in_class && *src == ']' && strchr (":.=", src[-1]))
301 p = strchr (matches, ',');
370 if (!strchr (pattern, 'a') && !strchr (string, 'a')
371 && !strchr (pattern, 'A') && !strchr (string, 'A')
    [all...]
  /external/iptables/extensions/
libip6t_DNAT.c 56 start = strchr(arg, '[');
60 colon = strchr(arg, ':');
61 if (colon && strchr(colon+1, ':'))
66 end = strchr(start, ']');
72 colon = strchr(end + 1, ':');
89 error = strchr(colon+1, ':');
94 dash = strchr(colon, '-');
122 dash = strchr(start, '-');
libip6t_SNAT.c 56 start = strchr(arg, '[');
60 colon = strchr(arg, ':');
61 if (colon && strchr(colon+1, ':'))
66 end = strchr(start, ']');
72 colon = strchr(end + 1, ':');
89 error = strchr(colon+1, ':');
94 dash = strchr(colon, '-');
122 dash = strchr(start, '-');
  /external/oprofile/libpopt/
findme.c 22 if (strchr(argv0, '/'))
35 if ((chptr = strchr(start, ':')))
  /frameworks/base/tools/aapt/
AaptUtil.cpp 30 q = strchr(p, sep);
48 q = strchr(p, sep);

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>