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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Transforms/InstCombine/
strstr-1.ll 1 ; Test that the strstr library call simplifier works correctly.
12 declare i8* @strstr(i8*, i8*)
14 ; Check strstr(str, "") -> str.
19 %ret = call i8* @strstr(i8* %str, i8* %pat)
24 ; Check strstr(str, "a") -> strchr(str, 'a').
29 %ret = call i8* @strstr(i8* %str, i8* %pat)
34 ; Check strstr("abcde", "bcd") -> "abcde" + 1.
40 %ret = call i8* @strstr(i8* %str, i8* %pat)
45 ; Check strstr(str, str) -> str.
49 %ret = call i8* @strstr(i8* %str, i8* %str
    [all...]
strstr-2.ll 1 ; Test that the strstr library call simplifier works correctly.
9 declare i8 @strstr(i8*, i8*)
14 %ret = call i8 @strstr(i8* %str, i8* %pat)
15 ; CHECK-NEXT: call i8 @strstr
  /external/chromium_org/native_client_sdk/src/libraries/xray/
parsesymbols.c 35 parsed_symbol = strstr(line, symbol_text);
36 newln = strstr(parsed_symbol, "\n");
61 if (line == strstr(line, " .text ")) {
65 if (line == strstr(line, " .gnu.linkonce.t.")) {
70 if (line == strstr(line, " .text.")) {
75 if (line == strstr(line, " 0x")) {
  /system/extras/tests/bionic/libc/glibc/assert/
test-assert.c 76 if (!strstr (buf, "1 == 2"))
80 if (strstr (buf, "1 == 1"))
84 if (strstr (buf, "2 == 3"))
  /external/chromium_org/third_party/angle/src/libGLESv2/
Shader.cpp 273 const char *input = strstr(mHlsl, "// Varyings") + 12;
287 char *array = strstr(varyingName, "[");
298 input = strstr(input, ";") + 2;
301 mUsesMultipleRenderTargets = strstr(mHlsl, "GL_USES_MRT") != NULL;
302 mUsesFragColor = strstr(mHlsl, "GL_USES_FRAG_COLOR") != NULL;
303 mUsesFragData = strstr(mHlsl, "GL_USES_FRAG_DATA") != NULL;
304 mUsesFragCoord = strstr(mHlsl, "GL_USES_FRAG_COORD") != NULL;
305 mUsesFrontFacing = strstr(mHlsl, "GL_USES_FRONT_FACING") != NULL;
306 mUsesPointSize = strstr(mHlsl, "GL_USES_POINT_SIZE") != NULL;
307 mUsesPointCoord = strstr(mHlsl, "GL_USES_POINT_COORD") != NULL
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cstring 49 const char* strstr(const char* s1, const char* s2);
50 char* strstr( char* s1, const char* s2);
94 using ::strstr;
102 inline _LIBCPP_INLINE_VISIBILITY char* strstr( char* __s1, const char* __s2) {return ::strstr(__s1, __s2);}
  /frameworks/native/libs/gui/
SyncFeatures.cpp 46 if (strstr(exts, "EGL_ANDROID_native_fence_sync")) {
52 if (strstr(exts, "EGL_KHR_fence_sync")) {
55 if (strstr(exts, "EGL_KHR_wait_sync")) {
  /external/compiler-rt/BlocksRuntime/tests/
testfilerunner.m 107 char *where = strstr(got, lookfor);
172 char *where = strstr(got, error);
419 line = strstr(line, "rdar:"); // returns beginning
428 line = strstr(line, "-l");
433 if (strstr(endp, "-l")) {
442 if (strstr(line, "GC")) item.hasGC = true;
443 if (strstr(line, "RR")) item.hasRR = true;
444 if (strstr(line, "C++")) item.hasCPlusPlus = true;
445 if (strstr(line, "-C99")) {
448 if (strstr(line, "64")) item.wants64 = true
    [all...]
  /external/oprofile/libutil/
op_string.c 33 return strstr(str, prefix) == str;
  /external/bison/m4/
m4.m4 18 # Also avoid versions of m4 that trigger strstr bugs.
29 # Root out GNU M4 1.4.15 with buggy false negative replacement strstr.
31 # false positive strstr.
37 :12-:12-:12-:12-:12-:12-:12-:12-),-1,,strstr-bug2)'
45 GNU M4 1.4.15 uses a buggy replacement strstr on some systems.
46 Glibc 2.9 - 2.12 and GNU M4 1.4.11 - 1.4.15 have another strstr bug.])])])
  /system/core/libion/
ion_test.c 228 map_flags |= strstr(optarg, "PROT_EXEC") ?
230 map_flags |= strstr(optarg, "PROT_READ") ?
232 map_flags |= strstr(optarg, "PROT_WRITE") ?
234 map_flags |= strstr(optarg, "PROT_NONE") ?
239 prot |= strstr(optarg, "MAP_PRIVATE") ?
241 prot |= strstr(optarg, "MAP_SHARED") ?
  /bootable/recovery/tools/ota/
check-lost+found.c 130 if (strstr(line, "yaffs: dev is")) in_yaffs = 1;
133 strstr(line, "yaffs") ||
134 strstr(line, "mtd") ||
135 strstr(line, "msm_nand")) {
139 if (strstr(line, "yaffs_read_super: isCheckpointed")) in_yaffs = 0;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-boost.c 126 if (strstr (line, "REG_BASIC"))
130 if (strstr (line, "REG_ICASE"))
132 if (strstr (line, "REG_NEWLINE"))
135 if (strstr (line, "REG_NOTBOL"))
137 if (strstr (line, "REG_NOTEOL"))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cstring 70 #undef strstr
97 using ::strstr;
117 strstr(char* __s1, const char* __s2)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cstring 70 #undef strstr
97 using ::strstr;
117 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
cstring 70 #undef strstr
97 using ::strstr;
117 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
cstring 70 #undef strstr
97 using ::strstr;
117 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
cstring 70 #undef strstr
97 using ::strstr;
117 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
cstring 69 #undef strstr
98 using ::strstr;
118 strstr(char* __s1, const char* __s2)
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
cstring 67 #undef strstr
96 using ::strstr;
116 strstr(char* __s1, const char* __s2)

Completed in 1203 milliseconds

1 2 3 4 5 6 7 8 91011>>