HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 126 - 150 of 3271) sorted by null

1 2 3 4 56 7 8 91011>>

  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2EncoderUtils.cpp 21 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack)
25 return ctx->state()->pixelDataSize(width, height, format, type, pack);
28 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack)
30 size_t layerSize = pixelDataSize(self, width, height, format, type, pack);
GL2EncoderUtils.h 20 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
21 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack);
  /external/icu4c/test/cintltst/
cdtdptst.h 15 /* INDEPTH TEST FOR DATE FORMAT */
53 void tryPat994(UDateFormat* format, const char* pat, const char* s, UDate expected);
  /external/jsilver/src/com/google/streamhtmlparser/
ParseException.java 38 super(String.format("At line: %d (col: %d); %s",
  /external/oprofile/libutil++/
stream_util.h 34 std::ios::fmtflags format; member in class:io_state
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxmodes_c.h 36 extern SDL_Rect **CGX_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags);
  /external/valgrind/main/VEX/priv/
main_util.h 66 __attribute__ ((format (printf, 1, 2)))
67 extern UInt vex_printf ( HChar *format, ... );
69 __attribute__ ((format (printf, 2, 3)))
70 extern UInt vex_sprintf ( HChar* buf, HChar *format, ... );
  /external/webkit/Source/WebCore/platform/graphics/android/
FontCustomPlatformData.cpp 79 bool FontCustomPlatformData::supportsFormat(const String& format)
81 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype")
83 || equalIgnoringCase(format, "woff")
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
ImageGStreamerCairo.cpp 34 GstVideoFormat format; local
35 if (!gst_video_format_parse_caps(caps, &format, &width, &height)) {
43 if (format == GST_VIDEO_FORMAT_ARGB || format == GST_VIDEO_FORMAT_BGRA)
  /libcore/luni/src/test/java/libcore/java/util/
OldFormattableTest.java 39 arg0.format(sb.toString());
52 assertTrue(fmt.format("%1.1s", mf).toString().equals("single precision "));
53 assertTrue(fmt.format("%2.1s", mf).toString().equals("single precision single precision "));
54 assertTrue(fmt.format("%2.2s", mf).toString().equals("single precision single precision double precision "));
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ITaskMonitor.java 57 public void setDescription(String format, Object...args);
63 public void log(String format, Object...args);
69 public void logError(String format, Object...args);
76 public void logVerbose(String format, Object...args);
  /system/vold/
Fat.h 29 static int format(const char *fsPath, unsigned int numSectors);
  /external/guava/src/com/google/common/base/
CaseFormat.java 65 * Converts the specified {@code String s} from this format to the specified
66 * {@code format}. A "best effort" approach is taken; if {@code s} does not
67 * conform to the assumed format, then the behavior of this method is
70 public String to(CaseFormat format, String s) {
71 if (format == null) {
79 if (format == this) {
86 switch (format) {
92 switch (format) {
98 switch (format) {
113 out.append(format.normalizeFirstWord(s.substring(i, j)))
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 76 def.format.video.cMIMEType = const_cast<char *>(MEDIA_MIMETYPE_VIDEO_VPX);
77 def.format.video.pNativeRender = NULL;
78 def.format.video.nFrameWidth = mWidth;
79 def.format.video.nFrameHeight = mHeight;
80 def.format.video.nStride = def.format.video.nFrameWidth;
81 def.format.video.nSliceHeight = def.format.video.nFrameHeight;
82 def.format.video.nBitrate = 0;
83 def.format.video.xFramerate = 0
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
NumberFormatTest.java 28 // NumberFormat.format(Object, StringBuffer, FieldPosition) guarantees it calls doubleValue for
41 assertEquals("123", nf.format(new MyNumber()));
44 // NumberFormat.format(Object, StringBuffer, FieldPosition) guarantees it calls longValue for
48 public StringBuffer format(double value, StringBuffer b, FieldPosition f) { method in class:NumberFormatTest.MyNumberFormat
52 public StringBuffer format(long value, StringBuffer b, FieldPosition f) { method in class:NumberFormatTest.MyNumberFormat
61 assertEquals("long", nf.format(BigInteger.valueOf(Long.MAX_VALUE)));
62 assertEquals("double", nf.format(BigInteger.valueOf(Long.MAX_VALUE).add(BigInteger.ONE)));
63 assertEquals("long", nf.format(BigInteger.valueOf(Long.MIN_VALUE)));
64 assertEquals("double", nf.format(BigInteger.valueOf(Long.MIN_VALUE).subtract(BigInteger.ONE)));
79 nf.format(1234567890))
    [all...]
OldDateFormatTest.java 46 public StringBuffer format(Date date, StringBuffer toAppendTo, method in class:OldDateFormatTest.MockDateFormat
71 DateFormat format = DateFormat.getInstance(); local
72 DateFormat clone = (DateFormat) format.clone();
73 assertTrue("Clone and parent are not equaled", format.equals(clone));
76 format.setCalendar(Calendar.getInstance());
77 assertTrue("Clone and parent are not equaled", format.equals(clone));
84 * java.text.DateFormat#format(java.util.Date) Test of method
85 * java.text.DateFormat#format(java.util.Date).
89 DateFormat format = DateFormat.getDateTimeInstance( local
92 String dtf = format.format(current)
107 DateFormat format = DateFormat.getDateTimeInstance( local
127 DateFormat format = DateFormat.getInstance(); local
207 DateFormat format = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); local
477 DateFormat format = DateFormat.getInstance(); local
    [all...]
  /libcore/luni/src/main/java/java/text/
MessageFormat.java 41 * {@code Format} classes in that you create a {@code MessageFormat}
101 * produce a number format with the hash-sign quoted, with a result such as:
109 * <dd>The rules for using quotes within message format patterns unfortunately
125 * {@code arguments} array passed to the {@code format} methods or
129 * {@code Format} instance for the format element. The following table
130 * shows how the values map to {@code Format} instances. Combinations not shown in the
132 * for the {@code Format} subclass used.
136 * <th>Format Type</th>
137 * <th>Format Style</th
476 MessageFormat format = (MessageFormat) object; local
548 public final StringBuffer format(Object[] objects, StringBuffer buffer, method in class:MessageFormat
569 Format format = formats[i]; local
700 public final StringBuffer format(Object object, StringBuffer buffer, method in class:MessageFormat
717 public static String format(String format, Object... args) { method in class:MessageFormat
866 Format format = formats[i]; local
1071 Format format = formats[i]; local
1151 Format format = formats[i]; local
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
SparseSwitchPayloadDecodedInstruction.java 37 public SparseSwitchPayloadDecodedInstruction(InstructionCodec format,
39 super(format, opcode, 0, null, 0, 0L);
ZeroRegisterDecodedInstruction.java 28 public ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode,
30 super(format, opcode, index, indexType, target, literal);
  /external/giflib/
Android.mk 9 LOCAL_CFLAGS += -Wno-format -DHAVE_CONFIG_H
  /external/libvpx/tools/
gen_authors.sh 9 $(git log --pretty=format:"%aN <%aE>" | sort | uniq)
  /external/webkit/Source/WebCore/svg/
SVGAltGlyphElement.idl 31 attribute DOMString format
  /sdk/chimpchat/src/com/android/chimpchat/core/
IChimpImage.java 32 byte[] convertToBytes(String format);
33 boolean writeToFile(String path, String format);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/internal/repository/
MockSourcePackage.java 38 String.format("/sdk/sources/android-%s", version.getApiString()));
55 String.format("/sdk/sources/android-%s", version.getApiString()));
  /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...]

Completed in 1395 milliseconds

1 2 3 4 56 7 8 91011>>