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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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);
  /packages/apps/ContactsCommon/res/values/
attrs.xml 20 <attr name="list_item_height" format="dimension"/>
21 <attr name="list_section_header_height" format="dimension"/>
22 <attr name="activated_background" format="reference"/>
23 <attr name="section_header_background" format="reference"/>
24 <attr name="list_item_divider" format="reference"/>
25 <attr name="list_item_padding_top" format="dimension"/>
26 <attr name="list_item_padding_right" format="dimension"/>
27 <attr name="list_item_padding_bottom" format="dimension"/>
28 <attr name="list_item_padding_left" format="dimension"/>
29 <attr name="list_item_gap_between_image_and_text" format="dimension"/
    [all...]
  /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/
junit-tests.xml 4 <format>zip</format>
jumbo-string-tests.xml 4 <format>zip</format>
jumbo-type-tests.xml 4 <format>zip</format>
  /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)) \
  /sdk/templates/other/CustomView/root/res/values/
attrs.xml.ftl 3 <attr name="exampleString" format="string" />
4 <attr name="exampleDimension" format="dimension" />
5 <attr name="exampleColor" format="color" />
6 <attr name="exampleDrawable" format="color|reference" />
  /external/llvm/utils/lit/tests/
shtest-format.py 1 # Check the various features of the ShTest format.
3 # RUN: not %{lit} -j 1 -v %{inputs}/shtest-format > %t.out
10 # CHECK: FAIL: shtest-format :: external_shell/fail.txt
11 # CHECK: *** TEST 'shtest-format :: external_shell/fail.txt' FAILED ***
16 # CHECK: PASS: shtest-format :: external_shell/pass.txt
18 # CHECK: FAIL: shtest-format :: fail.txt
20 # CHECK: UNRESOLVED: shtest-format :: no-test-line.txt
21 # CHECK: PASS: shtest-format :: pass.txt
22 # CHECK: UNSUPPORTED: shtest-format :: requires-missing.txt
23 # CHECK: PASS: shtest-format :: requires-present.tx
    [all...]
  /external/clang/test/Analysis/
taint-tester.m 9 extern void NSLog (NSString *format, ...);
10 extern void NSLogv(NSString *format, va_list args);
12 void TestLog (NSString *format, ...);
13 void TestLog (NSString *format, ...) {
15 va_start(ap, format);
18 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" />
  /packages/inputmethods/LatinIME/java/res/values/
attrs.xml 20 <attr name="keyboardStyle" format="reference" />
22 <attr name="keyboardViewStyle" format="reference" />
24 <attr name="mainKeyboardViewStyle" format="reference" />
26 <attr name="moreKeysKeyboardStyle" format="reference" />
28 <attr name="moreKeysKeyboardViewStyle" format="reference" />
29 <attr name="moreKeysKeyboardPanelStyle" format="reference" />
31 <attr name="suggestionsStripBackgroundStyle" format="reference" />
32 <attr name="suggestionStripViewStyle" format="reference" />
33 <attr name="moreSuggestionsViewStyle" format="reference" />
34 <attr name="suggestionBackgroundStyle" format="reference" /
    [all...]
  /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 */

Completed in 1789 milliseconds

1 2 3 4 5 6 7 8 91011>>