HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 201 - 225 of 11127) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
stringprintf.cc 1 // Protocol Buffers - Google's data interchange format
56 void StringAppendV(string* dst, const char* format, va_list ap) {
66 int result = vsnprintf(space, kSpaceLength, format, backup_ap);
80 result = vsnprintf(NULL, 0, format, backup_ap);
97 result = vsnprintf(buf, length, format, backup_ap);
108 string StringPrintf(const char* format, ...) {
110 va_start(ap, format);
112 StringAppendV(&result, format, ap);
117 const string& SStringPrintf(string* dst, const char* format, ...) {
119 va_start(ap, format);
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.cc 24 int32_t format)
25 : BitmapGlyph(data, format) {
26 Initialize(format);
46 void CompositeBitmapGlyph::Initialize(int32_t format) {
47 if (format == 8) {
50 } else if (format == 9) {
56 "with a non-composite format.");
92 CompositeBitmapGlyph::Builder::Builder(ReadableFontData* data, int32_t format)
93 : BitmapGlyph::Builder(data, format) {
96 CompositeBitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format)
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
composite_bitmap_glyph.cc 24 int32_t format)
25 : BitmapGlyph(data, format) {
26 Initialize(format);
46 void CompositeBitmapGlyph::Initialize(int32_t format) {
47 if (format == 8) {
50 } else if (format == 9) {
56 "with a non-composite format.");
92 CompositeBitmapGlyph::Builder::Builder(ReadableFontData* data, int32_t format)
93 : BitmapGlyph::Builder(data, format) {
96 CompositeBitmapGlyph::Builder::Builder(WritableFontData* data, int32_t format)
    [all...]
  /libcore/luni/src/main/java/java/io/
Console.java 65 * the specified format string and arguments.
67 * @param format the format string (see {@link java.util.Formatter#format})
70 * more arguments than required by {@code format},
74 public Console format(String format, Object... args) { method in class:Console
76 f.format(format, args);
82 * Equivalent to {@code format(format, args)}
124 format(format, args); method
    [all...]
  /libcore/luni/src/main/java/java/security/
KeyRep.java 41 // Key encoding format
42 private final String format; field in class:KeyRep
55 * @param format
56 * the format of the key (obtained by {@link Key#getFormat()}).
61 * if {@code type, algorithm, format or encoded} is {@code null}
64 public KeyRep(Type type, String algorithm, String format, byte[] encoded) {
67 this.format = format;
75 if(this.format == null) {
76 throw new NullPointerException("format == null")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridMatch.java 91 return String.format("Align baseline in row %1$d", cellIndex + 1);
96 return String.format("Insert into column %1$d", cellIndex + 1);
102 return String.format("Add next to column %1$d", cellIndex + 1);
104 return String.format("Align left at x=%1$d", matchedLine - layout.getBounds().x);
107 return String.format("Insert right-aligned into column %1$d", cellIndex + 1);
109 return String.format("Align right at x=%1$d", matchedLine - layout.getBounds().x);
112 return String.format("Insert into row %1$d", cellIndex + 1);
118 return String.format("Add below row %1$d", cellIndex + 1);
120 return String.format("Align top at y=%1d", matchedLine - layout.getBounds().y);
123 return String.format("Insert into bottom of row %1$d", cellIndex + 1)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
MessageFormatTest.java 30 import java.text.Format;
50 private void checkSerialization(MessageFormat format) {
54 out.writeObject(format);
59 assertTrue("Not equal: " + format.toPattern(), format.equals(read));
61 fail("Format: " + format.toPattern()
64 fail("Format: " + format.toPattern()
123 Format[] formats = f1.getFormats()
307 MessageFormat format = new MessageFormat("Date: {0,date} Currency: {1, number, currency} Integer: {2, number, integer}", mk); local
315 MessageFormat format = new MessageFormat( local
387 MessageFormat format = new MessageFormat("test"); local
525 MessageFormat format = new MessageFormat("'{'choice'}'{0}"); local
555 MessageFormat format = new MessageFormat("{1,number,integer}"); local
598 MessageFormat format = new MessageFormat(pattern, Locale.US); local
838 MessageFormat format = new MessageFormat("date is {0,date,MMM d, yyyy}"); local
875 MessageFormat format = new MessageFormat("date {0,date}"); local
    [all...]
Support_SimpleDateFormat.java 54 SimpleDateFormat format = (SimpleDateFormat) DateFormat.getDateInstance(DateFormat.DEFAULT, Locale.US); local
55 format.setTimeZone(tz);
58 format.applyPattern("G GGGG y yy yyyy M MM MMM MMMM d dd ddd " +
75 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
76 t_FormatWithField(1, format, date, null, Field.YEAR, 6, 10);
77 t_FormatWithField(2, format, date, null, Field.MONTH, 19, 20);
78 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 38, 40);
79 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 48, 50);
80 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 58, 60);
81 t_FormatWithField(6, format, date, null, Field.HOUR1, 68, 69)
138 SimpleDateFormat format = (SimpleDateFormat) DateFormat.getDateInstance(DateFormat.DEFAULT, Locale.US); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 34 import org.jf.dexlib2.Format;
41 public static void checkFormat(Opcode opcode, Format expectedFormat) {
42 if (opcode.format != expectedFormat) {
44 String.format("Invalid opcode %s for %s", opcode.name, expectedFormat.name()));
51 String.format("Invalid register: v%d. Must be between v0 and v15, inclusive.", register));
59 String.format("Invalid register: v%d. Must be between v0 and v255, inclusive.", register));
67 String.format("Invalid register: v%d. Must be between v0 and v65535, inclusive.", register));
75 String.format("Invalid literal value: %d. Must be between -8 and 7, inclusive.", literal));
83 String.format("Invalid literal value: %d. Must be between -128 and 127, inclusive.", literal));
91 String.format("Invalid literal value: %d. Must be between -32768 and 32767, inclusive.", literal))
    [all...]
  /external/chromium_org/tools/grit/grit/
test_suite_all.py 34 import grit.format.android_xml_unittest namespace
35 import grit.format.c_format_unittest namespace
36 import grit.format.chrome_messages_json_unittest namespace
37 import grit.format.data_pack_unittest namespace
38 import grit.format.html_inline_unittest namespace
39 import grit.format.js_map_format_unittest namespace
40 import grit.format.rc_header_unittest namespace
41 import grit.format.rc_unittest namespace
42 import grit.format.resource_map_unittest namespace
43 import grit.format.policy_templates.policy_template_generator_unittes namespace
44 import grit.format.policy_templates.writers.adm_writer_unittest namespace
45 import grit.format.policy_templates.writers.adml_writer_unittest namespace
46 import grit.format.policy_templates.writers.admx_writer_unittest namespace
47 import grit.format.policy_templates.writers.doc_writer_unittest namespace
48 import grit.format.policy_templates.writers.ios_plist_writer_unittest namespace
49 import grit.format.policy_templates.writers.json_writer_unittest namespace
50 import grit.format.policy_templates.writers.plist_strings_writer_unittest namespace
51 import grit.format.policy_templates.writers.plist_writer_unittest namespace
52 import grit.format.policy_templates.writers.reg_writer_unittest namespace
53 import grit.format.policy_templates.writers.template_writer_unittest namespace
54 import grit.format.policy_templates.writers.xml_writer_base_unittest namespace
    [all...]
  /cts/tests/tests/jni/libjnitest/
helper.h 46 * @param format printf format string
50 char *failure(const char *format, ...) __attribute__((format(printf, 1, 2)));
  /cts/tools/vm-tests-tf/src/dot/junit/format/
AllTests.java 17 package dot.junit.format;
35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class);
  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 37 public PackedSwitchPayloadDecodedInstruction(InstructionCodec format,
39 super(format, opcode, 0, null, 0, 0L);
  /device/generic/goldfish/opengl/system/GLESv1_enc/
GLEncoderUtils.cpp 22 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack)
25 return ctx->pixelDataSize(width, height, format, type, pack);
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
nacl_io_demo.h 17 char* VprintfToNewString(const char* format, va_list args) PRINTF_LIKE(1, 0);
18 char* PrintfToNewString(const char* format, ...) PRINTF_LIKE(1, 2);
  /external/chromium_org/native_client_sdk/src/libraries/error_handling/
string_stream.h 27 int ssvprintf(sstream_t* sstream, const char* format, va_list args);
28 int ssprintf(sstream_t* sstream, const char* format, ...);
  /external/chromium_org/ppapi/shared_impl/
media_stream_video_track_shared.h 20 format(PP_VIDEOFRAME_FORMAT_UNKNOWN) {}
24 PP_VideoFrame_Format format; member in struct:ppapi::MediaStreamVideoTrackShared::Attributes
  /external/chromium_org/remoting/webapp/
open_sans.css 11 url('open_sans.woff') format('woff');
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSUnicodeRangeValue.cpp 36 return String::format("U+%X", m_from);
37 return String::format("U+%X-%X", m_from, m_to);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAltGlyphElement.idl 30 [RaisesException=Setter] attribute DOMString format;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
translate.c 52 boolean translate_is_output_format_supported(enum pipe_format format)
54 return translate_generic_is_output_format_supported(format);
  /external/chromium_org/third_party/webrtc/common_audio/
wav_header.h 29 WavFormat format,
40 WavFormat format,
  /external/chromium_org/tools/gyp/test/additional-targets/
gyptest-additional.py 21 if test.format=='xcode':
36 if test.format in ('make', 'ninja', 'android', 'cmake'):
  /external/chromium_org/tools/gyp/test/dependencies/
gyptest-lib-only.py 29 if test.format == 'xcode':
32 assert test.format in ('make', 'ninja')
  /external/chromium_org/tools/gyp/test/gyp-defines/
gyptest-multiple-values.py 26 if test.format == 'msvs' and not test.uses_msbuild:
30 elif test.format == 'android':

Completed in 1406 milliseconds

1 2 3 4 5 6 7 891011>>