HomeSort by relevance Sort by last modified time
    Searched defs:format (Results 176 - 200 of 2535) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
103 int32_t width, int32_t height, int32_t format);
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
103 int32_t width, int32_t height, int32_t format);
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
103 int32_t width, int32_t height, int32_t format);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
99 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
99 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/android/
native_window.h 49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
99 int32_t ANativeWindow_setBuffersGeometry(ANativeWindow* window, int32_t width, int32_t height, int32_t format);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLDataTypeSpec.java 17 package com.android.ide.eclipse.gltrace.format;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
TestLogger.java 32 String message = String.format(errorFormat, args);
41 System.out.println(String.format(msgFormat, args));
51 System.err.println(String.format(warningFormat, args));
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.7/
slf4j-api-1.7.7.jar 
  /external/jetty/lib/
slf4j-jdk14-1.6.1.jar 
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DecimalFormatTest.java 50 df.format(Double.NaN);
79 DecimalFormat format = new DecimalFormat(); local
80 assertFalse("Default value of isParseIntegerOnly is true", format.isParseIntegerOnly());
82 format.setParseIntegerOnly(true);
83 assertTrue(format.isParseIntegerOnly());
84 Number result = format.parse("123.123");
87 format.setParseIntegerOnly(false);
88 assertFalse(format.isParseIntegerOnly());
89 result = format.parse("123.123");
399 form.format(12.3)
559 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
646 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
682 DecimalFormat format = new DecimalFormat(); local
697 DecimalFormat format = new DecimalFormat(); local
712 DecimalFormat format = new DecimalFormat(); local
726 DecimalFormat format = new DecimalFormat(); local
741 DecimalFormat format = new DecimalFormat(); local
795 DecimalFormat format = new DecimalFormat("'$'0000.0000"); local
871 DecimalFormat format = new DecimalFormat("#.#"); local
939 DecimalFormat format = new DecimalFormat(); local
967 DecimalFormat format = new DecimalFormat(); local
979 DecimalFormat format = new DecimalFormat(); local
998 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(Locale.US); local
1472 DecimalFormat format = new DecimalFormat("#0.#", dfs); local
1634 DecimalFormat format = new DecimalFormat("#0.#", dfs); local
1771 DecimalFormat format = (DecimalFormat) NumberFormat.getNumberInstance(Locale.ENGLISH); local
1830 DecimalFormat format = (DecimalFormat) NumberFormat.getNumberInstance(Locale.ENGLISH); local
1866 DecimalFormat format = new DecimalFormat(); local
1972 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(); local
1982 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(); local
1992 DecimalFormat format = (DecimalFormat) NumberFormat.getInstance(); local
2562 public void format(DecimalFormat format, String expected, double value) { method in class:DecimalFormatTest.FormatTester
2571 public void format(DecimalFormat format, String expected, int value) { method in class:DecimalFormatTest.FormatTester
    [all...]
SimpleDateFormatTest.java 35 private SimpleDateFormat format; field in class:SimpleDateFormatTest
44 format = new SimpleDateFormat("", Locale.ENGLISH);
59 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
69 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
73 new SimpleDateFormat("this is an invalid simple date format");
97 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
120 assertTrue("Doesn't work", f2.format(new Date()).getClass() == String.class);
200 assertTrue("Format modified", !f2.equals(clone));
212 SimpleDateFormat format = (SimpleDateFormat) DateFormat.getInstance(); local
213 SimpleDateFormat clone = (SimpleDateFormat) format.clone()
227 SimpleDateFormat format = (SimpleDateFormat) DateFormat.getInstance(); local
    [all...]
Support_Format.java 22 import java.text.Format;
37 protected void t_FormatWithField(int count, Format format, Object object,
38 String text, Format.Field field, int begin, int end) {
41 format.format(object, buffer, pos);
58 protected void t_Format(int count, Object object, Format format, Vector<FieldContainer> expectedResults) {
59 Vector<FieldContainer> results = findFields(format.formatToCharacterIterator(object));
61 format.format(object) + "\n"
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
slf4j-simple-1.7.5.jar 
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-simple/1.7.2/
slf4j-simple-1.7.2.jar 
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
FormatterTest.java 46 assertEquals("format", f.format(r));
70 assertEquals(MessageFormat.format(pattern, oa), f.formatMessage(r));
100 assertEquals(MessageFormat.format(rb.getString("pattern"), oa), f
129 public String format(LogRecord arg0) { method in class:FormatterTest.MockFormatter
130 return "format";
  /external/guava/guava/src/com/google/common/base/
CaseFormat.java 44 @Override String convert(CaseFormat format, String s) {
45 if (format == LOWER_UNDERSCORE) {
48 if (format == UPPER_UNDERSCORE) {
51 return super.convert(format, s);
62 @Override String convert(CaseFormat format, String s) {
63 if (format == LOWER_HYPHEN) {
66 if (format == UPPER_UNDERSCORE) {
69 return super.convert(format, s);
98 @Override String convert(CaseFormat format, String s) {
99 if (format == LOWER_HYPHEN)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatMiscTests.java 9 * Port From: ICU4C v1.8.1 : format : DateFormatMiscTests
13 package com.ibm.icu.dev.test.format;
50 logln("Format\tSource\tResult");
58 logln(resultFormatter.format(formatter.parse(dstring[i]), str, pos).toString());
80 String s0 = df.format(d);
81 String s_dfClone = dfClone.format(d);
85 String s1 = df.format(d);
102 String s0 = df.format(d);
103 String s_dfClone = dfClone.format(d);
107 String s1 = df.format(d)
    [all...]
RelativeDateTimeFormatterTest.java 7 package com.ibm.icu.dev.test.format;
88 String actual = fmt.format(
162 String actual = fmt.format(
236 String actual = fmt.format(
310 String actual = fmt.format(
326 String actual = fmt.format(
344 String actual = fmt.format(
408 String actual = fmt.format((Direction) row[0], (AbsoluteUnit) row[1]);
477 String actual = fmt.format((Direction) row[0], (AbsoluteUnit) row[1]);
    [all...]
  /art/test/021-string2/src/junit/framework/
Assert.java 287 fail(format(message, expected, actual)); method
290 public static String format(String message, Object expected, Object actual) { method in class:Assert
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 287 fail(format(message, expected, actual)); method
290 public static String format(String message, Object expected, Object actual) { method in class:Assert
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
XmlReport.java 40 SimpleDateFormat format = new SimpleDateFormat("EEE, MMM d, yyyy h:mm a z"); local
41 String date = format.format(new Date(System.currentTimeMillis()));
  /cts/tools/vm-tests-tf/src/dot/junit/format/f1/
Test_f1.java 17 package dot.junit.format.f1;
30 Class.forName("dot.junit.format.f1.d.T_f1_1");
43 Class.forName("dot.junit.format.f1.d.T_f1_2");
56 Class.forName("dot.junit.format.f1.d.T_f1_3");
69 Class.forName("dot.junit.format.f1.d.T_f1_4");
82 Class.forName("dot.junit.format.f1.d.T_f1_5");
95 Class.forName("dot.junit.format.f1.d.T_f1_6");
108 Class.forName("dot.junit.format.f1.d.T_f1_7");
121 Class.forName("dot.junit.format.f1.d.T_f1_8");
134 Class.forName("dot.junit.format.f1.d.T_f1_9")
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dop.java 29 /** {@code non-null;} the instruction format */
30 private final InsnFormat format; field in class:Dop
44 * @param format {@code non-null;} the instruction format
49 public Dop(int opcode, int family, InsnFormat format,
59 if (format == null) {
60 throw new NullPointerException("format == null");
69 this.format = format;
100 * Gets the instruction format
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dop.java 40 /** {@code non-null;} the instruction format */
41 private final InsnFormat format; field in class:Dop
56 * @param format {@code non-null;} the instruction format
60 public Dop(int opcode, int family, int nextOpcode, InsnFormat format,
74 if (format == null) {
75 throw new NullPointerException("format == null");
81 this.format = format;
111 * Gets the instruction format
    [all...]

Completed in 636 milliseconds

1 2 3 4 5 6 78 91011>>