/external/toybox/toys/posix/ |
D | paste.c | 37 char *dpos, *dstr, *buf, c; local 72 dstr = dpos; 82 dstr = &c; 90 if (dlen<0) dpos = dstr+1; 93 dlen = dpos-dstr; 97 if (dlen) fwrite(dstr, dlen, 1, stdout);
|
/external/e2fsprogs/lib/et/ |
D | error_message.c | 232 char *dstr, *fn, *tmp; in init_debug() local 238 dstr = getenv("COMERR_DEBUG"); in init_debug() 239 if (dstr) { in init_debug() 240 debug_mask = strtoul(dstr, &tmp, 0); in init_debug()
|
/external/e2fsprogs/lib/blkid/ |
D | cache.c | 87 char *dstr = getenv("BLKID_DEBUG"); in blkid_get_cache() local 89 if (dstr) in blkid_get_cache() 90 blkid_debug_mask = strtoul(dstr, 0, 0); in blkid_get_cache()
|
/external/icu/icu4c/source/i18n/ |
D | vtzone.cpp | 1471 UnicodeString *dstr; in parse() local 1475 dstr = new UnicodeString(value, dstart); in parse() 1478 dstr = new UnicodeString(value, dstart, dend - dstart); in parse() 1480 dates->addElement(dstr, status); in parse() 2277 UnicodeString dstr; in writeZonePropsByDOM() local 2278 appendAsciiDigits(dayOfMonth, 0, dstr); in writeZonePropsByDOM() 2279 writer.write(dstr); in writeZonePropsByDOM() 2281 appendUNTIL(writer, getDateTimeString(untilTime + fromOffset, dstr), status); in writeZonePropsByDOM() 2311 UnicodeString dstr; in writeZonePropsByDOW() local 2312 appendAsciiDigits(weekInMonth, 0, dstr); in writeZonePropsByDOW() [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_clone.c | 298 clone_deref_struct(clone_state *state, const nir_deref_struct *dstr, in clone_deref_struct() argument 301 nir_deref_struct *ndstr = nir_deref_struct_create(parent, dstr->index); in clone_deref_struct() 303 ndstr->deref.type = dstr->deref.type; in clone_deref_struct() 304 if (dstr->deref.child) in clone_deref_struct() 305 ndstr->deref.child = clone_deref(state, dstr->deref.child, in clone_deref_struct()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | zic.c | 2116 struct rule stdr, dstr; in stringzone() local 2161 dstr.r_month = TM_JANUARY; in stringzone() 2162 dstr.r_dycode = DC_DOM; in stringzone() 2163 dstr.r_dayofmonth = 1; in stringzone() 2164 dstr.r_tod = 0; in stringzone() 2165 dstr.r_todisstd = dstr.r_todisgmt = FALSE; in stringzone() 2166 dstr.r_stdoff = stdrp->r_stdoff; in stringzone() 2167 dstr.r_abbrvar = stdrp->r_abbrvar; in stringzone() 2176 dstrp = &dstr; in stringzone()
|
/external/icu/icu4c/source/test/intltest/ |
D | calregts.cpp | 2916 UnicodeString dstr; in TestT9452() local 2924 sdf.format(d, dstr); in TestT9452() 2925 logln(UnicodeString("Initial date: ") + dstr); in TestT9452() 2932 dstr.remove(); in TestT9452() 2933 sdf.format(d, dstr); in TestT9452() 2934 logln(UnicodeString("+1 day: ") + dstr); in TestT9452() 2935 assertEquals("Add 1 day", UnicodeString("2011-12-31T00:00:00+14:00"), dstr); in TestT9452() 2942 dstr.remove(); in TestT9452() 2943 sdf.format(d, dstr); in TestT9452() 2944 logln(UnicodeString("-1 day: ") + dstr); in TestT9452() [all …]
|
D | numrgts.cpp | 604 UnicodeString dstr; in Test4068693() local 608 dstr = df->format(d.getDouble(), dstr, fp); in Test4068693() 609 if (dstr != UnicodeString("123.55456")) { in Test4068693()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
D | CalendarRegressionTest.java | 2343 String dstr = sdf.format(d); 2344 logln("Initial date: " + dstr); 2349 dstr = sdf.format(d); 2350 logln("+1 day: " + dstr); 2351 assertEquals("Add 1 day", "2011-12-31T00:00:00+14:00", dstr); 2356 dstr = sdf.format(d); 2357 logln("-1 day: " + dstr); 2358 assertEquals("Subtract 1 day", "2011-12-29T00:00:00-10:00", dstr);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | CalendarRegressionTest.java | 2342 String dstr = sdf.format(d); 2343 logln("Initial date: " + dstr); 2348 dstr = sdf.format(d); 2349 logln("+1 day: " + dstr); 2350 assertEquals("Add 1 day", "2011-12-31T00:00:00+14:00", dstr); 2355 dstr = sdf.format(d); 2356 logln("-1 day: " + dstr); 2357 assertEquals("Subtract 1 day", "2011-12-29T00:00:00-10:00", dstr);
|