/external/clang/test/SemaCXX/ |
cxx0x-type-convert-construct.cpp | 6 char16_t *ustr; local 7 ustr = u"a UTF-16 string"; // expected-error {{assigning to 'char16_t *' from incompatible type 'const char16_t [16]'}} 8 char32_t *Ustr; 9 Ustr = U"a UTF-32 string"; // expected-error {{assigning to 'char32_t *' from incompatible type 'const char32_t [16]'}}
|
/external/icu/icu4c/source/test/cintltst/ |
cposxtst.c | 80 const UChar* ustr; local 85 ustr = u_catgets(catd, set_num, msg_num, FAIL, &len, &ec); 86 u_austrcpy(str, ustr); 92 if (u_strcmp(ustr, exp) != 0) {
|
uenumtst.c | 362 const UChar *ustr = uenum_unext(u,&len, &status); local 367 if(ustr==NULL) { 373 if(u_strncmp(ustr,buf,len)) { 375 log_err("%s:%d: FAIL: ustring #%d expected '%s' got '%s'\n", __FILE__, line, i, compareToChar[i], austrdup(ustr)); 376 for(j=0;ustr[j]&&buf[j];j++) { 377 log_verbose(" @ %d\t<U+%04X> vs <U+%04X>\n", j, ustr[j],buf[j]); 391 if(u_strcmp(ustr,compareToUChar[i])) { 393 log_err("%s:%d: FAIL: ustring #%d expected '%s' got '%s'\n", __FILE__, line, i, austrdup(compareToUChar[i]), austrdup(ustr)); 394 for(j=0;ustr[j]&&compareToUChar[j];j++) { 395 log_verbose(" @ %d\t<U+%04X> vs <U+%04X>\n", j, ustr[j],compareToUChar[j]) [all...] |
usettest.c | 258 UChar ustr[4096]; local 264 length = uset_toPattern(set, ustr, sizeof(ustr), TRUE, &ec); 269 pat=aescstrdup(ustr, length); 283 u_charsToUChars(stringStart, ustr, stringLength); 285 if (uset_containsString(set, ustr, stringLength) == isIn) { 299 u_charsToUChars(p, ustr, 1); 300 c = ustr[0]; 359 UChar ustr[4096], itemStr[4096]; local 370 length = uset_toPattern(set, ustr, sizeof(ustr), TRUE, &ec) [all...] |
custrtrn.c | 1395 UChar ustr[] = {'h', 'e', 'l', 'l', 'o', 0}; local [all...] |
/external/icu/icu4c/source/common/ |
uenum.cpp | 93 UChar *ustr = NULL; local 98 ustr = (UChar*) _getBuffer(en, (len+1) * sizeof(UChar)); 99 if (ustr == NULL) { 102 u_charsToUChars(cstr, ustr, len+1); 111 return ustr;
|
/external/libaom/libaom/av1/decoder/ |
accounting.c | 22 const unsigned char *ustr; local 24 ustr = (const unsigned char *)str; 27 while (*ustr) val += *ustr++;
|
/external/libpcap/missing/ |
snprintf.c | 607 unsigned char *ustr = (unsigned char *)str; local 611 state.str = ustr; 612 state.s = ustr; 613 state.theend = ustr + sz - 1;
|
/external/strace/tests/ |
pread64-pwrite64.c | 58 const unsigned char *ustr = (const unsigned char *) str; local 62 unsigned int c = ustr[i]; 76 tprintf("\\%o", ustr[i]);
|
read-write.c | 67 const unsigned char *ustr = (const unsigned char *) str; local 73 unsigned int c = ustr[i]; 92 tprintf("\\%o", ustr[i]);
|
/external/strace/tests-m32/ |
pread64-pwrite64.c | 58 const unsigned char *ustr = (const unsigned char *) str; local 62 unsigned int c = ustr[i]; 76 tprintf("\\%o", ustr[i]);
|
read-write.c | 67 const unsigned char *ustr = (const unsigned char *) str; local 73 unsigned int c = ustr[i]; 92 tprintf("\\%o", ustr[i]);
|
/external/strace/tests-mx32/ |
pread64-pwrite64.c | 58 const unsigned char *ustr = (const unsigned char *) str; local 62 unsigned int c = ustr[i]; 76 tprintf("\\%o", ustr[i]);
|
read-write.c | 67 const unsigned char *ustr = (const unsigned char *) str; local 73 unsigned int c = ustr[i]; 92 tprintf("\\%o", ustr[i]);
|
/external/tcpdump/missing/ |
snprintf.c | 607 unsigned char *ustr = (unsigned char *)str; local 611 state.str = ustr; 612 state.s = ustr; 613 state.theend = ustr + sz - 1;
|
/external/icu/icu4c/source/test/iotest/ |
stream.cpp | 134 UnicodeString ustr("string"); 136 outFormatStream << "1234567890" << setw(10) << left << ustr << " " << "0123456789"; local 307 UnicodeString UStr; 310 testString(UStr, u_austrcpy(testcase, testCase1), expectedResultA, IOSTREAM_EOF|IOSTREAM_FAIL); 311 testString(UStr, u_austrcpy(testcase, testCase2), expectedResultB, IOSTREAM_EOF); 312 UStr = UnicodeString(expectedResultC); 313 testString(UStr, u_austrcpy(testcase, testCase3), expectedResultC, IOSTREAM_EOF|IOSTREAM_FAIL); 314 testString(UStr, u_austrcpy(testcase, testCase4), expectedResultD, IOSTREAM_EOF); 315 testString(UStr, u_austrcpy(testcase, testCase5), expectedResultD, IOSTREAM_GOOD); 316 testString(UStr, u_austrcpy(testcase, testCase6), expectedResultD, IOSTREAM_GOOD) [all...] |
/external/python/cpython3/Modules/clinic/ |
arraymodule.c.h | 366 "fromunicode($self, ustr, /)\n" 369 "Extends this array with data from the unicode string ustr.\n" 372 "Use array.frombytes(ustr.encode(...)) to append Unicode data to an array of\n" 379 array_array_fromunicode_impl(arrayobject *self, const Py_UNICODE *ustr, 386 const Py_UNICODE *ustr; local 389 if (!PyArg_Parse(arg, "u#:fromunicode", &ustr, &ustr_length)) { 392 return_value = array_array_fromunicode_impl(self, ustr, ustr_length); 402 "Extends this array with data from the unicode string ustr.\n"
|
/external/icu/icu4c/source/i18n/ |
region.cpp | 495 const UnicodeString *ustr = pv->snext(status); local 496 r = (Region *)uhash_get(regionIDMap,(void *)ustr); 543 const UnicodeString *ustr = pv->snext(status); local 544 r = (Region *)uhash_get(regionIDMap,(void *)ustr);
|
/external/strace/ |
util.c | 509 const unsigned char *ustr = (const unsigned char *) instr; local 527 c = ustr[i]; 555 c = ustr[i]; 569 c = ustr[i]; 613 && ustr[i + 1] >= '0' 614 && ustr[i + 1] <= '7' 640 if (style & QUOTE_0_TERMINATED && ustr[i] == '\0') {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
_json.c | 370 PyObject *ustr = PyUnicode_FromUnicode(NULL, 0);
local 371 if (ustr == NULL)
374 joinfn = PyObject_GetAttrString(ustr, "join");
375 Py_DECREF(ustr);
[all...] |
arraymodule.c | 1440 Py_UNICODE *ustr; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
_json.c | 370 PyObject *ustr = PyUnicode_FromUnicode(NULL, 0);
local 371 if (ustr == NULL)
374 joinfn = PyObject_GetAttrString(ustr, "join");
375 Py_DECREF(ustr);
[all...] |
arraymodule.c | 1440 Py_UNICODE *ustr; local [all...] |
/external/icu/icu4c/source/test/intltest/ |
utxttest.cpp | 1527 const UChar *ustr = str.getTerminatedBuffer(); local [all...] |
/external/python/cpython2/Modules/ |
_json.c | 393 PyObject *ustr = PyUnicode_FromUnicode(NULL, 0); local 394 if (ustr == NULL) 397 joinfn = PyObject_GetAttrString(ustr, "join"); 398 Py_DECREF(ustr); [all...] |