HomeSort by relevance Sort by last modified time
    Searched refs:longStr (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
time_hashlib.py 13 longStr = 'Z'*scale
18 x = localCF(longStr).digest()
21 print ('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name
  /external/python/cpython2/Lib/test/
time_hashlib.py 13 longStr = 'Z'*scale
18 x = localCF(longStr).digest()
21 print ('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name
  /external/python/cpython3/Lib/test/
time_hashlib.py 14 longStr = b'Z'*scale
19 x = localCF(longStr).digest()
22 print(('%2.2f' % (end-start)), "seconds", iterations, "x", len(longStr), "bytes", name)
  /external/icu/icu4c/source/test/iotest/
strtst.c 205 static const char longStr[] = "This is a long test12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
207 retVal = u_sprintf(uStringBuf, longStr);
209 if (strcmp(myString, longStr)) {
210 log_err("%%S Got: %s, Expected: %s\n", myString, longStr);
212 if (retVal != (int32_t)strlen(longStr)) {
213 log_err("%%S returned different sizes. Got: %d Expected: %d\n", retVal, strlen(longStr));
216 retVal = u_sprintf(uStringBuf, "%s", longStr);
218 if (strcmp(myString, longStr)) {
219 log_err("%%S Got: %s, Expected: %s\n", myString, longStr);
221 if (retVal != (int32_t)strlen(longStr)) {
    [all...]
  /external/mockito/src/test/java/org/mockitousage/stubbing/
SmartNullsStubbingTest.java 127 String longStr = "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";
128 Bar smartNull = foo.getBarWithParams(10, longStr);
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 498 static const char longStr[] =
500 CharString chStr(longStr, errorCode);
501 if (0 != strcmp(longStr, chStr.data()) || (int32_t)strlen(longStr) != chStr.length()) {
502 errln("CharString(longStr) failed.");
507 if (0 != strcmp(longStr, copy.data()) || (int32_t)strlen(longStr) != copy.length()) {
513 strcpy(expected, longStr);
514 strcat(expected, longStr+4);
515 strcat(expected, longStr);
    [all...]

Completed in 1358 milliseconds