HomeSort by relevance Sort by last modified time
    Searched defs:df (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/chromium_org/v8/test/intl/date-format/
timezone.js 30 var df = Intl.DateTimeFormat(); variable
31 assertEquals(getDefaultTimeZone(), df.resolvedOptions().timeZone);
33 df = Intl.DateTimeFormat(undefined, {timeZone: 'UtC'});
34 assertEquals('UTC', df.resolvedOptions().timeZone);
36 df = Intl.DateTimeFormat(undefined, {timeZone: 'gmt'});
37 assertEquals('UTC', df.resolvedOptions().timeZone);
39 df = Intl.DateTimeFormat(undefined, {timeZone: 'America/Los_Angeles'});
40 assertEquals('America/Los_Angeles', df.resolvedOptions().timeZone);
42 df = Intl.DateTimeFormat(undefined, {timeZone: 'Europe/Belgrade'});
43 assertEquals('Europe/Belgrade', df.resolvedOptions().timeZone)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosl.c 47 long double z,p,q,r,w,s,c,df; local
79 df = u.e;
80 c = (z-df*df)/(s+df);
85 return 2.0*(df+w);
e_acosf.c 37 float z,p,q,r,w,s,c,df; local
67 df = s;
68 GET_FLOAT_WORD(idf,df);
69 SET_FLOAT_WORD(df,idf&0xfffff000);
70 c = (z-df*df)/(s+df);
75 return (float)2.0*(df+w);
e_acos.c 67 double z,p,q,r,w,s,c,df; local
98 df = s;
99 SET_LOW_WORD(df,0);
100 c = (z-df*df)/(s+df);
105 return 2.0*(df+w);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
ParseExceptionTest.java 30 DateFormat df = DateFormat.getInstance(); local
31 df.parse("HelloWorld");
43 DateFormat df = DateFormat.getInstance(); local
44 df.parse("1999HelloWorld");
DecimalFormatTest.java 309 DecimalFormat df = new DecimalFormat(); local
311 Number nb = df.parse("" + Long.MIN_VALUE, pos);
317 df = new DecimalFormat();
319 nb = df.parse("" + Long.MAX_VALUE, pos);
326 df = new DecimalFormat();
328 nb = df.parse("invalid", pos);
815 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local
816 compare("00.0#E0: 0.0", df.format(0.0), "00.0E0");
817 compare("00.0#E0: 1.0", df.format(1.0), "10.0E-1")
1044 DecimalFormat df = new DecimalFormat("00.0#E0", dfs); local
1179 DecimalFormat df = (DecimalFormat) NumberFormat local
1195 DecimalFormat df = (DecimalFormat) NumberFormat local
1231 DecimalFormat df = new DecimalFormat("###0.##"); local
1248 DecimalFormat df = new DecimalFormat("###0.##"); local
1260 DecimalFormat df = new DecimalFormat("###0.##"); local
1367 DecimalFormat df = new DecimalFormat("###0.##"); local
1388 DecimalFormat df = new DecimalFormat("###0.##", local
1401 DecimalFormat df = ((DecimalFormat) NumberFormat local
1426 DecimalFormat df = new DecimalFormat("###0.##", local
1439 DecimalFormat df = new DecimalFormat("###0.##", local
1453 DecimalFormat df = new DecimalFormat("###0.##"); local
1466 DecimalFormat df = new DecimalFormat("###0.##", local
1480 DecimalFormat df = new DecimalFormat("###0.##", local
1495 DecimalFormat df = new DecimalFormat("###0.##"); local
1520 DecimalFormat df = null; local
    [all...]
  /system/core/toolbox/
df.c 30 static void df(char *s, int always) { function
72 df(e, 0);
80 df(argv[i], 1);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ISO8601Converter.java 314 DecimalFormat df = new DecimalFormat("0000", new DecimalFormatSymbols(Locale.ENGLISH)); local
315 buffer.append(df.format(dateTime.getYear()));
322 df.applyPattern("'-'00");
323 buffer.append(df.format(dateTime.getMonth()));
330 buffer.append(df.format(dateTime.getDay()));
341 df.applyPattern("00");
342 buffer.append(df.format(dateTime.getHour()));
344 buffer.append(df.format(dateTime.getMinute()));
351 df.applyPattern(":00.#########");
352 buffer.append(df.format(seconds))
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
tsdcfmsy.cpp 218 DecimalFormat *df = new DecimalFormat(pattern, sym, status); local
224 buffer = df->format(value, buffer, pos);
229 delete df;
miscdtfm.cpp 163 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
166 format0 = df->format(d, format0);
168 localizedPattern0 = df->toLocalizedPattern(localizedPattern0, status);
169 failure(status, "df->toLocalizedPattern");
172 format1 = df->format(d, format1);
178 localizedPattern1 = df->toLocalizedPattern(localizedPattern1, status);
179 failure(status, "df->toLocalizedPattern");
185 delete df;
195 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status);
197 df->setDateFormatSymbols(*symbols)
255 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status); local
    [all...]
nmfmtrt.cpp 185 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
186 if(df != NULL)
190 test(fmt, randomDouble(DBL_MAX/2.0) / df->getMultiplier());
192 test(fmt, randomDouble(1e75) / df->getMultiplier());
194 test(fmt, randomDouble(1e65) / df->getMultiplier()); /*OS390*/
233 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
234 if(df != NULL) {
235 df->setRoundingIncrement(0.0);
  /external/icu4c/test/intltest/
tsdcfmsy.cpp 218 DecimalFormat *df = new DecimalFormat(pattern, sym, status); local
224 buffer = df->format(value, buffer, pos);
229 delete df;
miscdtfm.cpp 166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); local
169 format0 = df->format(d, format0);
171 localizedPattern0 = df->toLocalizedPattern(localizedPattern0, status);
172 failure(status, "df->toLocalizedPattern");
175 format1 = df->format(d, format1);
181 localizedPattern1 = df->toLocalizedPattern(localizedPattern1, status);
182 failure(status, "df->toLocalizedPattern");
188 delete df;
198 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status);
200 df->setDateFormatSymbols(*symbols)
258 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), status); local
    [all...]
nmfmtrt.cpp 185 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
186 if(df != NULL)
190 test(fmt, randomDouble(DBL_MAX/2.0) / df->getMultiplier());
192 test(fmt, randomDouble(1e75) / df->getMultiplier());
194 test(fmt, randomDouble(1e65) / df->getMultiplier());
233 DecimalFormat *df = dynamic_cast<DecimalFormat *>(fmt); local
234 if(df != NULL) {
235 df->setRoundingIncrement(0.0);
  /bionic/tests/
math_test.cpp 1131 double df = modf(123.456, &di); local
1133 ASSERT_FLOAT_EQ(0.456, df);
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 25 * This class allows you to add a method df() to your functor, which will
28 * for the derivative, you should rather implement df() by yourself.
64 int df(const InputType& _x, JacobianType &jac) const function in class:Eigen::NumericalDiff
  /external/fdlibm/
e_acos.c 67 double z,p,q,r,w,s,c,df; local
96 df = s;
97 __LO(df) = 0;
98 c = (z-df*df)/(s+df);
103 return 2.0*(df+w);
  /external/hyphenation/
example.c 60 int df; local
93 df = arg++;
107 if ((dict = hnj_hyphen_load(argv[df])) == NULL) {
108 fprintf(stderr, "Couldn't find file %s\n", argv[df]);
  /external/speex/libspeex/
filterbank.c 57 spx_word32_t df; local
62 df = DIV32(SHL32(sampling,15),MULT16_16(2,len));
82 curr_freq = EXTRACT16(MULT16_32_P15(i,df));
  /external/valgrind/main/none/tests/x86/
bug152818-x86.c 101 int df; local
131 df = (idx >= (sizeof(lens)/sizeof(lens[0]))/2);
136 if (df)
152 if (df)
172 if (df)
188 if (df)
208 printf ("DF = %d, count = %2d ", df, len);
  /libcore/luni/src/test/java/libcore/java/text/
DecimalFormatTest.java 30 DecimalFormat df = new DecimalFormat("0E0"); local
31 assertEquals("1E4", df.format(12345.));
33 DecimalFormatSymbols dfs = df.getDecimalFormatSymbols();
35 df.setDecimalFormatSymbols(dfs);
36 assertEquals("1-useless-api-4", df.format(12345.));
40 DecimalFormat df = (DecimalFormat) DecimalFormat.getInstance(Locale.US); local
41 df.setMaximumFractionDigits(0);
42 df.setRoundingMode(RoundingMode.HALF_UP);
43 assertEquals("-0", df.format(-0.2));
44 df.setMaximumFractionDigits(1)
121 DecimalFormat df = (DecimalFormat) NumberFormat.getInstance(); local
161 DecimalFormat df = (DecimalFormat)NumberFormat.getInstance(); local
169 DecimalFormat df = (DecimalFormat)NumberFormat.getIntegerInstance(locale); local
195 DecimalFormat df = (DecimalFormat) NumberFormat.getCurrencyInstance(Locale.US); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemWithParam.java 215 int df = transformer.transformToRTF(this); local
217 var = new XRTreeFrag(df, xctxt, this);
  /external/chromium/net/tools/flip_server/
streamer_interface.cc 77 DataFrame* df = new DataFrame; local
78 df->data = (const char *)dataPtr;
79 df->size = len;
80 df->delete_when_done = true;
81 connection_->EnqueueDataFrame(df);
  /external/chromium_org/net/tools/flip_server/
streamer_interface.cc 77 DataFrame* df = new DataFrame; local
78 df->data = (const char *)dataPtr;
79 df->size = len;
80 df->delete_when_done = true;
81 connection_->EnqueueDataFrame(df);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_images.c 403 VGfloat *df = (VGfloat*)temp; local
455 pipe_get_tile_rgba(pipe, transfer, sx, y, width, 1, df);

Completed in 750 milliseconds

1 2 3 4 5 6