HomeSort by relevance Sort by last modified time
    Searched defs:df (Results 126 - 150 of 552) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 159 static private final DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.US); field in class:TimeZoneAliasTest.Zone
235 return df.format(new Date(seconds));
  /external/ltp/testcases/network/nfsv4/locks/
locktests.c 191 struct dataChild *df; local
195 df = malloc(sizeof(struct dataChild));
197 df->dp = &dp;
198 df->dpr = dpr;
207 return df;
231 void cleanClient(struct dataChild *df)
234 i = df->dpr->whoami;
236 free(df->dpr);
237 free(df);
249 struct dataChild *df; local
750 struct dataChild *df; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowFrameTests.java 146 final Rect df = pf; local
147 final Rect of = df;
163 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
178 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
330 final Rect df = pf; local
331 final Rect of = df;
343 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
349 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
  /frameworks/native/services/surfaceflinger/tests/hwc2/
Hwc2TestBuffer.cpp 501 const hwc_rect_t df = testLayers->getDisplayFrame(*layer); local
503 float dfL = df.left;
504 float dfT = df.top;
505 float dfR = df.right;
506 float dfB = df.bottom;
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java 101 String df = fn + ".data"; local
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
IPControls.java 257 java.text.DecimalFormat df = new java.text.DecimalFormat("######.##"); local
263 String s = new String("" + t.toString() + ", " + df.format(r) + ", " + df.format(r2));
275 java.text.DecimalFormat df = new java.text.DecimalFormat("######.#"); local
284 String s = t.toString() + " " + df.format(rebase(r[ct], t)) +
285 "X, " + df.format(r[ct]) + "ms";
302 String s = "Results: fp full=" + df.format(geometricMean[0]) +
303 ", fp relaxed=" +df.format(geometricMean[1]) +
304 ", intrinsics=" + df.format(geometricMean[2]);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
IPControlsJB.java 258 java.text.DecimalFormat df = new java.text.DecimalFormat("######.##"); local
264 String s = new String("" + t.toString() + ", " + df.format(r) + ", " + df.format(r2));
276 java.text.DecimalFormat df = new java.text.DecimalFormat("######.#"); local
285 String s = t.toString() + " " + df.format(rebase(r[ct], t)) +
286 "X, " + df.format(r[ct]) + "ms";
303 String s = "Results: fp full=" + df.format(gm[0]) +
304 ", fp relaxed=" +df.format(gm[1]) +
305 ", intrinsics=" + df.format(gm[2]);
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
ViewMatrix.java 94 String s = " " + df.format(d);
107 private static DecimalFormat df = new DecimalFormat("##0.000"); field in class:ViewMatrix
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 737 SimpleDateFormat df = new SimpleDateFormat("EE, dd MMM yyyy HH:mm:ss z"); local
738 df.setTimeZone(TimeZone.getTimeZone("GMT"));
742 psPrint(ps, "Date: " + df.format(new Date()));
775 + df.format(exp) + " GMT");
797 + df.format(exp) + " GMT");
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppUtility.java 285 DecimalFormat df = new DecimalFormat("0%"); local
286 df.setRoundingMode(RoundingMode.DOWN);
291 return df.format(percent);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 537 * @param df The current {@link DropFeedback}.
540 private void updateDropFeedback(DropFeedback df, DropTargetEvent event) {
542 df.isCopy = event.detail == DND.DROP_COPY;
544 df.sameCanvas = mCanvas == mGlobalDragInfo.getSourceCanvas();
545 df.invalidTarget = false;
546 df.dipScale = mCanvas.getEditorDelegate().getGraphicalEditor().getDipScale();
547 df.modifierMask = mCanvas.getGestureManager().getRuleModifierMask();
567 df.dragBaseline = baseline;
569 df.dragBounds = dragBounds;
675 DropFeedback df = null local
752 DropFeedback df = mCanvas.getRulesEngine().callOnDropMove( local
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
hppa-dis.c 1156 int df = GET_FIELD (insn, 17, 18); local
1175 t, source[sf], dest[df]);
  /libcore/ojluni/src/test/java/time/test/java/time/chrono/
TestUmmAlQuraChronology.java 467 DateTimeFormatter df = DateTimeFormatter.ofLocalizedDate(FormatStyle.LONG).withChronology(Chronology.of("Hijrah-umalqura")).withLocale(Locale.US); local
468 assertEquals(df.format(hdt), expected);
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 122 DecimalFormat df = new DecimalFormat("###.#####"); local
126 assertEquals("-" + df.format(80.0), result);
129 assertEquals("-80:" + df.format(5.1), result);
132 assertEquals("-80:" + df.format(0), result);
135 assertEquals("-80:" + df.format(4.5), result);
138 assertEquals("-" + df.format(80.075), result);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
CustomVirtualView.java 151 DateFormat df = android.text.format.DateFormat.getDateFormat(context); local
178 item.text = df.format(new Date(value.getDateValue()));
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CustomVirtualView.java 153 DateFormat df = android.text.format.DateFormat.getDateFormat(context); local
180 item.text = df.format(new Date(value.getDateValue()));
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 191 extern constexpr void (D::*df)() = &C::f; member in namespace:MemberPtr
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
GlobalizationPreferencesTest.java 102 DateFormat df = gp.getDateFormat(GlobalizationPreferences.DF_FULL, GlobalizationPreferences.DF_NONE);
103 ULocale dfLocale = df.getLocale(ULocale.VALID_LOCALE);
1181 DateFormat df; local
    [all...]
  /external/icu/icu4c/source/i18n/
astro.cpp 47 static DateFormat *df = NULL; local
48 if(df == NULL) {
49 df = DateFormat::createDateTimeInstance(DateFormat::MEDIUM, DateFormat::MEDIUM, Locale::getUS());
50 df->adoptTimeZone(TimeZone::getGMT()->clone());
53 df->format(d,str);
    [all...]
numfmt.cpp 1483 DecimalFormat* df = new DecimalFormat(pattern, syms, style, status); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmrgts.cpp 404 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("dd/MM/yyyy"), status); local
407 delete df;
412 logln(UnicodeString("") + df->parse("35/01/1971", status));
413 failure(status, "df->parse(\"35/01/1971\")");
414 //logln(df.parse("35/01/1971").toString());
420 df->setLenient(FALSE);
423 logln(UnicodeString("") + df->parse("35/01/1971", status));
426 //logln(df.parse("35/01/1971").toString());
430 delete df;
754 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("MMMM"), Locale::getUS(), status); local
907 DateFormat *df = DateFormat::createDateTimeInstance(); local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DateFormat.java 55 * DateFormat df = DateFormat.getDateInstance();
57 * output.println(df.format(myDate[i]) + "; ");
63 * DateFormat df = DateFormat.getDateInstance(DateFormat.LONG, Locale.FRANCE);
67 * myDate = df.parse(myString);
1404 DateFormat df = getDateInstance(dateStyle, locale); local
1424 DateFormat df = getDateInstance(dateStyle, locale); local
1449 DateFormat df = getTimeInstance(timeStyle, locale); local
1474 DateFormat df = getTimeInstance(timeStyle, locale); local
1504 DateFormat df = getDateTimeInstance(dateStyle, timeStyle, locale); local
1534 DateFormat df = getDateTimeInstance(dateStyle, timeStyle, locale); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/
GlobalizationPreferencesTest.java 99 DateFormat df = gp.getDateFormat(GlobalizationPreferences.DF_FULL, GlobalizationPreferences.DF_NONE);
100 ULocale dfLocale = df.getLocale(ULocale.VALID_LOCALE);
1178 DateFormat df; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_emit_nv50.cpp 755 DataFile df = i->getDef(0)->reg.file; local
757 assert(sf == FILE_GPR || df == FILE_GPR);
773 if (df == FILE_FLAGS) {
797 if (df == FILE_SHADER_OUTPUT) {
    [all...]
  /external/opencv/ml/src/
mlann_mlp.cpp 481 double* df = _df->data.db; local
487 for( i = 0; i < n; i++, xf += cols, df += cols )
491 df[j] = 1;
499 for( i = 0; i < n; i++, xf += cols, df += cols )
503 df[j] = t*2*scale2;
510 for( i = 0; i < n; i++, xf += cols, df += cols )
518 xf -= n; df -= n;
534 df[i] = scale*xf[i]*t0*t0;
535 df[i+1] = scale*xf[i+1]*t1*t1;
540 df[i+2] = scale*xf[i+2]*t0*t0
880 double **x = 0, **df = 0; local
1056 double **x = 0, **df = 0; local
    [all...]

Completed in 1515 milliseconds

1 2 3 4 56 7 8 91011>>