/third_party/typescript/tests/baselines/reference/ |
H A D | promiseVoidErrorCallback.js | 3 __t1: string; 15 return Promise.resolve({ __t1: "foo_t1" }); 19 return { __t2: x.__t1 + ":foo_21" }; 32 return Promise.resolve({ __t1: "foo_t1" });
35 return { __t2: x.__t1 + ":foo_21" };
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | ucptrie.h | 454 uint8_t __t1, __t2, __t3; \ 458 U8_LEAD3_T1_BITS[__lead &= 0xf] & (1 << ((__t1 = *(src)) >> 5)) && \ 460 (__lead = ((int32_t)(trie)->index[(__lead << 6) + (__t1 & 0x3f)]) + __t2, 1) \ 463 U8_LEAD4_T1_BITS[(__t1 = *(src)) >> 4] & (1 << __lead) && \ 464 (__lead = (__lead << 6) | (__t1 & 0x3f), ++(src) != (limit)) && \ 471 __lead >= 0xc2 && (__t1 = *(src) - 0x80) <= 0x3f && \ 472 (__lead = (int32_t)(trie)->index[__lead & 0x1f] + __t1, 1))) { \
|
H A D | utf8.h | 510 uint8_t __t1=(s)[i]; \ 512 if(U8_IS_VALID_LEAD3_AND_T1(__b, __t1) && \ 517 if(U8_IS_TRAIL(__t1)) { \ 521 if(U8_IS_VALID_LEAD4_AND_T1(__b, __t1) && \
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | ucptrie.h | 454 uint8_t __t1, __t2, __t3; \ 458 U8_LEAD3_T1_BITS[__lead &= 0xf] & (1 << ((__t1 = *(src)) >> 5)) && \ 460 (__lead = ((int32_t)(trie)->index[(__lead << 6) + (__t1 & 0x3f)]) + __t2, 1) \ 463 U8_LEAD4_T1_BITS[(__t1 = *(src)) >> 4] & (1 << __lead) && \ 464 (__lead = (__lead << 6) | (__t1 & 0x3f), ++(src) != (limit)) && \ 471 __lead >= 0xc2 && (__t1 = *(src) - 0x80) <= 0x3f && \ 472 (__lead = (int32_t)(trie)->index[__lead & 0x1f] + __t1, 1))) { \
|
H A D | utf8.h | 510 uint8_t __t1=(s)[i]; \ 512 if(U8_IS_VALID_LEAD3_AND_T1(__b, __t1) && \ 517 if(U8_IS_TRAIL(__t1)) { \ 521 if(U8_IS_VALID_LEAD4_AND_T1(__b, __t1) && \
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | ucptrie.h | 455 uint8_t __t1, __t2, __t3; \ 459 U8_LEAD3_T1_BITS[__lead &= 0xf] & (1 << ((__t1 = *(src)) >> 5)) && \ 461 (__lead = ((int32_t)(trie)->index[(__lead << 6) + (__t1 & 0x3f)]) + __t2, 1) \ 464 U8_LEAD4_T1_BITS[(__t1 = *(src)) >> 4] & (1 << __lead) && \ 465 (__lead = (__lead << 6) | (__t1 & 0x3f), ++(src) != (limit)) && \ 472 __lead >= 0xc2 && (__t1 = *(src) - 0x80) <= 0x3f && \ 473 (__lead = (int32_t)(trie)->index[__lead & 0x1f] + __t1, 1))) { \
|
H A D | utf8.h | 510 uint8_t __t1=(s)[i]; \ 512 if(U8_IS_VALID_LEAD3_AND_T1(__b, __t1) && \ 517 if(U8_IS_TRAIL(__t1)) { \ 521 if(U8_IS_VALID_LEAD4_AND_T1(__b, __t1) && \
|
/third_party/icu/icu4c/source/common/ |
H A D | ustrtrns.cpp | 314 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 323 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 324 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 354 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 363 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 407 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 418 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 419 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 454 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 465 (__t1 in u_strFromUTF8WithSub() 496 uint8_t __t1, __t2; u_strFromUTF8WithSub() local [all...] |
H A D | utrie2.h | 911 uint8_t __t1, __t2; \ 914 U8_IS_VALID_LEAD3_AND_T1(__lead, __t1=(uint8_t)*(src)) && \ 920 ((__t1&0x3f)<<(6-UTRIE2_SHIFT_2))+(__t2>>UTRIE2_SHIFT_2)]) \ 925 (__t1=(uint8_t)(*(src)-0x80))<=0x3f \ 930 __t1]; \
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ustrtrns.cpp | 314 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 323 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 324 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 354 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 363 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 407 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 418 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 419 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 454 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 465 (__t1 in u_strFromUTF8WithSub() 496 uint8_t __t1, __t2; u_strFromUTF8WithSub() local [all...] |
H A D | utrie2.h | 911 uint8_t __t1, __t2; \ 914 U8_IS_VALID_LEAD3_AND_T1(__lead, __t1=(uint8_t)*(src)) && \ 920 ((__t1&0x3f)<<(6-UTRIE2_SHIFT_2))+(__t2>>UTRIE2_SHIFT_2)]) \ 925 (__t1=(uint8_t)(*(src)-0x80))<=0x3f \ 930 __t1]; \
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ustrtrns.cpp | 314 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 323 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 324 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 354 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 363 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 407 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 418 (__t1=src[i]-0x80)<=0x3f) { in u_strFromUTF8WithSub() 419 *pDest++ = (((c)&0x1f)<<6)|__t1; in u_strFromUTF8WithSub() 454 uint8_t __t1, __t2; in u_strFromUTF8WithSub() local 465 (__t1 in u_strFromUTF8WithSub() 496 uint8_t __t1, __t2; u_strFromUTF8WithSub() local [all...] |
H A D | utrie2.h | 911 uint8_t __t1, __t2; \ 914 U8_IS_VALID_LEAD3_AND_T1(__lead, __t1=(uint8_t)*(src)) && \ 920 ((__t1&0x3f)<<(6-UTRIE2_SHIFT_2))+(__t2>>UTRIE2_SHIFT_2)]) \ 925 (__t1=(uint8_t)(*(src)-0x80))<=0x3f \ 930 __t1]; \
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 18569 __gthread_equal (__gthread_t __t1, __gthread_t __t2) 18571 return __gthrw_pthread_equal (__t1, __t2); [all...] |