Searched defs:expStr (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
H A Dcdtdptst.c313 const char* expStr = "04/13/1999 at 10:42:28 AM "; local
340 exp=(UChar*)malloc(sizeof(UChar) * (strlen(expStr) + 1) );
341 u_uastrcpy(exp, expStr);
344 if(u_strncmp(dateString, exp, (int32_t)strlen(expStr)) !=0)
/external/icu/icu4c/source/test/intltest/
H A Ddtfmrgts.cpp1173 UnicodeString expStr; local
1175 expStr.append("null");
1178 ((DateFormat*)&dispFmt)->format(expected, expStr);
1181 + ", expected " + expStr + "\n");
/external/libxml2/
H A Dxmlregexp.c359 static int xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr);
3634 * @expStr: the string to be evaluated
3639 * substrings in both @expStr and @valStr.
3646 xmlRegStrEqualWildcard(const xmlChar *expStr, const xmlChar *valStr) { argument
3647 if (expStr == valStr) return(1);
3648 if (expStr == NULL) return(0);
3654 if (*expStr != *valStr) {
3660 valStr = expStr;
3661 expStr = tmp;
3663 if ((*valStr != 0) && (*expStr !
[all...]

Completed in 249 milliseconds