HomeSort by relevance Sort by last modified time
    Searched refs:sdf (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
SimpleDateFormatTest.java 45 SimpleDateFormat sdf = new SimpleDateFormat(hmzmdy); local
46 sdf.format(cal, buf, fp);
57 SimpleDateFormat sdf = new SimpleDateFormat(hmzmdy); local
58 sdf.parse(hmzmdyStr, cal, pp);
74 SimpleDateFormat sdf = new SimpleDateFormat(); local
76 assertEquals(jsdf.format(date), sdf.format(date));
83 SimpleDateFormat sdf = new SimpleDateFormat(mdy); local
85 assertEquals(jsdf.format(date), sdf.format(date));
93 SimpleDateFormat sdf = new SimpleDateFormat(mdy, l); local
95 assertEquals(jsdf.format(date), sdf.format(date))
103 SimpleDateFormat sdf = new SimpleDateFormat(mdy, l); local
115 SimpleDateFormat sdf = new SimpleDateFormat(mdy, dfs); local
124 SimpleDateFormat sdf = new SimpleDateFormat(md2); local
139 SimpleDateFormat sdf = new SimpleDateFormat(md2); local
148 SimpleDateFormat sdf = new SimpleDateFormat(mdy); local
158 SimpleDateFormat sdf = new SimpleDateFormat(mdy); local
167 SimpleDateFormat sdf = new SimpleDateFormat(); local
177 SimpleDateFormat sdf = new SimpleDateFormat(); local
188 SimpleDateFormat sdf = new SimpleDateFormat(mdy, dfs); local
197 SimpleDateFormat sdf = new SimpleDateFormat(hmzmdy); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
SimpleDateFormatTest.java 53 SimpleDateFormat sdf = new SimpleDateFormat(); local
54 Date originalDate = sdf.get2DigitYearStart();
55 assertNotSame(sdf.get2DigitYearStart(), originalDate);
56 assertEquals(sdf.get2DigitYearStart(), originalDate);
58 assertFalse(sdf.get2DigitYearStart().equals(originalDate));
61 sdf.set2DigitYearStart(newDate);
62 assertNotSame(sdf.get2DigitYearStart(), newDate);
63 assertEquals(sdf.get2DigitYearStart(), newDate);
65 assertFalse(sdf.get2DigitYearStart().equals(newDate));
212 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l) local
219 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l); local
254 SimpleDateFormat sdf = new SimpleDateFormat(fmt, cetUnambiguousLocale); local
275 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z"); local
343 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss zzzz", l); local
356 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", new Locale("ar", "EG")); local
374 SimpleDateFormat sdf = new SimpleDateFormat("d. MMM yyyy H:mm", Locale.GERMAN); local
382 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.S"); local
416 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); local
    [all...]
DateFormatSymbolsTest.java 80 SimpleDateFormat sdf = new SimpleDateFormat(fmt, l); local
81 sdf.setDateFormatSymbols(dfs);
82 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
83 return sdf.format(new Date(0));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRegressionTestJ.java 178 SimpleDateFormat sdf = new SimpleDateFormat(); local
184 sdf.applyPattern("MM d y");
185 logln(sdf.format(today));
186 sdf.applyPattern("MM d yy");
187 logln(sdf.format(today));
189 sdf.applyPattern("MM d yyy");
190 logln(sdf.format(today));
192 sdf.applyPattern("MM d yyyy");
193 logln(sdf.format(today));
195 sdf.applyPattern("MM d yyyyy")
202 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.JAPAN); local
229 SimpleDateFormat sdf = new SimpleDateFormat(pattern); local
253 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
280 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
    [all...]
IntlTestDateFormatAPIC.java 71 SimpleDateFormat sdf = new SimpleDateFormat(); local
73 str = sdf.format(dateObj);
74 strBuffer = sdf.format(dateObj, strBuffer, fpos);
76 strBuffer = sdf.format(new Date(0), strBuffer, fpos);
77 str = sdf.format(new Date(0));
79 sdf.parse(str);
80 sdf.parse(str, ppos);
TimeZoneFormatTest.java 147 SimpleDateFormat sdf = new SimpleDateFormat(PATTERNS[patidx], LOCALES[locidx]); local
157 sdf.setTimeZone(tz);
158 String tzstr = sdf.format(DATES[datidx]);
163 sdf.setTimeZone(unknownZone);
171 sdf.parse(tzstr, outcal, pos);
374 SimpleDateFormat sdf = new SimpleDateFormat(pattern, LOCALES[locidx]); local
419 sdf.setTimeZone(tz);
459 String text = sdf.format(new Date(testTimes[testidx]));
461 Date parsedDate = sdf.parse(text);
804 SimpleDateFormat sdf = new SimpleDateFormat(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRegressionTestJ.java 174 SimpleDateFormat sdf = new SimpleDateFormat(); local
180 sdf.applyPattern("MM d y");
181 logln(sdf.format(today));
182 sdf.applyPattern("MM d yy");
183 logln(sdf.format(today));
185 sdf.applyPattern("MM d yyy");
186 logln(sdf.format(today));
188 sdf.applyPattern("MM d yyyy");
189 logln(sdf.format(today));
191 sdf.applyPattern("MM d yyyyy")
198 SimpleDateFormat sdf = new SimpleDateFormat(pattern, Locale.JAPAN); local
225 SimpleDateFormat sdf = new SimpleDateFormat(pattern); local
249 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
276 SimpleDateFormat sdf = (SimpleDateFormat) sdf_.clone(); local
    [all...]
IntlTestDateFormatAPIC.java 67 SimpleDateFormat sdf = new SimpleDateFormat(); local
69 str = sdf.format(dateObj);
70 strBuffer = sdf.format(dateObj, strBuffer, fpos);
72 strBuffer = sdf.format(new Date(0), strBuffer, fpos);
73 str = sdf.format(new Date(0));
75 sdf.parse(str);
76 sdf.parse(str, ppos);
  /external/clang/test/CodeGen/
ppc64-qpx-vector.c 8 struct sdf { v4df v; }; struct
20 v4df foo2(struct sdf a, v4df b, struct sdf2 c) {
  /external/icu/icu4c/source/samples/dtptngsample/
dtptngsample.cpp 56 SimpleDateFormat *sdf = new SimpleDateFormat(pattern,locales[j],status); local
59 sdf->format(date,dateReturned,status);
63 delete sdf;
89 SimpleDateFormat *sdf = new SimpleDateFormat(dtfg->getBestPattern("MMMMddHmm",status),locale,status); local
93 sdf->applyPattern(dtfg->getBestPattern("MMMMddHmm",status));
94 dateReturned = sdf->format(date, dateReturned, status);
95 pattern =sdf->toPattern(pattern);
101 delete sdf;
130 SimpleDateFormat *sdf = new SimpleDateFormat("EEEE d MMMM y HH:mm:ss zzzz",locale,status); local
131 sdf->setTimeZone(*zone)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/
document.py 61 CloudSearch. Commands are uploaded to CloudSearch in SDF (Search Document Format).
63 To generate an appropriate SDF, use :func:`add` to add or update documents,
70 generation of SDF data and the actual uploading into CloudSearch. Retrieve
71 the current SDF with :func:`get_sdf`. If this file is the uploaded into S3,
75 The SDF is not cleared after a :func:`commit`. If you wish to continue
136 Generate the working set of documents in Search Data Format (SDF)
139 :returns: JSON-formatted string of the documents in SDF
157 Load an SDF from S3
163 :param key_obj: An S3 key which contains an SDF
171 Actually send an SDF to CloudSearch for processin
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/
document.py 67 CloudSearch. Commands are uploaded to CloudSearch in SDF (Search Document
70 To generate an appropriate SDF, use :func:`add` to add or update documents,
77 generation of SDF data and the actual uploading into CloudSearch. Retrieve
78 the current SDF with :func:`get_sdf`. If this file is the uploaded into S3,
82 The SDF is not cleared after a :func:`commit`. If you wish to continue
149 Generate the working set of documents in Search Data Format (SDF)
152 :returns: JSON-formatted string of the documents in SDF
170 Load an SDF from S3
176 :param key_obj: An S3 key which contains an SDF
182 def _commit_with_auth(self, sdf, api_version)
    [all...]
  /external/icu/icu4c/source/test/perf/normperf/
dtfmtrtperf.h 152 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], *status); local
170 sdf->setTimeZone(*tz);
171 sdf->format(DATES[datidx], tzstr, fpos);
176 sdf->setTimeZone(unknownZone);
188 sdf->parse(tzstr, *outcal, pos);
199 delete sdf;
  /external/caliper/examples/src/main/java/examples/
ExpensiveObjectsBenchmark.java 63 SimpleDateFormat sdf = new SimpleDateFormat(); local
65 sdf.clone();
  /external/libvpx/libvpx/vpx_dsp/
variance.h 62 vpx_sad_fn_t sdf; member in struct:variance_vtable
79 vpx_sad_fn_t sdf; member in struct:vp9_variance_vtable
  /external/icu/icu4c/source/test/intltest/
dtfmrgts.cpp 77 SimpleDateFormat *sdf = (SimpleDateFormat*) DateFormat::createDateInstance(); local
82 if(sdf == NULL){
87 pat = sdf->toPattern(pat);
92 fmtd = sdf->format(today, fmtd, pos);
95 sdf->applyPattern("G yyyy DDD");
97 todayS = sdf->format(today, todayS, pos);
100 today = sdf->parse(todayS, status);
101 failure(status, "sdf->parse");
109 rt = sdf->format(sdf->parse(todayS, status), rt, pos)
717 SimpleDateFormat *sdf = new SimpleDateFormat(UnicodeString("z"), Locale::getUS(), status); local
804 SimpleDateFormat *sdf = new SimpleDateFormat(status); local
869 SimpleDateFormat *sdf = new SimpleDateFormat(status); local
1338 SimpleDateFormat *sdf = new SimpleDateFormat(pattern,status); local
1447 SimpleDateFormat *sdf = new SimpleDateFormat(pattern,status); local
    [all...]
dtfmapts.cpp 308 SimpleDateFormat sdf(status);
311 sdf.format(dateObj, str, status);
312 sdf.format(dateObj, str, fpos, status);
314 sdf.format((UDate)0, str, fpos);
315 sdf.format((UDate)0, str);
316 sdf.parse(str, status);
317 sdf.parse(str, ppos);
318 sdf.getNumberFormat();
tzfmttst.cpp 166 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], status); local
183 sdf->setTimeZone(*tz);
184 sdf->format(DATES[datidx], tzstr, fpos);
189 sdf->setTimeZone(unknownZone);
202 sdf->parse(tzstr, *outcal, pos);
331 delete sdf;
461 SimpleDateFormat *sdf = new SimpleDateFormat(pattern, data.locales[locidx], status); local
501 sdf->setTimeZone(*tz);
552 sdf->format(testTimes[testidx], text, fpos);
554 UDate parsedDate = sdf->parse(text, status)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerUTCTimeEDTest.java 64 SimpleDateFormat sdf = local
66 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
67 myDate = sdf.parse("06.06.2004 00:00");
UTCTimeTest.java 48 SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy HH:mm:ss", Locale.US); typedefs
49 sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
81 validUTCTimes[i][2] = sdf
DerGeneralizedTimeEDTest.java 82 SimpleDateFormat sdf = local
84 sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
85 myDate = sdf.parse("06.06.2004 00:00");
GeneralizedTimeTest.java 51 SimpleDateFormat sdf = new SimpleDateFormat("dd MMM yyyy HH:mm:ss", Locale.US); typedefs
52 sdf.setTimeZone(TimeZone.getTimeZone("GMT"));
90 validGeneralizedTimes[i][2] = sdf
  /external/svox/pico/lib/
picoos.c 1516 picoos_sd_file_t * sdf = NULL; local
1578 picoos_sd_file_t * sdf = sdFile; local
1726 picoos_sd_file_t * sdf = NULL; local
    [all...]
  /external/skia/src/gpu/
GrSWMaskHelper.h 68 void toSDF(unsigned char* sdf);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
variance.h 105 vp8_sad_fn_t sdf; member in struct:variance_vtable

Completed in 565 milliseconds

1 2 3 4 5