Searched refs:_stricmp (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium_org/third_party/cld/base/
H A Dstring_util.h19 return _stricmp(s1, s2);
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglstring.h38 #define _eglstrcasecmp _stricmp
/external/e2fsprogs/include/nonunix/
H A Dconfig.h11 #define strcasecmp _stricmp
H A Dunistd.h46 #define strcasecmp _stricmp
/external/mesa3d/src/egl/main/
H A Deglstring.h38 #define _eglstrcasecmp _stricmp
/external/chromium_org/sdch/open-vcdiff/vsprojects/
H A Dconfig.h83 #define strcasecmp _stricmp
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
H A DIsac_test.cc90 if (!_stricmp("isac",codec)){
130 if (_stricmp("none", chcFile)){
137 if (_stricmp("none", chcFile)){
144 if (!_stricmp("isac", codec)){ /* ISAC */
188 if(_stricmp("none", chcFile)){
250 if (_stricmp("none", chcFile)){
254 if (!_stricmp("isac", codec)){
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcodec.cc44 return _stricmp(other.id().c_str(), id().c_str()) == 0 &&
45 _stricmp(other.param().c_str(), param().c_str()) == 0;
96 (id == codec.id) : (_stricmp(name.c_str(), codec.name.c_str()) == 0);
178 if (_stricmp(payload_name, kRedCodecName) == 0) {
181 if (_stricmp(payload_name, kUlpfecCodecName) == 0) {
184 if (_stricmp(payload_name, kRtxCodecName) == 0) {
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Dcodec_test.cc30 if (!_stricmp(codec_instance->plname, "ilbc")) {
40 return !_stricmp(codec_name, "CN") ||
41 !_stricmp(codec_name, "telephone-event") ||
42 !_stricmp(codec_name, "red");
136 if (_stricmp("opus", codec_instance_.plname)) {
152 if (!_stricmp("opus", codec_instance_.plname)) {
H A Ddtmf_test.cc77 if (!_stricmp("telephone-event", codec_instance.plname)) {
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dvoice_engine_defines.h267 #define _stricmp stricmp macro
269 #define _stricmp strcasecmp
326 #define _stricmp strcasecmp macro
/external/chromium_org/base/strings/
H A Dstring_util_win.h24 return _stricmp(s1, s2);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DStringExtras.h89 return _stricmp(s1, s2);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrcasecmp.c53 return _stricmp(s1, s2);
/external/chromium_org/third_party/smhasher/src/
H A DPlatform.h90 #define _stricmp strcasecmp macro
/external/chromium_org/third_party/boringssl/src/crypto/
H A Dmem.c162 return _stricmp(a, b);
/external/chromium_org/third_party/npapi/npspy/common/
H A Dplugload.cpp169 if(0 == _stricmp(mimetype, type))
H A Depmanager.cpp155 if(0 == _stricmp(eps->mimetype, mimetype))
214 if(0 == _stricmp(eps->mimetype, pluginType))
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_common.h49 #define safe_stricmp(str1, str2) _stricmp(((str1==NULL)?"<NULL>":str1), ((str2==NULL)?"<NULL>":str2))
/external/chromium_org/third_party/skia/tools/
H A Dwin_dbghelp.cpp207 if (i >= 4 && _stricmp(vargs0 - 4, ".exe") == 0) {
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dutil.h111 # define yasm__strcasecmp(x, y) _stricmp(x, y)
/external/skia/tools/
H A Dwin_dbghelp.cpp207 if (i >= 4 && _stricmp(vargs0 - 4, ".exe") == 0) {
/external/chromium_org/third_party/webrtc/base/
H A Dstringutils.h112 inline int _stricmp(const char* s1, const char* s2) { function
239 return _stricmp(s1, s2);
H A Dhttpcommon.cc46 if (_stricmp(needle.c_str(), haystack[index]) == 0) {
202 return (_stricmp(connection.c_str(), "Keep-Alive") == 0);
756 if (_stricmp(auth_method.c_str(), "basic") == 0) {
782 if (_stricmp(auth_method.c_str(), "digest") == 0) {
857 bool want_negotiate = (_stricmp(auth_method.c_str(), "negotiate") == 0);
858 bool want_ntlm = (_stricmp(auth_method.c_str(), "ntlm") == 0);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtcvoiceengine.h522 if (_stricmp(codec.plname, "telephone-event") == 0 ||
523 _stricmp(codec.plname, "audio/telephone-event") == 0 ||
524 _stricmp(codec.plname, "CN") == 0 ||
525 _stricmp(codec.plname, "red") == 0 ) {
582 _stricmp(it->plname, codec.plname) != 0) {
640 if (_stricmp(channels_[channel]->send_codec.plname, "opus") != 0) {
656 if (_stricmp(channels_[channel]->send_codec.plname, "opus") != 0) {

Completed in 8008 milliseconds

123