/external/ltp/testcases/kernel/fs/inode/ |
D | inode01.c | 308 char new_string[PATH_STRING_LENGTH + 1]; local 328 snp_ret = snprintf(new_string, sizeof(new_string), 330 if (snp_ret < 0 || snp_ret >= sizeof(new_string)) { 352 file_id = creat(new_string, FILE_MODE); 356 new_string, errno); 360 printf("%d %s F\n", level, new_string); 369 len = strlen(new_string); 372 write(file_id, new_string, len); 376 new_string, len, 389 strcpy(write_string, new_string); [all …]
|
D | inode02.c | 408 char new_string[PATH_STRING_LENGTH + 1]; local 428 snp_ret = snprintf(new_string, sizeof(new_string), 430 if (snp_ret < 0 || snp_ret >= sizeof(new_string)) { 452 file_id = creat(new_string, FILE_MODE); 456 new_string, errno); 461 new_string); 470 len = strlen(new_string); 473 write(file_id, new_string, len); 477 new_string, errno); 489 strcpy(write_string, new_string); [all …]
|
/external/v8/src/ast/ |
D | ast-value-factory.cc | 293 AstConsString* new_string = new (zone_) AstConsString(left, right); in NewConsString() local 294 CHECK(new_string != nullptr); in NewConsString() 295 AddString(new_string); in NewConsString() 296 return new_string; in NewConsString() 389 AstRawString* new_string = new (zone_) AstRawString( in GetString() local 391 CHECK_NOT_NULL(new_string); in GetString() 392 AddString(new_string); in GetString() 393 entry->key = new_string; in GetString()
|
/external/oj-libjdwp/src/share/npt/ |
D | utf.h | 70 jbyte *new_string, int new_length); 75 jbyte *new_string, int new_length);
|
/external/oj-libjdwp/src/share/back/ |
D | inStream.c | 385 char *new_string; in inStream_readString() local 387 new_string = jvmtiAllocate(new_length+1); in inStream_readString() 390 (jbyte*)new_string, new_length); in inStream_readString() 392 return new_string; in inStream_readString()
|
D | outStream.c | 316 char *new_string; in outStream_writeString() local 318 new_string = jvmtiAllocate(new_length+1); in outStream_writeString() 321 (jbyte*)new_string, new_length); in outStream_writeString() 323 error = writeBytes(stream, (jbyte *)new_string, new_length); in outStream_writeString() 324 jvmtiDeallocate(new_string); in outStream_writeString()
|
/external/python/cpython2/Lib/test/ |
D | test_xml_etree.py | 100 new_string = string + "" 101 new_string = string + " "
|
/external/libpcap/ |
D | pcap-win32.c | 871 char *new_string; in pcap_activate_win32() local 877 new_string = (char*)malloc(len); in pcap_activate_win32() 878 if (new_string != NULL) in pcap_activate_win32() 881 strcpy_s(new_string, len, p->opt.device + strlen(PCAP_SRC_IF_STRING)); in pcap_activate_win32() 883 p->opt.device = new_string; in pcap_activate_win32()
|
/external/python/cpython2/Parser/ |
D | tokenizer.c | 134 new_string(const char *s, Py_ssize_t len) in new_string() function 161 return new_string(str, strlen(str)); in decode_str() 238 char* r = new_string(begin, t - begin); in get_coding_spec() 245 r = new_string(q, strlen(q)); in get_coding_spec() 381 tok->encoding = new_string("utf-8", 5); /* resulting is in utf-8 */ in check_bom() 820 converted = new_string(PyString_AS_STRING(utf8), in tok_stdin_decode() 830 tok->encoding = new_string(encoding, strlen(encoding)); in tok_stdin_decode()
|
/external/dng_sdk/source/ |
D | dng_string.cpp | 1617 const char *new_string, in Replace() argument 1631 uint32 len3 = strlenAsUint32 (new_string); in Replace() 1637 new_string, in Replace() 1646 new_string, in Replace() 1682 new_string, in Replace()
|
D | dng_string.h | 125 const char *new_string,
|
/external/python/cpython3/Parser/ |
D | tokenizer.c | 159 new_string(const char *s, Py_ssize_t len, struct tok_state *tok) in new_string() function 188 return new_string(str, strlen(str), tok); in decode_str() 266 char* r = new_string(begin, t - begin, tok); in get_coding_spec() 273 r = new_string(q, strlen(q), tok); in get_coding_spec() 404 tok->encoding = new_string("utf-8", 5, tok); in check_bom()
|
/external/toybox/kconfig/ |
D | lex.zconf.c_shipped | 788 void new_string(void) 1103 new_string(); 2242 new_string();
|
/external/v8/src/ |
D | code-stub-assembler.cc | 3667 Node* new_string = in StringAdd() local 3669 CopyStringCharacters(var_left.value(), new_string, SmiConstant(Smi::kZero), in StringAdd() 3673 CopyStringCharacters(var_right.value(), new_string, SmiConstant(Smi::kZero), in StringAdd() 3676 result.Bind(new_string); in StringAdd() 3682 new_string = in StringAdd() 3684 CopyStringCharacters(var_left.value(), new_string, in StringAdd() 3688 CopyStringCharacters(var_right.value(), new_string, in StringAdd() 3692 result.Bind(new_string); in StringAdd()
|
/external/python/cpython3/Lib/test/ |
D | test_xml_etree.py | 171 new_string = string + "" 172 new_string = string + " "
|
/external/python/cpython2/Doc/library/ |
D | re.rst | 685 Perform the same operation as :func:`sub`, but return a tuple ``(new_string,
|
/external/python/cpython3/Doc/library/ |
D | re.rst | 777 Perform the same operation as :func:`sub`, but return a tuple ``(new_string,
|