/third_party/bounds_checking_function/src/ |
D | memcpy_s.c | 27 #define SECUREC_SMALL_MEM_COPY(dest, src, count) do { \ argument 28 if (SECUREC_ADDR_ALIGNED_8(dest) && SECUREC_ADDR_ALIGNED_8(src)) { \ 32 *(unsigned char *)(dest) = *(const unsigned char *)(src); \ 35 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 2); \ 38 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 3); \ 41 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 4); \ 44 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 5); \ 47 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 6); \ 50 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 7); \ 53 SECUREC_COPY_VALUE_BY_STRUCT((dest), (src), 8); \ [all …]
|
D | memset_s.c | 22 #define SECUREC_MEMSET_PARAM_OK(dest, destMax, count) (SECUREC_LIKELY((destMax) <= SECUREC_MEM_MAX_… argument 23 (dest) != NULL && (count) <= (destMax))) 85 #define SECUREC_UNALIGNED_SET(dest, c, count) do { \ argument 86 unsigned char *pDest_ = (unsigned char *)(dest); \ 190 #define SECUREC_SET_VALUE_BY_STRUCT(dest, dataName, n) do { \ argument 191 …*(SecStrBuf##n *)(dest) = *(const SecStrBuf##n *)(&((SecStrictAliasingCast(&(dataName)))->buf##n))… 194 #define SECUREC_ALIGNED_SET_OPT_ZERO_FF(dest, c, count) do { \ argument 199 *(unsigned char *)(dest) = (unsigned char)0; \ 202 SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 2); \ 205 SECUREC_SET_VALUE_BY_STRUCT((dest), g_allZero, 3); \ [all …]
|
/third_party/libjpeg-turbo/ |
D | jdatadst.c | 66 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in init_destination() local 69 dest->buffer = (JOCTET *) in init_destination() 73 dest->pub.next_output_byte = dest->buffer; in init_destination() 74 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 112 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in empty_output_buffer() local 114 if (fwrite(dest->buffer, 1, OUTPUT_BUF_SIZE, dest->outfile) != in empty_output_buffer() 118 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 119 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer() 130 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 133 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() [all …]
|
D | jdatadst-tj.c | 89 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 91 if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE); in empty_mem_output_buffer() 94 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() 100 memcpy(nextbuffer, dest->buffer, dest->bufsize); in empty_mem_output_buffer() 102 free(dest->newbuffer); in empty_mem_output_buffer() 104 dest->newbuffer = nextbuffer; in empty_mem_output_buffer() 106 dest->pub.next_output_byte = nextbuffer + dest->bufsize; in empty_mem_output_buffer() 107 dest->pub.free_in_buffer = dest->bufsize; in empty_mem_output_buffer() 109 dest->buffer = nextbuffer; in empty_mem_output_buffer() 110 dest->bufsize = nextsize; in empty_mem_output_buffer() [all …]
|
D | wrppm.c | 93 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_pixel_rows() local 95 fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file); in put_pixel_rows() 108 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in copy_pixel_rows() local 115 ptr = dest->pub.buffer[0]; in copy_pixel_rows() 116 bufferptr = dest->iobuffer; in copy_pixel_rows() 118 memcpy(bufferptr, ptr, dest->samples_per_row); in copy_pixel_rows() 120 for (col = dest->samples_per_row; col > 0; col--) { in copy_pixel_rows() 124 fwrite(dest->iobuffer, 1, dest->buffer_width, dest->pub.output_file); in copy_pixel_rows() 135 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_rgb() local 144 ptr = dest->pub.buffer[0]; in put_rgb() [all …]
|
D | wrbmp.c | 78 LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, 101 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo; in put_pixel_rows() local 107 if (dest->use_inversion_array) { in put_pixel_rows() 110 ((j_common_ptr)cinfo, dest->whole_image, in put_pixel_rows() 111 dest->cur_output_row, (JDIMENSION)1, TRUE); in put_pixel_rows() 112 dest->cur_output_row++; in put_pixel_rows() 115 outptr = dest->iobuffer; in put_pixel_rows() 121 inptr = dest->pub.buffer[0]; in put_pixel_rows() 124 memcpy(outptr, inptr, dest->row_width); in put_pixel_rows() 163 pad = dest->pad_bytes; in put_pixel_rows() [all …]
|
D | wrgif.c | 337 gif_dest_ptr dest = (gif_dest_ptr)dinfo; in start_output_gif() local 340 emit_header(dest, cinfo->actual_number_of_colors, cinfo->colormap); in start_output_gif() 342 emit_header(dest, 256, (JSAMPARRAY)NULL); in start_output_gif() 360 gif_dest_ptr dest = (gif_dest_ptr)dinfo; in put_LZW_pixel_rows() local 368 ptr = dest->pub.buffer[0]; in put_LZW_pixel_rows() 373 if (dest->first_byte) { /* need to initialize waiting_code */ in put_LZW_pixel_rows() 374 dest->waiting_code = c; in put_LZW_pixel_rows() 375 dest->first_byte = FALSE; in put_LZW_pixel_rows() 383 i = ((hash_int)c << (MAX_LZW_BITS - 8)) + dest->waiting_code; in put_LZW_pixel_rows() 388 probe_value = HASH_ENTRY(dest->waiting_code, c); in put_LZW_pixel_rows() [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | jdatadst.c | 71 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in init_destination() local 74 dest->buffer = (JOCTET *) in init_destination() 78 dest->pub.next_output_byte = dest->buffer; in init_destination() 79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 117 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in empty_output_buffer() local 119 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer() 123 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer() 135 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 138 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() [all …]
|
D | jdatadst-tj.c | 91 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 93 if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE); in empty_mem_output_buffer() 96 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() 102 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize); in empty_mem_output_buffer() 104 if (dest->newbuffer != NULL) in empty_mem_output_buffer() 105 free(dest->newbuffer); in empty_mem_output_buffer() 107 dest->newbuffer = nextbuffer; in empty_mem_output_buffer() 109 dest->pub.next_output_byte = nextbuffer + dest->bufsize; in empty_mem_output_buffer() 110 dest->pub.free_in_buffer = dest->bufsize; in empty_mem_output_buffer() 112 dest->buffer = nextbuffer; in empty_mem_output_buffer() [all …]
|
D | wrppm.c | 93 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_pixel_rows() local 95 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_pixel_rows() 108 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in copy_pixel_rows() local 115 ptr = dest->pub.buffer[0]; in copy_pixel_rows() 116 bufferptr = dest->iobuffer; in copy_pixel_rows() 118 MEMCOPY(bufferptr, ptr, dest->samples_per_row); in copy_pixel_rows() 120 for (col = dest->samples_per_row; col > 0; col--) { in copy_pixel_rows() 124 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in copy_pixel_rows() 135 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_rgb() local 144 ptr = dest->pub.buffer[0]; in put_rgb() [all …]
|
D | wrbmp.c | 78 LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, 101 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo; in put_pixel_rows() local 107 if (dest->use_inversion_array) { in put_pixel_rows() 110 ((j_common_ptr)cinfo, dest->whole_image, in put_pixel_rows() 111 dest->cur_output_row, (JDIMENSION)1, TRUE); in put_pixel_rows() 112 dest->cur_output_row++; in put_pixel_rows() 115 outptr = dest->iobuffer; in put_pixel_rows() 121 inptr = dest->pub.buffer[0]; in put_pixel_rows() 124 MEMCOPY(outptr, inptr, dest->row_width); in put_pixel_rows() 165 pad = dest->pad_bytes; in put_pixel_rows() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | jdatadst.c | 71 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in init_destination() local 74 dest->buffer = (JOCTET *) in init_destination() 78 dest->pub.next_output_byte = dest->buffer; in init_destination() 79 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in init_destination() 117 my_dest_ptr dest = (my_dest_ptr)cinfo->dest; in empty_output_buffer() local 119 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) != in empty_output_buffer() 123 dest->pub.next_output_byte = dest->buffer; in empty_output_buffer() 124 dest->pub.free_in_buffer = OUTPUT_BUF_SIZE; in empty_output_buffer() 135 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 138 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() [all …]
|
D | jdatadst-tj.c | 93 my_mem_dest_ptr dest = (my_mem_dest_ptr)cinfo->dest; in empty_mem_output_buffer() local 95 if (!dest->alloc) ERREXIT(cinfo, JERR_BUFFER_SIZE); in empty_mem_output_buffer() 98 nextsize = dest->bufsize * 2; in empty_mem_output_buffer() 104 MEMCOPY(nextbuffer, dest->buffer, dest->bufsize); in empty_mem_output_buffer() 106 free(dest->newbuffer); in empty_mem_output_buffer() 108 dest->newbuffer = nextbuffer; in empty_mem_output_buffer() 110 dest->pub.next_output_byte = nextbuffer + dest->bufsize; in empty_mem_output_buffer() 111 dest->pub.free_in_buffer = dest->bufsize; in empty_mem_output_buffer() 113 dest->buffer = nextbuffer; in empty_mem_output_buffer() 114 dest->bufsize = nextsize; in empty_mem_output_buffer() [all …]
|
D | wrppm.c | 93 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_pixel_rows() local 95 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in put_pixel_rows() 108 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in copy_pixel_rows() local 115 ptr = dest->pub.buffer[0]; in copy_pixel_rows() 116 bufferptr = dest->iobuffer; in copy_pixel_rows() 118 MEMCOPY(bufferptr, ptr, dest->samples_per_row); in copy_pixel_rows() 120 for (col = dest->samples_per_row; col > 0; col--) { in copy_pixel_rows() 124 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width); in copy_pixel_rows() 135 ppm_dest_ptr dest = (ppm_dest_ptr)dinfo; in put_rgb() local 144 ptr = dest->pub.buffer[0]; in put_rgb() [all …]
|
D | wrbmp.c | 78 LOCAL(void) write_colormap(j_decompress_ptr cinfo, bmp_dest_ptr dest, 101 bmp_dest_ptr dest = (bmp_dest_ptr)dinfo; in put_pixel_rows() local 107 if (dest->use_inversion_array) { in put_pixel_rows() 110 ((j_common_ptr)cinfo, dest->whole_image, in put_pixel_rows() 111 dest->cur_output_row, (JDIMENSION)1, TRUE); in put_pixel_rows() 112 dest->cur_output_row++; in put_pixel_rows() 115 outptr = dest->iobuffer; in put_pixel_rows() 121 inptr = dest->pub.buffer[0]; in put_pixel_rows() 124 MEMCOPY(outptr, inptr, dest->row_width); in put_pixel_rows() 163 pad = dest->pad_bytes; in put_pixel_rows() [all …]
|
D | wrgif.c | 337 gif_dest_ptr dest = (gif_dest_ptr)dinfo; in start_output_gif() local 340 emit_header(dest, cinfo->actual_number_of_colors, cinfo->colormap); in start_output_gif() 342 emit_header(dest, 256, (JSAMPARRAY)NULL); in start_output_gif() 360 gif_dest_ptr dest = (gif_dest_ptr)dinfo; in put_LZW_pixel_rows() local 368 ptr = dest->pub.buffer[0]; in put_LZW_pixel_rows() 373 if (dest->first_byte) { /* need to initialize waiting_code */ in put_LZW_pixel_rows() 374 dest->waiting_code = c; in put_LZW_pixel_rows() 375 dest->first_byte = FALSE; in put_LZW_pixel_rows() 383 i = ((hash_int)c << (MAX_LZW_BITS - 8)) + dest->waiting_code; in put_LZW_pixel_rows() 388 probe_value = HASH_ENTRY(dest->waiting_code, c); in put_LZW_pixel_rows() [all …]
|
/third_party/gn/src/gn/ |
D | escape.cc | 47 char* dest, in EscapeStringToString_Space() argument 52 dest[i++] = '\\'; in EscapeStringToString_Space() 53 dest[i++] = elem; in EscapeStringToString_Space() 81 char* dest, in EscapeStringToString_Ninja() argument 86 dest[i++] = '$'; in EscapeStringToString_Ninja() 87 dest[i++] = elem; in EscapeStringToString_Ninja() 98 char* dest, in EscapeStringToString_CompilationDatabase() argument 110 dest[i++] = '"'; in EscapeStringToString_CompilationDatabase() 114 dest[i++] = '\\'; in EscapeStringToString_CompilationDatabase() 115 dest[i++] = elem; in EscapeStringToString_CompilationDatabase() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ArabicShaping.java | 89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 98 if (dest == null && destSize != 0) { in shape() 102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 105 ") for buffer of length " + dest.length); in shape() 132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 162 char[] dest = src; in shape() local 166 dest = new char[src.length * 2]; // max in shape() 168 int len = shape(src, 0, src.length, dest, 0, dest.length); in shape() 170 return new String(dest, 0, len); in shape() 878 private void shapeToArabicDigitsWithContext(char[] dest, in shapeToArabicDigitsWithContext() argument [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | ArabicShaping.java | 89 char[] dest, int destStart, int destSize) throws ArabicShapingException { in shape() argument 98 if (dest == null && destSize != 0) { in shape() 102 (destStart < 0 || destSize < 0 || destStart + destSize > dest.length)) { in shape() 105 ") for buffer of length " + dest.length); in shape() 132 return internalShape(source, sourceStart, sourceLength, dest, destStart, destSize); in shape() 160 char[] dest = src; in shape() local 164 dest = new char[src.length * 2]; // max in shape() 166 int len = shape(src, 0, src.length, dest, 0, dest.length); in shape() 168 return new String(dest, 0, len); in shape() 830 private void shapeToArabicDigitsWithContext(char[] dest, in shapeToArabicDigitsWithContext() argument [all …]
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | custrtrn.c | 888 UChar dest[64]; in Test_FromUTF8() local 922 dest[0]=dest[1]=99; in Test_FromUTF8() 924 …destPointer=u_strFromUTF8(dest, UPRV_LENGTHOF(dest), &destLength, (const char *)bytes, 3, &errorCo… in Test_FromUTF8() 925 if(U_FAILURE(errorCode) || destPointer!=dest || destLength!=1 || dest[0]!=0x95c || dest[1]!=0) { in Test_FromUTF8() 987 UChar dest[64]; in Test_FromUTF8Lenient() local 995 dest[0]=0x1234; in Test_FromUTF8Lenient() 998 pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode); in Test_FromUTF8Lenient() 999 if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0x1234) { in Test_FromUTF8Lenient() 1003 dest[0]=0x1234; in Test_FromUTF8Lenient() 1011 dest[0]=0x1234; in Test_FromUTF8Lenient() [all …]
|
/third_party/musl/porting/linux/user/include/fortify/ |
D | string.h | 36 char *strcpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char *src) in strcpy() 38 __DIAGNOSE_ERROR_IF(__DIAGNOSE_UNEVALUATED_LE(__DIAGNOSE_BOS(dest), __builtin_strlen(src)), in strcpy() 42 return __builtin___strcpy_chk(dest, src, __DIAGNOSE_BOS(dest)); in strcpy() 44 return __builtin_strcpy(dest, src); in strcpy() 49 char *stpcpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char *src) in stpcpy() 51 __DIAGNOSE_ERROR_IF(__DIAGNOSE_UNEVALUATED_LE(__DIAGNOSE_BOS(dest), __builtin_strlen(src)), in stpcpy() 55 return __builtin___stpcpy_chk(dest, src, __DIAGNOSE_BOS(dest)); in stpcpy() 57 return __builtin_stpcpy(dest, src); in stpcpy() 62 void *memmove(void *const dest __DIAGNOSE_PASS_OBJECT_SIZE0, const void *src, size_t len) in memmove() 66 return __builtin___memmove_chk(dest, src, len, __DIAGNOSE_BOS(dest)); in memmove() [all …]
|
/third_party/musl/ndk_musl_include/fortify/ |
D | string.h | 36 char *strcpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char *src) in strcpy() 38 __DIAGNOSE_ERROR_IF(__DIAGNOSE_UNEVALUATED_LE(__DIAGNOSE_BOS(dest), __builtin_strlen(src)), in strcpy() 42 return __builtin___strcpy_chk(dest, src, __DIAGNOSE_BOS(dest)); in strcpy() 44 return __builtin_strcpy(dest, src); in strcpy() 49 char *stpcpy(char *const dest __DIAGNOSE_PASS_OBJECT_SIZE, const char *src) in stpcpy() 51 __DIAGNOSE_ERROR_IF(__DIAGNOSE_UNEVALUATED_LE(__DIAGNOSE_BOS(dest), __builtin_strlen(src)), in stpcpy() 55 return __builtin___stpcpy_chk(dest, src, __DIAGNOSE_BOS(dest)); in stpcpy() 57 return __builtin_stpcpy(dest, src); in stpcpy() 62 void *memmove(void *const dest __DIAGNOSE_PASS_OBJECT_SIZE0, const void *src, size_t len) in memmove() 66 return __builtin___memmove_chk(dest, src, len, __DIAGNOSE_BOS(dest)); in memmove() [all …]
|
/third_party/flutter/skia/src/gpu/glsl/ |
D | GrGLSLUtil.cpp | 11 template<> void GrGLSLGetMatrix<3>(float* dest, const SkMatrix& src) { in GrGLSLGetMatrix() argument 13 dest[0] = SkScalarToFloat(src[SkMatrix::kMScaleX]); in GrGLSLGetMatrix() 14 dest[1] = SkScalarToFloat(src[SkMatrix::kMSkewY]); in GrGLSLGetMatrix() 15 dest[2] = SkScalarToFloat(src[SkMatrix::kMPersp0]); in GrGLSLGetMatrix() 18 dest[3] = SkScalarToFloat(src[SkMatrix::kMSkewX]); in GrGLSLGetMatrix() 19 dest[4] = SkScalarToFloat(src[SkMatrix::kMScaleY]); in GrGLSLGetMatrix() 20 dest[5] = SkScalarToFloat(src[SkMatrix::kMPersp1]); in GrGLSLGetMatrix() 23 dest[6] = SkScalarToFloat(src[SkMatrix::kMTransX]); in GrGLSLGetMatrix() 24 dest[7] = SkScalarToFloat(src[SkMatrix::kMTransY]); in GrGLSLGetMatrix() 25 dest[8] = SkScalarToFloat(src[SkMatrix::kMPersp2]); in GrGLSLGetMatrix() [all …]
|
/third_party/lwip/src/include/lwip/ |
D | ip.h | 255 #define ip_output(p, src, dest, ttl, tos, proto) \ argument 256 (IP_IS_V6(dest) ? \ 257 ip6_output(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto) : \ 258 ip4_output(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto)) 263 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \ argument 264 (IP_IS_V6(dest) ? \ 265 ip6_output_if(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif) : \ 266 ip4_output_if(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif)) 271 #define ip_output_if_src(p, src, dest, ttl, tos, proto, netif) \ argument 272 (IP_IS_V6(dest) ? \ [all …]
|
/third_party/gn/src/base/json/ |
D | string_escape.cc | 35 bool EscapeSpecialCodePoint(uint32_t code_point, std::string* dest) { in EscapeSpecialCodePoint() argument 41 dest->append("\\b"); in EscapeSpecialCodePoint() 44 dest->append("\\f"); in EscapeSpecialCodePoint() 47 dest->append("\\n"); in EscapeSpecialCodePoint() 50 dest->append("\\r"); in EscapeSpecialCodePoint() 53 dest->append("\\t"); in EscapeSpecialCodePoint() 56 dest->append("\\\\"); in EscapeSpecialCodePoint() 59 dest->append("\\\""); in EscapeSpecialCodePoint() 64 dest->append("\\u003C"); in EscapeSpecialCodePoint() 69 dest->append("\\u2028"); in EscapeSpecialCodePoint() [all …]
|