Searched defs:str1 (Results 1 - 25 of 33) sorted by relevance

12

/vbox/src/libs/xpcom18a4/xpcom/build/
H A Ddlldeps.cpp155 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/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
194 if (str1 == null) {
202 return str1.compareTo(str2);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dsortkey.c168 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 Dstring.c40 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/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 ) 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/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 ) 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 Dtest.h81 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/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 ) 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_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 ) 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/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 ) 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 Dtest.h79 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/libs/libxml2-2.6.31/
H A Derror.c401 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...]
H A Dxmlstring.c123 * @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 DparserInternals.c132 * @str1: 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);
1751 if (ctxt->lastError.str1 != NULL)
1752 xmlFree(ctxt->lastError.str1);
138 __xmlErrEncoding(xmlParserCtxtPtr ctxt, xmlParserErrors xmlerr, const char *msg, const xmlChar * str1, const xmlChar * str2) argument
H A DSAX2.c69 * @str1: extra data
76 const char *msg, const char *str1, const char *str2)
90 XML_ERR_ERROR, NULL, 0, (const char *) str1,
92 msg, (const char *) str1, (const char *) str2);
98 XML_ERR_ERROR, NULL, 0, (const char *) str1,
100 msg, (const char *) str1, (const char *) str2);
109 * @str1: 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, str
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
146 xmlWarnMsg(xmlParserCtxtPtr ctxt, xmlParserErrors error, const char *msg, const xmlChar *str1) 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);
H A Dschematron.c236 * @str1: 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.c129 * @str1: extra informations
138 const char *msg, const xmlChar * str1,
160 (const char *) str1,
161 (const char *) str1,
162 (const char *) str3, 0, 0, msg, str1, str2, str3);
172 * @str1: extra informations
181 const char *msg, const xmlChar * str1,
203 (const char *) str1,
205 NULL, int2, 0, msg, str1, int2, str3);
213 * @str1
136 xmlErrValidNode(xmlValidCtxtPtr ctxt, xmlNodePtr node, xmlParserErrors error, const char *msg, const xmlChar * str1, const xmlChar * str2, const xmlChar * str3) argument
179 xmlErrValidNodeNr(xmlValidCtxtPtr ctxt, xmlNodePtr node, xmlParserErrors error, const char *msg, const xmlChar * str1, int int2, 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
[all...]
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiWorkingSet.cpp99 const char* str1 = ((xptiHashEntry*)entry)->value->GetTheName(); 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 ) 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/GuestHost/OpenGL/util/
H A Dstring.c48 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/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmdmac.c586 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);

Completed in 107 milliseconds

12