/external/chromium_org/tools/grit/grit/ |
D | pseudo.py | 88 outstr = u'' 92 outstr += str[ix] 102 outstr += changed_vowels 103 outstr += _QOF 104 outstr += changed_vowels 106 _existing_translations[str] = outstr 107 return outstr
|
/external/strace/ |
D | ioprio.c | 29 static char outstr[256]; in sprint_ioprio() local 37 sprintf(outstr, "IOPRIO_PRIO_VALUE(%s,%d)", str, data); in sprint_ioprio() 39 sprintf(outstr, "IOPRIO_PRIO_VALUE(%#x /* %s */,%d)", in sprint_ioprio() 42 return outstr; in sprint_ioprio()
|
D | stream.c | 287 static char outstr[1024]; in decode_poll() local 289 #define end_outstr (outstr + sizeof(outstr)) in decode_poll() 313 outptr = outstr; in decode_poll() 324 if (outptr == outstr) { in decode_poll() 346 if (outptr != outstr /* && outptr < end_outstr - 1 (always true)*/) in decode_poll() 352 outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left "); in decode_poll() 357 if (outptr == outstr) in decode_poll() 360 tcp->auxstr = outstr; in decode_poll()
|
D | ldt.c | 69 static char outstr[32]; in sys_set_thread_area() local 71 sprintf(outstr, "entry_number:%d", desc.entry_number); in sys_set_thread_area() 72 tcp->auxstr = outstr; in sys_set_thread_area()
|
D | util.c | 305 static char outstr[1024]; in sprintflags() local 309 outptr = stpcpy(outstr, prefix); in sprintflags() 328 return outstr; in sprintflags() 434 string_quote(const char *instr, char *outstr, long len, int size) in string_quote() argument 437 char *s = outstr; in string_quote() 590 char *outstr; in printpathn() local 594 outstr = alloca(4 * n); /* 4*(n-1) + 3 for quotes and NUL */ in printpathn() 595 string_quote(path, outstr, -1, n); in printpathn() 596 tprints(outstr); in printpathn() 618 static char *outstr; in printstr() local [all …]
|
D | desc.c | 377 static char outstr[1024]; in decode_select() local 379 #define end_outstr (outstr + sizeof(outstr)) in decode_select() 395 outptr = outstr; in decode_select() 425 if (outptr != outstr) in decode_select() 437 tcp->auxstr = outstr; in decode_select()
|
D | signal.c | 185 static char outstr[128 + 8 * (NSIG * 2 / 3)]; in sprintsigmask_n() local 194 s = stpcpy(outstr, prefix); in sprintsigmask_n() 231 return outstr; in sprintsigmask_n()
|
D | file.c | 253 static char outstr[(1 + ARRAY_SIZE(open_mode_flags)) * sizeof("O_LARGEFILE")]; in sprint_open_modes() local 260 p = stpcpy(outstr, "flags"); in sprint_open_modes() 267 return outstr; in sprint_open_modes() 277 return outstr; in sprint_open_modes() 284 return outstr; in sprint_open_modes()
|
D | ChangeLog-CVS | 1201 * util.c (printstr): Fix size calculation for outstr allocation.
|
/external/chromium_org/native_client_sdk/src/libraries/error_handling/ |
D | string_stream.c | 24 char* outstr; in ssvprintf() local 29 outstr = malloc(stream->length + len + 1); in ssvprintf() 31 memcpy(outstr, stream->data, stream->length); in ssvprintf() 35 stream->data = outstr; in ssvprintf()
|
/external/chromium_org/base/ |
D | pickle_unittest.cc | 36 std::string outstr; in VerifyResult() local 37 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); in VerifyResult() 38 EXPECT_EQ(teststr, outstr); in VerifyResult() 131 std::string outstr; in TEST() local 132 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); in TEST() 133 EXPECT_EQ("", outstr); in TEST() 141 std::string outstr; in TEST() local 142 EXPECT_TRUE(pickle.ReadString(&iter, &outstr)); in TEST() 143 EXPECT_EQ("", outstr); in TEST() 151 std::string outstr; in TEST() local [all …]
|
/external/chromium_org/ppapi/generators/ |
D | idl_c_proto.py | 734 outstr = cgen.Define(node, releases=['M14']) 736 print outstr + '\n' 737 outstr = CleanString(outstr) 739 if instr != outstr: 741 (instr, outstr))
|
/external/libmtp/src/ |
D | libmtp.c | 2030 char outstr[256]; in add_ptp_error_to_errorstack() local 2031 snprintf(outstr, sizeof(outstr), "PTP Layer error %04x: %s", ptp_error, error_text); in add_ptp_error_to_errorstack() 2032 outstr[sizeof(outstr)-1] = '\0'; in add_ptp_error_to_errorstack() 2033 add_error_to_errorstack(device, LIBMTP_ERROR_PTP_LAYER, outstr); in add_ptp_error_to_errorstack()
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.cc | 4010 io::StringOutputStream outstr( in InterpretSingleOption() local 4012 io::CodedOutputStream out(&outstr); in InterpretSingleOption()
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 4457 io::StringOutputStream outstr( in InterpretSingleOption() local 4459 io::CodedOutputStream out(&outstr); in InterpretSingleOption()
|
/external/valgrind/main/perf/ |
D | tinycc.c | 8746 static void parse_escape_string(CString *outstr, const uint8_t *buf, int is_long) in parse_escape_string() argument 8839 cstr_ccat(outstr, c); in parse_escape_string() 8841 cstr_wccat(outstr, c); in parse_escape_string() 8845 cstr_ccat(outstr, '\0'); in parse_escape_string() 8847 cstr_wccat(outstr, '\0'); in parse_escape_string()
|