Searched refs:strstr (Results 1 - 25 of 254) sorted by relevance

1234567891011

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DShader.cpp239 const char *input = strstr(mHlsl, "// Varyings") + 12;
253 char *array = strstr(varyingName, "[");
264 input = strstr(input, ";") + 2;
267 mUsesFragCoord = strstr(mHlsl, "GL_USES_FRAG_COORD") != NULL;
268 mUsesFrontFacing = strstr(mHlsl, "GL_USES_FRONT_FACING") != NULL;
269 mUsesPointSize = strstr(mHlsl, "GL_USES_POINT_SIZE") != NULL;
270 mUsesPointCoord = strstr(mHlsl, "GL_USES_POINT_COORD") != NULL;
469 const char *input = strstr(mHlsl, "// Attributes") + 14;
485 input = strstr(input, ";") + 2;
/external/chromium/testing/gtest/test/
H A Dgtest_throw_on_failure_ex_test.cc67 if (strstr(e.what(), "Expected failure") != NULL)
/external/gtest/test/
H A Dgtest_throw_on_failure_ex_test.cc67 if (strstr(e.what(), "Expected failure") != NULL)
/external/oprofile/libutil/
H A Dop_string.c33 return strstr(str, prefix) == str;
/external/protobuf/gtest/test/
H A Dgtest_throw_on_failure_ex_test.cc67 if (strstr(e.what(), "Expected failure") != NULL)
/external/netperf/
H A Dnetsh.c365 if (strstr(temp,"6")) {
369 if (strstr(temp,"inet") ||
370 strstr(temp,"4")) {
373 if (strstr(temp,"unspec") ||
374 strstr(temp,"0")) {
960 /* we use a series of strstr's here because not everyone has
962 if ((strstr(test_name,"RR")) ||
963 (strstr(test_name,"rr")) ||
964 (strstr(test_name,"Rr")) ||
965 (strstr(test_nam
[all...]
/external/webkit/Tools/WebKitTestRunner/
H A DTestInvocation.cpp54 if (strstr(pathOrURL, "http://") || strstr(pathOrURL, "https://") || strstr(pathOrURL, "file://"))
119 bool isSVGW3CTest = strstr(pathOrURL, "svg/W3C-SVG-1.1") || strstr(pathOrURL, "svg\\W3C-SVG-1.1");
129 return strstr(pathOrURL, "inspector/") || strstr(pathOrURL, "inspector\\");
/external/e2fsprogs/intl/
H A Dplural-exp.c107 plural = strstr (nullentry, "plural=");
108 nplurals = strstr (nullentry, "nplurals=");
/external/libvpx/vpx_ports/
H A Darm_cpudetect.c133 p=strstr(buf, " edsp");
139 p = strstr(buf, " neon");
/external/skia/src/ports/
H A DSkFontHost_FONTPATH.cpp171 if (strstr(target, "sans") || strstr(target, "Sans"))
176 if (strstr(target, "serif") || strstr(target, "Serif"))
181 if (strstr(target, "mono") || strstr(target, "Mono"))
/external/wpa_supplicant/wpa_gui/
H A Dnetworkconfig.ui.h325 if (strstr(reply, "RSN") || strstr(reply, "WPA2"))
327 else if (strstr(reply, "WPA"))
336 if (strstr(reply, "WPA-EAP"))
338 else if (strstr(reply, "WPA-PSK"))
340 else if (strstr(reply, "IEEE8021X")) {
350 if (strstr(reply, "CCMP"))
352 else if (strstr(reply, "TKIP"))
354 else if (strstr(reply, "WEP"))
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Dnetworkconfig.ui.h339 if (strstr(reply, "RSN") || strstr(reply, "WPA2"))
341 else if (strstr(reply, "WPA"))
350 if (strstr(reply, "WPA-EAP"))
352 else if (strstr(reply, "WPA-PSK"))
354 else if (strstr(reply, "IEEE8021X")) {
364 if (strstr(reply, "CCMP") && auth != AUTH_NONE)
366 else if (strstr(reply, "TKIP"))
368 else if (strstr(reply, "WEP"))
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui/
H A Dnetworkconfig.ui.h339 if (strstr(reply, "RSN") || strstr(reply, "WPA2"))
341 else if (strstr(reply, "WPA"))
350 if (strstr(reply, "WPA-EAP"))
352 else if (strstr(reply, "WPA-PSK"))
354 else if (strstr(reply, "IEEE8021X")) {
364 if (strstr(reply, "CCMP") && auth != AUTH_NONE)
366 else if (strstr(reply, "TKIP"))
368 else if (strstr(reply, "WEP"))
/external/quake/quake/src/QW/qwfwd/
H A Dmisc.c297 if (strstr (key, "\\"))
387 if (strstr (key, "\\") || strstr (value, "\\") )
392 if (strstr (key, "\"") || strstr (value, "\"") )
/external/bluetooth/bluez/test/
H A Dattest.c65 if (strstr(buf, "\r\nOK") != NULL)
67 if (strstr(buf, "\r\nERROR") != NULL)
69 if (strstr(buf, "\r\nCONNECT") != NULL)
/external/quake/quake/src/QW/server/
H A Dsv_ccmds.c660 if (strstr(dir, "..") || strstr(dir, "/")
661 || strstr(dir, "\\") || strstr(dir, ":") )
756 if (strstr(dir, "..") || strstr(dir, "/")
757 || strstr(dir, "\\") || strstr(dir, ":") )
/external/valgrind/main/coregrind/m_demangle/
H A Dvg_libciface.h66 #define strstr(_hh,_nn) VG_(strstr)((_hh),(_nn)) macro
/external/blktrace/btt/
H A Ddevmap.c35 if (strstr(line, "Device") != NULL)
/external/bluetooth/bluez/src/
H A Doui.c71 off = strstr(map, oui);
/external/chromium/testing/gtest/src/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker);
/external/freetype/include/freetype/config/
H A Dftstdlib.h90 #define ft_strstr strstr
/external/gtest/src/
H A Dgtest-test-part.cc50 const char* const stack_trace = strstr(message, internal::kStackTraceMarker);
/external/kernel-headers/original/linux/
H A Dstring.h61 extern char * strstr(const char *,const char *);
/external/llvm/utils/unittest/googletest/
H A Dgtest-test-part.cc52 const char* const stack_trace = strstr(message, internal::kStackTraceMarker);
/external/oprofile/daemon/
H A Dopd_pipe.c83 if (strstr(line, "do_jitconv") != NULL) {

Completed in 4574 milliseconds

1234567891011