Searched defs:arguments (Results 1 - 5 of 5) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/
H A DErrorBundle.java36 * @param arguments an array containing the arguments for the message
39 public ErrorBundle(String resource, String id, Object[] arguments) throws NullPointerException argument
41 super(resource, id, arguments);
H A DMessageBundle.java31 * @param arguments an array containing the arguments for the message
34 public MessageBundle(String resource, String id, Object[] arguments) throws NullPointerException argument
36 super(resource, id, arguments);
H A DTextBundle.java31 * @param arguments an array containing the arguments for the message
34 public TextBundle(String resource, String id, Object[] arguments) throws NullPointerException argument
36 super(resource, id, arguments);
H A DLocalizedMessage.java20 protected Object[] arguments; field in class:LocalizedMessage
40 this.arguments = new Object[0];
41 this.filteredArguments = arguments;
49 * @param arguments an array containing the arguments for the message
52 public LocalizedMessage(String resource, String id, Object[] arguments) throws NullPointerException argument
54 if (resource == null || id == null || arguments == null)
60 this.arguments = arguments;
61 this.filteredArguments = arguments;
98 formatWithTimeZone( String template, Object[] arguments, Locale locale, TimeZone timezone) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java93 /** {@code non-null;} parsed command-line arguments */
114 * @param argArray the command line arguments
117 Arguments arguments = new Arguments();
118 arguments.parse(argArray);
120 int result = run(arguments);
128 * @param arguments the data + parameters for the conversion
131 public static int run(Arguments arguments) { argument
136 args = arguments;
791 /** {@code non-null after {@link #parse};} file name arguments */
810 * Parses the given command-line arguments
[all...]

Completed in 471 milliseconds