Searched defs:str2 (Results 1 - 25 of 31) sorted by relevance

12

/vbox/src/libs/xpcom18a4/xpcom/build/
H A Ddlldeps.cpp157 nsCAutoString str2; local
159 ToNewUnicode(str2);
161 ToNewCString(str2);
181 NS_CStringGetData(str2, nsnull, nsnull);
182 NS_CStringSetData(str2, nsnull, 0);
183 NS_CStringSetDataRange(str2, 0, 0, nsnull, 0);
184 NS_CStringCopy(str2, str2);
200 NS_UTF16ToCString(str1, NS_CSTRING_ENCODING_ASCII, str2);
201 NS_CStringToUTF16(str2, NS_CSTRING_ENCODING_ASCI
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dstring.h140 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 Dstring.h125 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 DVersionComparator.java192 private int compareString(String str1, String str2) { argument
195 return (str2 != null) ? 1 : 0;
198 if (str2 == null) {
202 return str1.compareTo(str2);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dsortkey.c169 const WCHAR *str2, int len2)
190 if (get_char_typeW(*str2) & (C1_PUNCT | C1_SPACE))
192 str2++;
206 if (*str2 != '-' && *str2 != '\'')
213 else if (*str2 == '-' || *str2 == '\'')
215 str2++;
222 ce2 = collation_table[collation_table[*str2 >> 8] + (*str2
168 compare_unicode_weights(int flags, const WCHAR *str1, int len1, const WCHAR *str2, int len2) argument
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 Dstring.c40 int strcmpiW( const WCHAR *str1, const WCHAR *str2 )
44 int ret = tolowerW(*str1) - tolowerW(*str2);
47 str2++;
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++, str2++)
63 if ((ret = tolowerW(*str1) - tolowerW(*str2))) break;
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dunicode.h110 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 )
246 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
247 return *str1 - *str2;
250 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, in
251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dunicode.h109 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 )
225 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
226 return *str1 - *str2;
229 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
232 while ((--n > 0) && *str1 && (*str1 == *str2)) { str
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dunicode.h110 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 )
246 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
247 return *str1 - *str2;
250 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, in
251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dunicode.h109 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 )
225 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
226 return *str1 - *str2;
229 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
232 while ((--n > 0) && *str1 && (*str1 == *str2)) { str
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dunicode.h109 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 )
245 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
246 return *str1 - *str2;
249 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, in
250 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Derror.c429 * @str2: extra string info
445 const char *str2, const char *str3, int int1, int col,
581 if (str2 != NULL)
582 to->str2 = (char *) xmlStrdup((const xmlChar *) str2);
874 if (err->str2 != NULL)
875 xmlFree(err->str2);
946 char *message, *file, *str1, *str2, *str3; local
954 str2 = (char *) xmlStrdup ((xmlChar *) from->str2);
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
[all...]
H A Dxmlstring.c124 * @str2: the second xmlChar *
132 xmlStrcmp(const xmlChar *str1, const xmlChar *str2) { argument
135 if (str1 == str2) return(0);
137 if (str2 == NULL) return(1);
139 tmp = *str1++ - *str2;
141 } while (*str2++ != 0);
148 * @str2: the second xmlChar *
157 xmlStrEqual(const xmlChar *str1, const xmlChar *str2) { argument
158 if (str1 == str2) return(1);
160 if (str2
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 DparserInternals.c133 * @str2: an string info
139 const char *msg, const xmlChar * str1, const xmlChar * str2)
148 NULL, 0, (const char *) str1, (const char *) str2,
149 NULL, 0, 0, msg, str1, str2);
1753 if (ctxt->lastError.str2 != NULL)
1754 xmlFree(ctxt->lastError.str2);
138 __xmlErrEncoding(xmlParserCtxtPtr ctxt, xmlParserErrors xmlerr, const char *msg, const xmlChar * str1, const xmlChar * str2) argument
H A DSAX2.c70 * @str2: extra data
76 const char *msg, const char *str1, const char *str2)
91 (const char *) str2, NULL, 0, 0,
92 msg, (const char *) str1, (const char *) str2);
99 (const char *) str2, NULL, 0, 0,
100 msg, (const char *) str1, (const char *) str2);
110 * @str2: an error string
116 const char *msg, const xmlChar *str1, const xmlChar *str2)
125 (const char *) str1, (const char *) str2,
126 NULL, 0, 0, msg, str1, str2);
75 xmlErrValid(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const char *str1, const char *str2) argument
115 xmlFatalErrMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, const xmlChar *str2) argument
171 xmlNsErrMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, const xmlChar *str2) argument
195 xmlNsWarnMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, const xmlChar *str2) argument
[all...]
H A Dc14n.c386 xmlC14NStrEqual(const xmlChar *str1, const xmlChar *str2) { argument
387 if (str1 == str2) return(1);
388 if (str1 == NULL) return((*str2) == '\0');
389 if (str2 == NULL) return((*str1) == '\0');
391 if (*str1++ != *str2) return(0);
392 } while (*str2++);
H A Dschematron.c237 * @str2: extra data
243 const char *msg, const xmlChar * str1, const xmlChar * str2)
257 (const char *) str1, (const char *) str2, NULL, 0, 0,
258 msg, str1, str2);
242 xmlSchematronPErr(xmlSchematronParserCtxtPtr ctxt, xmlNodePtr node, int error, const char *msg, const xmlChar * str1, const xmlChar * str2) argument
H A Dcatalog.c239 const char *msg, const xmlChar *str1, const xmlChar *str2,
244 (const char *) str1, (const char *) str2,
246 msg, str1, str2, str3);
238 xmlCatalogErr(xmlCatalogEntryPtr catal, xmlNodePtr node, int error, const char *msg, const xmlChar *str1, const xmlChar *str2, const xmlChar *str3) argument
H A Dvalid.c130 * @str2: extra informations
139 const xmlChar * str2, const xmlChar * str3)
162 (const char *) str3, 0, 0, msg, str1, str2, str3);
214 * @str2: extra information
223 const xmlChar * str2, const xmlChar * str3)
246 (const char *) str3, 0, 0, msg, str1, str2, str3);
136 xmlErrValidNode(xmlValidCtxtPtr ctxt, xmlNodePtr node, xmlParserErrors error, const char *msg, const xmlChar * str1, const xmlChar * str2, const xmlChar * str3) argument
220 xmlErrValidWarning(xmlValidCtxtPtr ctxt, xmlNodePtr node, xmlParserErrors error, const char *msg, const xmlChar * str1, const xmlChar * str2, const xmlChar * str3) argument
H A DHTMLparser.c101 * @str2: string infor
107 const char *msg, const xmlChar *str1, const xmlChar *str2)
116 (const char *) str1, (const char *) str2,
118 msg, str1, str2);
106 htmlParseErr(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, const xmlChar *str2) argument
H A Dparser.c515 * @str2: extra data
521 const char *msg, const xmlChar *str1, const xmlChar *str2)
536 (const char *) str1, (const char *) str2, NULL, 0, 0,
537 msg, (const char *) str1, (const char *) str2);
609 * @str2: an string info
616 const xmlChar *str2)
625 NULL, 0, (const char *) str1, (const char *) str2,
626 NULL, val, 0, msg, str1, val, str2);
520 xmlWarningMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, const xmlChar *str2) argument
614 xmlFatalErrMsgStrIntStr(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1, int val, const xmlChar *str2) argument
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiWorkingSet.cpp100 const char* str2 = (const char*) key; local
101 return str1 == str2 || 0 == PL_strcmp(str1, str2);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dunicode.h110 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 )
246 while (*str1 && (*str1 == *str2)) { str1++; str2++; }
247 return *str1 - *str2;
250 WINE_UNICODE_INLINE int strncmpW( const WCHAR *str1, const WCHAR *str2, in
251 strncmpW( const WCHAR *str1, const WCHAR *str2, int n ) argument
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dstring.c48 int crStrcmp( const char *str1, const char *str2 )
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 - *str2);
159 crStrjoin3( const char *str1, const char *str2, const char *str3 ) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdmac.c586 int strcmpcore(const char *str1, const char *str2, int caseSensitive) argument
593 currentChar2 = *str2;
612 str2++;
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);

Completed in 361 milliseconds

12