Searched defs:format (Results 1 - 25 of 2207) sorted by path

1234567891011>>

/external/aac/libSYS/src/
H A DgenericStds.cpp159 INT FDKfprintf(FDKFILE *stream, const char *format, ...) { argument
162 va_start(ap, format);
163 chars += vfprintf((FILE*)stream, format, ap);
169 INT FDKsprintf(char *str, const char *format, ...) { argument
172 va_start(ap, format);
173 chars += vsprintf(str, format, ap);
183 INT FDKfprintf(FILE *stream, const char *format, ...) { /*stub ! */; } argument
184 INT FDKsprintf(char *str, const char *format, ...) { /* stub! */; } argument
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
H A DTool.java235 else if (args[i].equals("-message-format")) {
237 System.err.println("missing output format with -message-format option; using default");
739 System.err.println(" -message-format name specify output style for messages");
1065 * all the NFAs in <a href="http://www.graphviz.org">Dot format</a>
1075 * all the NFAs in <a href="http://www.graphviz.org">Dot format</a>
1199 * Returns the current setting of the message format descriptor
1200 * @return Current message format
1234 * Set the message format to one of ANTLR, gnu, vs2005
1236 * @param format
1238 setMessageFormat(String format) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java286 /** The group of templates that represent the current message format. */
287 private static STGroup format; field in class:ErrorManager
391 // try to load the message format group
434 /** The format gets reset either from the Tool if the user supplied a command line option to that effect
440 format = new STGroupFile(fileName);
441 format.setListener(initSTListener);
442 if ( !format.isDefined("message") ) { // pick random msg to load
444 rawError("no such message format file "+fileName+" retrying with default ANTLR format");
445 setFormat("antlr"); // recurse on this rule, trying the default message format
[all...]
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DConsoleHandlerTest.java436 public String format(LogRecord r) { method in class:ConsoleHandlerTest.MockFormatter
H A DFileHandlerTest.java236 sb.append(formatter.format(lr[i]));
515 assertEquals(msg, f.getHead(handler) + f.format(r) + f.getTail(handler));
616 public String format(LogRecord r) { method in class:FileHandlerTest.MockFormatter
H A DFormatterTest.java46 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";
H A DMemoryHandlerTest.java381 public String format(LogRecord r) { method in class:MemoryHandlerTest.MockFormatter
H A DSocketHandlerTest.java654 public String format(LogRecord r) { method in class:SocketHandlerTest.MockFormatter
H A DStreamHandlerTest.java814 public String format(LogRecord r) { method in class:StreamHandlerTest.MockFormatter
842 public String format(LogRecord r) { method in class:StreamHandlerTest.MockFormatter2
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DAlgorithmParametersTest.java119 final String strFormatParam = "format";
122 protected byte[] engineGetEncoded(String format) throws IOException {
123 assertEquals(strFormatParam, format);
148 // test: if format param is null
152 protected byte[] engineGetEncoded(String format) throws IOException {
153 assertNull(format); // null is passed to spi-provider
324 params.init(new byte[0], "format");
392 params.init(enc, "format");
425 final String strFormatParam = "format";
428 protected void engineInit(byte[] params, String format)
625 engineInit(byte[] params, String format) argument
638 engineGetEncoded(String format) argument
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DCertificateStub.java38 String format; field in class:CertificateStub
43 public CertificateStub(String format, Principal guarantor, Principal principal, PublicKey key) { argument
44 this.format = format;
77 return format;
H A DKeyStoreTestSupport.java91 private String format; field in class:KeyStoreTestSupport.MyPrivateKey
95 public MyPrivateKey(String algorithm, String format, byte[] encoded) { argument
97 this.format = format;
106 return format;
H A DMyKeyPairGenerator1.java95 private String format; field in class:MyKeyPairGenerator1.PubKey
101 this.format = "test1";
110 return format;
121 private String format; field in class:MyKeyPairGenerator1.PrivKey
127 this.format = "test1";
136 return format;
H A DPrivateKeyStub.java35 String format = null; field in class:PrivateKeyStub
43 * @param format
46 public PrivateKeyStub(String algorithm, String format, byte[] encoded) { argument
48 this.format = format;
62 * Returns format
67 return format;
H A DPublicKeyStub.java37 String format = null; field in class:PublicKeyStub
43 public PublicKeyStub(String algorithm, String format, byte[] encoded) { argument
45 this.format = format;
57 * returns format
62 return format;
H A DTestCertUtils.java279 private static final String format = "testPublicKeyFormat"; field in class:TestCertUtils.TestPublicKey
290 return format;
623 throw new CertificateException("invalid format");
/external/apache-http/src/org/apache/http/client/utils/
H A DURLEncodedUtils.java161 public static String format ( method in class:URLEncodedUtils
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java129 * The output format object set by the user. May be null.
167 * A static text format object, which can be used over and
834 // Get the output format that was set by the user, otherwise get the
835 // output format from the stylesheet.
942 * @param format The OutputProperties object that will contain
951 Result outputTarget, OutputProperties format)
994 String encoding = format.getProperty(OutputKeys.ENCODING);
1011 String encoding = format.getProperty(OutputKeys.ENCODING);
1012 String method = format.getProperty(OutputKeys.METHOD);
1019 String publicID = format
950 createSerializationHandler( Result outputTarget, OutputProperties format) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializer.java122 * identical to the output format used with the writer.
139 * Specifies an output format for this serializer. It the
140 * serializer has already been associated with an output format,
141 * it will switch to the new format. This method should not be
160 * value is passed in this format: {uri}localName
167 * @param format The output format to use, as a set of key/value pairs.
169 public void setOutputFormat(Properties format); argument
172 * Returns the output format properties for this serializer.
174 * @return The output format ke
[all...]
H A DSerializerFactory.java52 * value is passed in this format: {uri}localName
82 * @param format The output format, minimally the "method" property must be set.
90 public static Serializer getSerializer(Properties format) argument
96 String method = format.getProperty(OutputKeys.METHOD);
106 format.getProperty(OutputPropertiesFactory.S_KEY_CONTENT_HANDLER);
139 ser.setOutputFormat(format);
161 sh.setOutputFormat(format);
H A DToHTMLStream.java551 * Specifies an output format for this serializer. It the
552 * serializer has already been associated with an output format,
553 * it will switch to the new format. This method should not be
563 * @param format The output format or serialzation parameters
566 public void setOutputFormat(Properties format) argument
569 * If "format" does not contain the property
574 value = format.getProperty(OutputPropertiesFactory.S_USE_URL_ESCAPING);
579 format);
583 * If "format" doe
[all...]
H A DToStream.java553 * Specifies an output format for this serializer. It the
554 * serializer has already been associated with an output format,
555 * it will switch to the new format. This method should not be
559 * @param format The output format to use
561 public void setOutputFormat(Properties format) argument
566 if (format != null)
573 propNames = format.propertyNames();
578 String value = format.getProperty(key);
580 String explicitValue = (String) format
[all...]
H A DToTextSAXHandler.java164 public void setOutputFormat(Properties format) argument

Completed in 461 milliseconds

1234567891011>>