Searched defs:arguments (Results 76 - 100 of 224) sorted by relevance

123456789

/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java126 * If the arguments Object[] is not null, then these arguments are substituted within the
134 * @param arguments - the array of arguments to be formatted and substituted within the reply
142 Object[] arguments) {
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
223 * Return the text for the specified reply code, formatted using the message arguments, if
228 * If arguments is not null, then the returned reply text if formatted using the
234 * @param arguments - the array of arguments t
141 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
238 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java126 * If the arguments Object[] is not null, then these arguments are substituted within the
134 * @param arguments - the array of arguments to be formatted and substituted within the reply
142 Object[] arguments) {
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
223 * Return the text for the specified reply code, formatted using the message arguments, if
228 * If arguments is not null, then the returned reply text if formatted using the
234 * @param arguments - the array of arguments t
141 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
238 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java126 * If the arguments Object[] is not null, then these arguments are substituted within the
134 * @param arguments - the array of arguments to be formatted and substituted within the reply
142 Object[] arguments) {
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
223 * Return the text for the specified reply code, formatted using the message arguments, if
228 * If arguments is not null, then the returned reply text if formatted using the
234 * @param arguments - the array of arguments t
141 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
238 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java126 * If the arguments Object[] is not null, then these arguments are substituted within the
134 * @param arguments - the array of arguments to be formatted and substituted within the reply
142 Object[] arguments) {
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
223 * Return the text for the specified reply code, formatted using the message arguments, if
228 * If arguments is not null, then the returned reply text if formatted using the
234 * @param arguments - the array of arguments t
141 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
238 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java129 * If the arguments Object[] is not null, then these arguments are substituted within the
137 * @param arguments - the array of arguments to be formatted and substituted within the reply
143 Object[] arguments) {
150 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
220 * Return the text for the specified reply code, formatted using the message arguments, if
225 * If arguments is not null, then the returned reply text if formatted using the
231 * @param arguments - the array of arguments t
142 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
235 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/core/command/
H A DAbstractCommandHandler.java126 * If the arguments Object[] is not null, then these arguments are substituted within the
134 * @param arguments - the array of arguments to be formatted and substituted within the reply
142 Object[] arguments) {
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
223 * Return the text for the specified reply code, formatted using the message arguments, if
228 * If arguments is not null, then the returned reply text if formatted using the
234 * @param arguments - the array of arguments t
141 sendReply(Session session, int replyCode, String replyMessageKey, String replyText, Object[] arguments) argument
238 getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) argument
[all...]
/external/mockito/src/org/mockito/internal/invocation/
H A DInvocationImpl.java33 private final Object[] arguments; field in class:InvocationImpl
47 this.arguments = ArgumentsProcessor.expandVarArgs(mockitoMethod.isVarArgs(), args);
62 return arguments;
80 return this.mock.equals(other.mock) && this.method.equals(other.method) && this.equalArguments(other.arguments);
83 private boolean equalArguments(Object[] arguments) { argument
84 return Arrays.equals(arguments, this.arguments);
/external/mtpd/
H A Dmtpd.h80 /* The number of arguments. */
81 int arguments; member in struct:protocol
82 /* The usage of the arguments. */
85 int (*connect)(char **arguments);
/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DSubstituteLogger.java69 public void trace(String format, Object... arguments) { argument
70 delegate().trace(format, arguments);
93 public void trace(Marker marker, String format, Object... arguments) { argument
94 delegate().trace(marker, format, arguments);
117 public void debug(String format, Object... arguments) { argument
118 delegate().debug(format, arguments);
141 public void debug(Marker marker, String format, Object... arguments) { argument
142 delegate().debug(marker, format, arguments);
165 public void info(String format, Object... arguments) { argument
166 delegate().info(format, arguments);
189 info(Marker marker, String format, Object... arguments) argument
213 warn(String format, Object... arguments) argument
237 warn(Marker marker, String format, Object... arguments) argument
261 error(String format, Object... arguments) argument
285 error(Marker marker, String format, Object... arguments) argument
[all...]
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/
H A DJDK14LoggerAdapter.java103 * arguments.
126 * arguments.
136 * an array of arguments
202 * arguments.
225 * arguments.
235 * an array of arguments
301 * arguments.
324 * arguments.
334 * an array of arguments
403 * arguments
539 error(String format, Object... arguments) argument
[all...]
/external/slf4j/slf4j-log4j12/src/main/java/org/slf4j/impl/
H A DLog4jLoggerAdapter.java135 * arguments.
158 * arguments.
167 * @param arguments
168 * an array of arguments
170 public void trace(String format, Object... arguments) { argument
172 FormattingTuple ft = MessageFormatter.arrayFormat(format, arguments);
231 * arguments.
254 * arguments.
263 * @param arguments an array of arguments
265 debug(String format, Object... arguments) argument
[all...]
/external/v8/src/
H A Dhydrogen-range-analysis.cc27 va_list arguments; local
28 va_start(arguments, msg);
29 base::OS::VPrint(msg, arguments);
30 va_end(arguments);
H A Darguments.h31 Arguments(int length, Object** arguments) argument
32 : length_(length), arguments_(arguments) { }
56 // Get the total number of arguments including the receiver.
59 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
67 // For each type of callback, we have a list of arguments
111 // Custom arguments replicate a small segment of stack that can be
301 args.length(), args.arguments(), isolate
/external/v8/test/mjsunit/
H A Ddebug-evaluate-with-context.js117 request_json = {"seq":17,"type":"request","command":"evaluate", arguments: { "expression": expression } };
118 frame_argument_adder(request_json.arguments);
124 request_json.arguments.additional_context = context_json;
/external/v8/test/mjsunit/es6/
H A Dunscopables.js28 return arguments;
32 return arguments;
598 var arguments = 'local';
599 var args = func.arguments;
601 assertEquals(args, arguments);
602 func[Symbol.unscopables] = {arguments: true};
603 assertEquals('local', arguments);
605 assertEquals(args, arguments);
616 with (arguments) {
618 arguments[Symbo
[all...]
/external/bison/lib/
H A Dprintf-args.h138 /* Number of directly allocated arguments (no malloc() needed). */
147 arguments; typedef in typeref:struct:__anon342
150 /* Fetch the arguments, putting them into a. */
156 int PRINTF_FETCHARGS (va_list args, arguments *a);
/external/e2fsprogs/intl/
H A Dprintf-args.h126 arguments; typedef in typeref:struct:__anon3841
129 /* Fetch the arguments, putting them into a. */
135 int printf_fetchargs (va_list args, arguments *a);
/external/icu/icu4c/source/tools/gendict/
H A Dgendict.cpp60 enum arguments { enum
71 // prints out the standard usage method describing command line arguments,
240 // Pick up and check the command line arguments,
/external/lldb/source/API/
H A DSBBlock.cpp258 bool arguments,
289 add_variable = arguments;
319 bool arguments,
351 add_variable = arguments;
257 GetVariables(lldb::SBFrame& frame, bool arguments, bool locals, bool statics, lldb::DynamicValueType use_dynamic) argument
318 GetVariables(lldb::SBTarget& target, bool arguments, bool locals, bool statics) argument
/external/ltrace/
H A Dexpr.c100 struct value_dict *arguments, void *data),
114 struct value_dict *arguments, void *data),
261 struct value_dict *arguments, struct value *ret_value)
263 if (expr_eval(node->lhs, context, arguments, ret_value) < 0)
276 struct value_dict *arguments, struct value *ret_value)
279 if (expr_eval(node->lhs, context, arguments, &val) < 0)
283 if (node->u.call.u.cb1(ret_value, &val, arguments,
295 struct value_dict *arguments, struct value *ret_value)
298 if (expr_eval(node->lhs, context, arguments, &lhs) < 0)
302 if (expr_eval(node->u.call.rhs, context, arguments,
98 expr_init_cb1(struct expr_node *node, int (*cb)(struct value *ret_value, struct value *value, struct value_dict *arguments, void *data), struct expr_node *lhs, int own_lhs, void *data) argument
111 expr_init_cb2(struct expr_node *node, int (*cb)(struct value *ret_value, struct value *lhs, struct value *rhs, struct value_dict *arguments, void *data), struct expr_node *lhs, int own_lhs, struct expr_node *rhs, int own_rhs, void *data) argument
260 eval_up(struct expr_node *node, struct value *context, struct value_dict *arguments, struct value *ret_value) argument
275 eval_cb1(struct expr_node *node, struct value *context, struct value_dict *arguments, struct value *ret_value) argument
294 eval_cb2(struct expr_node *node, struct value *context, struct value_dict *arguments, struct value *ret_value) argument
320 eval_index(struct expr_node *node, struct value *context, struct value_dict *arguments, struct value *ret_value) argument
340 expr_eval(struct expr_node *node, struct value *context, struct value_dict *arguments, struct value *ret_value) argument
385 expr_eval_word(struct expr_node *node, struct value *context, struct value_dict *arguments, long *ret_value) argument
[all...]
H A Dprintf.c49 struct value_dict *arguments)
92 self->format = (char *)value_get_data(&self->array, arguments);
98 size_t size = value_size(&self->array, arguments);
48 param_printf_init(struct value *cb_args, size_t nargs, struct value_dict *arguments) argument
H A Dproc.h76 struct value_dict *arguments; member in struct:callstack_element
/external/proguard/src/proguard/
H A DConfigurationWriter.java255 private void writeOption(String optionName, List arguments) argument
257 writeOption(optionName, arguments, false);
262 List arguments,
265 if (arguments != null)
267 if (arguments.isEmpty())
275 arguments = externalClassNames(arguments);
280 writer.println(ListUtil.commaSeparatedString(arguments, true));
286 private void writeOption(String optionName, String arguments) argument
288 writeOption(optionName, arguments, fals
261 writeOption(String optionName, List arguments, boolean replaceInternalClassNames) argument
292 writeOption(String optionName, String arguments, boolean replaceInternalClassNames) argument
[all...]
/external/proguard/src/proguard/retrace/
H A DReTrace.java208 String arguments = null;
211 // arguments.
239 arguments = originalArguments(match);
301 arguments,
307 arguments = originalArguments(match);
308 outLine.append(arguments);
440 String arguments,
459 if (methodInfo.matches(lineNumber, type, arguments))
474 outLine.append('(').append(methodInfo.arguments).append(')');
495 extraBuffer.append('(').append(methodInfo.arguments)
436 originalMethodName(String className, String obfuscatedMethodName, int lineNumber, String type, String arguments, StringBuffer outLine, List extraOutLines) argument
662 private String arguments; field in class:ReTrace.MethodInfo
666 MethodInfo(int firstLineNumber, int lastLineNumber, String type, String arguments, String originalName) argument
676 matches(int lineNumber, String type, String arguments) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFragment.java25 private Bundle arguments; field in class:ShadowFragment
113 return arguments;
117 public void setArguments(Bundle arguments) { argument
118 this.arguments = arguments;

Completed in 597 milliseconds

123456789