HomeSort by relevance Sort by last modified time
    Searched full:format (Results 1 - 25 of 12508) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /docs/source.android.com/src/tech/dalvik/
sidebar2.md 2 - [Bytecode Format](dalvik-bytecode.html)
3 - [.Dex Format](dex-format.html)
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
package-info.java 4 package android.filterfw.format;
  /external/harfbuzz/src/
harfbuzz-debug.c 11 const char* function, const char* format, ...) {
12 if (format[0] == '\n' && format[1] == '\0')
15 va_start(args, format);
16 android_vprintLog(ANDROID_LOG_DEBUG, NULL, LOG_TAG, format, args);
harfbuzz-debug.h 18 void Android_Debug(const char* file, int line, const char* function, const char* format, ...)
19 __attribute__((format(printf, 4, 5))); /* 4=format 5=params */;
  /libcore/luni/src/test/java/libcore/java/text/
OldDecimalFormatTestICU.java 32 DecimalFormat format; field in class:OldDecimalFormatTestICU
35 format = (DecimalFormat) NumberFormat.getNumberInstance();
40 DecimalFormat format = (DecimalFormat) NumberFormat local
43 format.applyPattern("@@@");
44 assertEquals("sigDigit doesn't work", "12300", format.format(12345));
45 assertEquals("sigDigit doesn't work", "0.123", format.format(0.12345));
47 format.applyPattern("@@##");
48 assertEquals("sigDigit doesn't work", "3.142", format.format(3.14159))
    [all...]
OldDecimalFormatTest.java 163 DecimalFormat format = new DecimalFormat(); local
165 format.isParseIntegerOnly());
167 format.setParseIntegerOnly(true);
168 assertTrue(format.isParseIntegerOnly());
170 Number result = format.parse("123.123");
176 format.setParseIntegerOnly(false);
177 assertFalse(format.isParseIntegerOnly());
179 Number result = format.parse("123.123");
192 DecimalFormat format = new DecimalFormat(pattern); local
193 assertFalse(format.isGroupingUsed())
196 DecimalFormat format = new DecimalFormat("###,####"); local
251 DecimalFormat format = new DecimalFormat(); local
269 DecimalFormat format = new DecimalFormat(); local
287 DecimalFormat format = new DecimalFormat(); local
304 DecimalFormat format = new DecimalFormat(); local
323 DecimalFormat format = new DecimalFormat(); local
340 DecimalFormat format = new DecimalFormat(); local
355 DecimalFormat format = new DecimalFormat(); local
403 DecimalFormat format = new DecimalFormat("'$'0000.0000"); local
494 DecimalFormat format = new DecimalFormat(); local
527 DecimalFormat format = new DecimalFormat("#.#"); local
583 DecimalFormat format = (DecimalFormat) DecimalFormat local
842 DecimalFormat format = (DecimalFormat) NumberFormat local
920 DecimalFormat format = (DecimalFormat) NumberFormat local
    [all...]
OldNumberFormatTest.java 34 DecimalFormat format = (DecimalFormat) NumberFormat.getIntegerInstance(Locale.US); local
35 assertEquals("#,##0", format.toPattern());
36 assertEquals("-36", format.format(-35.76));
37 assertEquals(new Long(-36), format.parse("-36"));
38 assertEquals(new Long(-36), format.parseObject("-36"));
39 assertEquals(0, format.getMaximumFractionDigits());
40 assertTrue(format.isParseIntegerOnly());
45 format = (DecimalFormat) NumberFormat.getIntegerInstance(chLocale);
46 assertEquals("#,##0", format.toPattern())
66 NumberFormat format = NumberFormat.getInstance(); local
78 NumberFormat format = NumberFormat.getInstance(new Locale("hu", "HU")); local
292 NumberFormat format = NumberFormat.getCurrencyInstance(); local
314 NumberFormat format = NumberFormat.getCurrencyInstance(usLocale); local
342 NumberFormat format = NumberFormat.getInstance(); local
363 NumberFormat format = NumberFormat.getInstance(testLocale); local
381 NumberFormat format = NumberFormat.getNumberInstance(); local
402 NumberFormat format = NumberFormat.getNumberInstance(deLocale); local
419 NumberFormat format = NumberFormat.getPercentInstance(); local
440 NumberFormat format = NumberFormat.getPercentInstance(csLocale); local
828 public StringBuffer format(double number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat
839 public StringBuffer format(long number, StringBuffer toAppendTo, method in class:OldNumberFormatTest.MyNumberFormat
    [all...]
  /system/core/libnl_2/
dbg.c 4 void libnl_printf(int level, char *format, ...)
9 va_start(ap, format);
10 __android_log_vprint(level, "libnl_2", format, ap);
  /external/replicaisland/res/values/
attrs.xml 4 <attr name="minText" format = "string"/>
5 <attr name="maxText" format = "string"/>
9 <attr name="leftKey" format = "string"/>
10 <attr name="rightKey" format = "string"/>
11 <attr name="jumpKey" format = "string"/>
12 <attr name="attackKey" format = "string"/>
  /development/samples/FixedGridLayout/res/values/
attrs.xml 3 <attr name="cellWidth" format="dimension" />
4 <attr name="cellHeight" format="dimension" />
  /external/smali/smali-integration-tests/src/assemble/
zip.xml 4 <format>zip</format>
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/res/values/
customattr.xml 3 <attr name="content" format="reference" />
4 <attr name="contentId" format="reference" />
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 2 int fprintf(FILE*restrict, const char* restrict format, ...);
  /external/linux-tools-perf/util/include/asm/
bug.h 6 #define WARN(condition, format...) ({ \
9 __WARN_printf(format); \
13 #define WARN_ONCE(condition, format...) ({ \
18 if (WARN(!__warned, format)) \
  /packages/apps/Contacts/res/values/
attrs.xml 20 <attr name="mimeType" format="string"/>
21 <!-- RemoteViews XML that should be used to format this data -->
22 <attr name="remoteViews" format="reference"/>
24 <attr name="icon" format="reference"/>
26 <attr name="summaryColumn" format="string"/>
28 <attr name="detailColumn" format="string"/>
32 <attr name="edgeWidth" format="dimension"/>
40 <attr name="layout_narrowParentWidth" format="dimension"/>
41 <attr name="layout_narrowWidth" format="dimension"/>
42 <attr name="layout_narrowMarginLeft" format="dimension"/
    [all...]
  /external/clang/test/Analysis/
taint-tester.m 8 extern void NSLog (NSString *format, ...);
9 extern void NSLogv(NSString *format, va_list args);
11 void TestLog (NSString *format, ...);
12 void TestLog (NSString *format, ...) {
14 va_start(ap, format);
17 NSLogv([string stringByAppendingString:format], ap);
  /external/clang/test/Sema/
attr-format.c 5 void a(const char *a, ...) __attribute__((format(printf, 1,2))); // no-error
6 void b(const char *a, ...) __attribute__((format(printf, 1,1))); // expected-error {{'format' attribute parameter 3 is out of bounds}}
7 void c(const char *a, ...) __attribute__((format(printf, 0,2))); // expected-error {{'format' attribute parameter 2 is out of bounds}}
8 void d(const char *a, int c) __attribute__((format(printf, 1,2))); // expected-error {{format attribute requires variadic function}}
9 void e(char *str, int c, ...) __attribute__((format(printf, 2,3))); // expected-error {{format argument not a string type}}
12 void f(xpto c, va_list list) __attribute__((format(printf, 1, 0))); // no-erro
    [all...]
format-strings-int-typedefs.c 7 printf("%jd", 42.0); // expected-warning {{format specifies type 'intmax_t' (aka 'long long')}}
8 printf("%ju", 42.0); // expected-warning {{format specifies type 'uintmax_t' (aka 'unsigned long long')}}
9 printf("%zu", 42.0); // expected-warning {{format specifies type 'size_t' (aka 'unsigned long')}}
10 printf("%td", 42.0); // expected-warning {{format specifies type 'ptrdiff_t' (aka 'int')}}
11 printf("%lc", 42.0); // expected-warning {{format specifies type 'wint_t' (aka 'int')}}
12 printf("%ls", 42.0); // expected-warning {{format specifies type 'wchar_t *' (aka 'int *')}}
13 printf("%S", 42.0); // expected-warning {{format specifies type 'wchar_t *' (aka 'int *')}}
14 printf("%C", 42.0); // expected-warning {{format specifies type 'wchar_t' (aka 'int')}}
16 scanf("%jd", 0); // expected-warning {{format specifies type 'intmax_t *' (aka 'long long *')}}
17 scanf("%ju", 0); // expected-warning {{format specifies type 'uintmax_t *' (aka 'unsigned long long *')}
    [all...]
  /external/clang/test/CodeGen/Inputs/
stdio.h 2 extern int vfprintf(struct FILE *s, const char *format, __builtin_va_list arg);
3 extern int vprintf(const char *format, __builtin_va_list arg);
  /cts/tests/res/values/
dimens.xml 19 <item name="frac100perc" type="dimen" format="fraction">100%</item>
20 <item name="frac1perc" type="dimen" format="fraction">1%</item>
21 <item name="fracp1perc" type="dimen" format="fraction">.1%</item>
22 <item name="fracp01perc" type="dimen" format="fraction">.01%</item>
23 <item name="frac0perc" type="dimen" format="fraction">0%</item>
24 <item name="frac1p1perc" type="dimen" format="fraction">1.1%</item>
25 <item name="frac100p1perc" type="dimen" format="fraction">100.1%</item>
26 <item name="frac25510perc" type="dimen" format="fraction">25510%</item>
27 <item name="frac25610perc" type="dimen" format="fraction">25610%</item>
28 <item name="frac6553510perc" type="dimen" format="fraction">6553510%</item
    [all...]
  /external/markdown/tests/misc/
link-with-parenthesis.txt 1 [ZIP archives](http://en.wikipedia.org/wiki/ZIP_(file_format) "ZIP (file format) - Wikipedia, the free encyclopedia")
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
FormatVersion.java 4 * Specifies the version of the format for jME3 object (j3o) files.
11 * Version number of the format
16 * Signature of the format. Currently "JME3" as ASCII
  /frameworks/base/tests/BiDiTests/res/values/
attrs.xml 4 <attr name="size" format="dimension" />
5 <attr name="color" format="color" />
6 <attr name="text" format="string" />
  /external/jpeg/
jconfig.vms 26 #define BMP_SUPPORTED /* BMP image file format */
27 #define GIF_SUPPORTED /* GIF image file format */
28 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29 #undef RLE_SUPPORTED /* Utah RLE image file format */
30 #define TARGA_SUPPORTED /* Targa image file format */
  /external/qemu/distrib/jpeg-6b/
jconfig.vms 26 #define BMP_SUPPORTED /* BMP image file format */
27 #define GIF_SUPPORTED /* GIF image file format */
28 #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
29 #undef RLE_SUPPORTED /* Utah RLE image file format */
30 #define TARGA_SUPPORTED /* Targa image file format */

Completed in 1220 milliseconds

1 2 3 4 5 6 7 8 91011>>