/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/safety/ |
H A D | tst.shortstr.d | 65 this->str1 = "........................................."; 66 printf("%d\n", index(this->str, this->str1)); 71 printf("%d\n", rindex(this->str, this->str1));
|
/vbox/src/libs/xpcom18a4/xpcom/build/ |
H A D | dlldeps.cpp | 155 nsAutoString str1; local 156 str1.AssignWithConversion(nsnull, 0); 158 ToNewUnicode(str1); 160 ToNewCString(str1); 188 NS_StringGetData(str1, nsnull, nsnull); 189 NS_StringSetData(str1, nsnull, 0); 190 NS_StringSetDataRange(str1, 0, 0, nsnull, 0); 191 NS_StringCopy(str1, str1); 200 NS_UTF16ToCString(str1, NS_CSTRING_ENCODING_ASCI [all...] |
/vbox/src/VBox/GuestHost/OpenGL/util/ |
H A D | string.c | 48 int crStrcmp( const char *str1, const char *str2 ) argument 50 while (*str1 && *str2) 52 if (*str1 != *str2) 56 str1++; str2++; 58 return (*str1 - *str2); 61 int crStrncmp( const char *str1, const char *str2, int n ) argument 64 while (*str1 && *str2 && i < n) 66 if (*str1 != *str2) 70 str1++; str2++; i++; 73 return (*str1 111 crStrcasecmp( const char *str1, const char *str2 ) argument 146 crStrjoin( const char *str1, const char *str2 ) argument 159 crStrjoin3( const char *str1, const char *str2, const char *str3 ) argument [all...] |
/vbox/src/libs/libxml2-2.6.31/include/libxml/ |
H A D | xmlstring.h | 64 xmlStrcmp (const xmlChar *str1, 67 xmlStrncmp (const xmlChar *str1, 71 xmlStrcasecmp (const xmlChar *str1, 74 xmlStrncasecmp (const xmlChar *str1, 78 xmlStrEqual (const xmlChar *str1, 94 xmlStrncatNew (const xmlChar *str1,
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | sortkey.c | 168 static inline int compare_unicode_weights(int flags, const WCHAR *str1, int len1, argument 184 if (get_char_typeW(*str1) & (C1_PUNCT | C1_SPACE)) 186 str1++; 204 if (*str1 == '-' || *str1 == '\'') 208 str1++; 221 ce1 = collation_table[collation_table[*str1 >> 8] + (*str1 & 0xff)]; 227 ret = *str1 - *str2; 231 str1 239 compare_diacritic_weights(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2) argument 288 compare_case_weights(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2) argument 343 wine_compare_string(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2) argument [all...] |
H A D | string.c | 40 int strcmpiW( const WCHAR *str1, const WCHAR *str2 ) argument 44 int ret = tolowerW(*str1) - tolowerW(*str2); 45 if (ret || !*str1) return ret; 46 str1++; 51 int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ) argument 54 for ( ; n > 0; n--, str1++, str2++) 55 if ((ret = tolowerW(*str1) - tolowerW(*str2)) || !*str1) break; 59 int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument 62 for ( ; n > 0; n--, str1 [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/ |
H A D | unicode.h | 109 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 113 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 114 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 115 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 223 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 225 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 226 return *str1 - *str2; 229 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, cons argument [all...] |
H A D | test.h | 81 static inline int winetest_strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 83 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 84 return *str1 - *str2;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/ |
H A D | unicode.h | 109 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 113 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 114 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 115 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 223 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 225 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 226 return *str1 - *str2; 229 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, cons argument [all...] |
/vbox/src/libs/libxml2-2.6.31/ |
H A D | xmlstring.c | 123 * @str1: the first xmlChar * 132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { argument 135 if (str1 == str2) return(0); 136 if (str1 == NULL) return(-1); 139 tmp = *str1++ - *str2; 147 * @str1: the first xmlChar * 157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { argument 158 if (str1 == str2) return(1); 159 if (str1 == NULL) return(0); 162 if (*str1 206 xmlStrncmp(const xmlChar *str1, const xmlChar *str2, int len) argument 271 xmlStrcasecmp(const xmlChar *str1, const xmlChar *str2) argument 296 xmlStrncasecmp(const xmlChar *str1, const xmlChar *str2, int len) argument 483 xmlStrncatNew(const xmlChar *str1, const xmlChar *str2, int len) argument [all...] |
H A D | error.c | 401 if ((domain == XML_FROM_XPATH) && (err->str1 != NULL) && 403 (err->int1 < xmlStrlen((const xmlChar *)err->str1))) { 407 channel(data, "%s\n", err->str1); 428 * @str1: extra string info 444 const char *file, int line, const char *str1, 579 if (str1 != NULL) 580 to->str1 = (char *) xmlStrdup((const xmlChar *) str1); 872 if (err->str1 != NULL) 873 xmlFree(err->str1); 441 __xmlRaiseError(xmlStructuredErrorFunc schannel, xmlGenericErrorFunc channel, void *data, void *ctx, void *nod, int domain, int code, xmlErrorLevel level, const char *file, int line, const char *str1, const char *str2, const char *str3, int int1, int col, const char *msg, ...) argument 946 char *message, *file, *str1, *str2, *str3; local [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/ |
H A D | unicode.h | 110 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 114 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 115 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 116 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 243 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ); 244 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 246 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 247 return *str1 251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument [all...] |
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/ |
H A D | unicode.h | 110 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 114 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 115 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 116 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 243 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ); 244 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 246 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 247 return *str1 251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/ |
H A D | unicode.h | 109 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 113 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 114 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 115 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 242 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ); 243 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 245 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 246 return *str1 250 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument [all...] |
H A D | test.h | 79 static inline int winetest_strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 81 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 82 return *str1 - *str2;
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/ |
H A D | unicode.h | 110 extern int wine_compare_string( int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2 ); 114 extern int strcmpiW( const WCHAR *str1, const WCHAR *str2 ); 115 extern int strncmpiW( const WCHAR *str1, const WCHAR *str2, int n ); 116 extern int memicmpW( const WCHAR *str1, const WCHAR *str2, int n ); 243 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ); 244 WINE_UNICODE_INLINE int strcmpW( const WCHAR *str1, const WCHAR *str2 ) argument 246 while (*str1 && (*str1 == *str2)) { str1++; str2++; } 247 return *str1 251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument [all...] |
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/slang/ |
H A D | slang_utility.h | 35 #define slang_string_compare(str1, str2) _mesa_strcmp (str1, str2)
|
/vbox/src/VBox/GuestHost/OpenGL/include/ |
H A D | cr_string.h | 18 DECLEXPORT(int) crStrcmp( const char *str1, const char *str2 ); 19 DECLEXPORT(int) crStrncmp( const char *str1, const char *str2, int n ); 20 DECLEXPORT(int) crStrcasecmp( const char *str1, const char *str2 );
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/ |
H A D | string.h | 140 static inline int strncasecmp(const char *str1, const char *str2, size_t n) { return _strnicmp(str1, str2, n); } argument 148 static inline int wcsicoll(const wchar_t* str1, const wchar_t* str2) { return _wcsicoll(str1, str2); } argument 150 static inline int wcsnicmp(const wchar_t* str1, const wchar_t* str2, size_t n) { return _wcsnicmp(str1, str2, n); } argument
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/ |
H A D | string.h | 125 static inline int strncasecmp(const char *str1, const char *str2, size_t n) { return _strnicmp(str1, str2, n); } argument 133 static inline int wcsicoll(const wchar_t* str1, const wchar_t* str2) { return _wcsicoll(str1, str2); } argument 135 static inline int wcsnicmp(const wchar_t* str1, const wchar_t* str2, size_t n) { return _wcsnicmp(str1, str2, n); } argument
|
/vbox/src/libs/xpcom18a4/java/src/org/mozilla/xpcom/ |
H A D | VersionComparator.java | 192 private int compareString(String str1, String str2) { argument 194 if (str1 == null) { 202 return str1.compareTo(str2);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/ |
H A D | mdmac.c | 586 int strcmpcore(const char *str1, const char *str2, int caseSensitive) argument 592 currentChar1 = *str1; 611 str1++; 619 int strcmp(const char *str1, const char *str2) argument 621 return strcmpcore(str1, str2, true); 624 int strcasecmp(const char *str1, const char *str2) argument 626 return strcmpcore(str1, str2, false);
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstEnv.cpp | 46 #define CHECK_STR(str1, str2) do { if (strcmp(str1, str2)) { RTPrintf("tstEnv: error line %d: '%s' != '%s' (*)\n", __LINE__, str1, str2); cErrors++; } } while (0)
|
H A D | tstIprtMiniString.cpp | 400 #define CHECK_EQUAL(str1, str2) \ 403 RTTESTI_CHECK(strlen((str1).c_str()) == (str1).length()); \ 404 RTTESTI_CHECK((str1).length() == (str2).length()); \ 405 RTTESTI_CHECK(mymemcmp((str1).c_str(), (str2).c_str(), (str2).length() + 1) == 0); \
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/ |
H A D | xptiWorkingSet.cpp | 99 const char* str1 = ((xptiHashEntry*)entry)->value->GetTheName(); local 101 return str1 == str2 || 0 == PL_strcmp(str1, str2);
|