HomeSort by relevance Sort by last modified time
    Searched refs:arg (Results 251 - 275 of 1305) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/xpath/functions/
FunctionMultiArgs.java 56 * @param arg non-null expression that represents the argument.
62 public void setArg(Expression arg, int argNum)
67 super.setArg(arg, argNum);
73 m_args[0] = arg;
83 args[m_args.length] = arg;
86 arg.exprSetParent(this);
  /external/dbus/tools/
dbus-monitor.c 188 char *arg = argv[i]; local
190 if (!strcmp (arg, "--system"))
192 else if (!strcmp (arg, "--session"))
194 else if (!strcmp (arg, "--help"))
196 else if (!strcmp (arg, "--monitor"))
198 else if (!strcmp (arg, "--profile"))
200 else if (!strcmp (arg, "--"))
202 else if (arg[0] == '-')
207 filters[j] = (char *)malloc((strlen(arg) + 1) * sizeof(char *));
208 snprintf(filters[j], strlen(arg) + 1, "%s", arg)
    [all...]
dbus-launch.c 630 const char *arg = argv[i]; local
632 if (strcmp (arg, "--help") == 0 ||
633 strcmp (arg, "-h") == 0 ||
634 strcmp (arg, "-?") == 0)
636 else if (strcmp (arg, "--auto-syntax") == 0)
638 else if (strcmp (arg, "-c") == 0 ||
639 strcmp (arg, "--csh-syntax") == 0)
641 else if (strcmp (arg, "-s") == 0 ||
642 strcmp (arg, "--sh-syntax") == 0)
644 else if (strcmp (arg, "--binary-syntax") == 0
    [all...]
  /external/libffi/src/cris/
ffi.c 35 initialize_aggregate_packed_struct (ffi_type * arg)
39 FFI_ASSERT (arg != NULL);
41 FFI_ASSERT (arg->elements != NULL);
42 FFI_ASSERT (arg->size == 0);
43 FFI_ASSERT (arg->alignment == 0);
45 ptr = &(arg->elements[0]);
55 arg->size += (*ptr)->size;
57 arg->alignment = (arg->alignment > (*ptr)->alignment) ?
58 arg->alignment : (*ptr)->alignment
    [all...]
  /build/tools/
java-event-log-tags.py 135 args = [arg.strip("() ").split("|") for arg in t.description.split(",")]
138 argTypesNames = ", ".join([javaTypes[int(arg[1])] + " " + javaName(arg[0]) for arg in args])
139 argNames = "".join([", " + javaName(arg[0]) for arg in args])
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 165 String arg = args[idx]; local
167 if (arg.equals("--") || !arg.startsWith("--")) {
169 } else if (arg.startsWith("--format=")) {
170 mOutputFormat = arg.substring(arg.indexOf('=') + 1);
179 System.err.println("Unknown option '" + arg + "'");
  /external/libxml2/include/libxml/
debugXML.h 126 * @arg: a string argument
135 char *arg,
141 const char *arg);
146 char *arg,
151 char *arg,
156 char *arg,
169 char *arg,
192 char *arg,
  /external/libvpx/vp8/encoder/x86/
sad_sse3.asm 235 mov rsi, arg(0) ;src_ptr
236 mov rdi, arg(2) ;ref_ptr
238 movsxd rax, dword ptr arg(1) ;src_stride
239 movsxd rdx, dword ptr arg(3) ;ref_stride
250 mov rdi, arg(4) ;Results
292 mov rsi, arg(0) ;src_ptr
293 mov rdi, arg(2) ;ref_ptr
295 movsxd rax, dword ptr arg(1) ;src_stride
296 movsxd rdx, dword ptr arg(3) ;ref_stride
303 mov rdi, arg(4) ;Result
    [all...]
sad_mmx.asm 35 mov rsi, arg(0) ;src_ptr
36 mov rdi, arg(2) ;ref_ptr
38 movsxd rax, dword ptr arg(1) ;src_stride
39 movsxd rdx, dword ptr arg(3) ;ref_stride
127 mov rsi, arg(0) ;src_ptr
128 mov rdi, arg(2) ;ref_ptr
130 movsxd rax, dword ptr arg(1) ;src_stride
131 movsxd rdx, dword ptr arg(3) ;ref_stride
199 mov rsi, arg(0) ;src_ptr
200 mov rdi, arg(2) ;ref_pt
    [all...]
  /external/ppp/pppd/
upap.c 201 upap_timeout(arg)
202 void *arg;
204 upap_state *u = (upap_state *) arg;
225 upap_reqtimeout(arg)
226 void *arg;
228 upap_state *u = (upap_state *) arg;
613 upap_printpkt(p, plen, printer, arg)
617 void *arg;
634 printer(arg, " %s", upap_codenames[code-1]);
636 printer(arg, " code=0x%x", code)
    [all...]
  /external/libvpx/vp8/common/x86/
subpixel_ssse3.asm 47 movsxd rdx, DWORD PTR arg(5) ;table index
55 mov rdi, arg(2) ;output_ptr
64 mov rsi, arg(0) ;src_ptr
65 movsxd rax, dword ptr arg(1) ;src_pixels_per_line
66 movsxd rcx, dword ptr arg(4) ;output_height
68 movsxd rdx, dword ptr arg(3) ;output_pitch
113 mov rsi, arg(0) ;src_ptr
115 movsxd rax, dword ptr arg(1) ;src_pixels_per_line
116 movsxd rcx, dword ptr arg(4) ;output_height
118 movsxd rdx, dword ptr arg(3) ;output_pitc
    [all...]
  /dalvik/vm/
InlineNative.c 491 u4 arg; member in union:__anon660
496 u4 arg[2]; member in union:__anon661
519 convert.arg[0] = arg0;
520 convert.arg[1] = arg1;
534 convert.arg = arg0 & 0x7fffffff;
546 convert.arg[0] = arg0;
547 convert.arg[1] = arg1;
585 convert.arg[0] = arg0;
586 convert.arg[1] = arg1;
598 convert.arg[0] = arg0
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 207 Q_INVOKABLE void myInvokableWithIntArg(int arg) {
209 m_actuals << arg; local
211 Q_INVOKABLE void myInvokableWithLonglongArg(qlonglong arg) {
213 m_actuals << arg; local
215 Q_INVOKABLE void myInvokableWithFloatArg(float arg) {
217 m_actuals << arg; local
219 Q_INVOKABLE void myInvokableWithDoubleArg(double arg) {
221 m_actuals << arg; local
223 Q_INVOKABLE void myInvokableWithStringArg(const QString &arg) {
225 m_actuals << arg; local
342 m_actuals << arg; local
370 m_actuals << arg; local
374 m_actuals << arg; local
378 m_actuals << arg; local
390 m_actuals << arg; local
394 m_actuals << arg; local
398 m_actuals << arg; local
402 m_actuals << arg; local
406 m_actuals << arg; local
410 m_actuals << arg; local
414 m_actuals << arg; local
418 m_actuals << arg; local
422 m_actuals << arg; local
426 m_actuals << arg; local
430 m_actuals << arg; local
434 m_actuals << arg; local
439 m_actuals << arg; local
    [all...]
  /device/samsung/crespo/alsa-lib/
depcomp 78 # HP compiler uses -M and no extra arg.
356 for arg
358 case $arg in
366 set fnord "$@" "$arg"
368 shift # $arg
407 for arg in "$@"; do
413 case "$arg" in
415 set fnord "$@" "$arg"; shift ;;
421 set fnord "$@" "$arg"; shift ;;
452 for arg
    [all...]
  /device/samsung/crespo/alsa-utils/
depcomp 78 # HP compiler uses -M and no extra arg.
356 for arg
358 case $arg in
366 set fnord "$@" "$arg"
368 shift # $arg
407 for arg in "$@"; do
413 case "$arg" in
415 set fnord "$@" "$arg"; shift ;;
421 set fnord "$@" "$arg"; shift ;;
452 for arg
    [all...]
  /external/bison/build-aux/
depcomp 78 # HP compiler uses -M and no extra arg.
356 for arg
358 case $arg in
366 set fnord "$@" "$arg"
368 shift # $arg
407 for arg in "$@"; do
413 case "$arg" in
415 set fnord "$@" "$arg"; shift ;;
421 set fnord "$@" "$arg"; shift ;;
452 for arg
    [all...]
  /external/dbus/
depcomp 78 # HP compiler uses -M and no extra arg.
356 for arg
358 case $arg in
366 set fnord "$@" "$arg"
368 shift # $arg
407 for arg in "$@"; do
413 case "$arg" in
415 set fnord "$@" "$arg"; shift ;;
421 set fnord "$@" "$arg"; shift ;;
452 for arg
    [all...]
  /external/genext2fs/
depcomp 78 # HP compiler uses -M and no extra arg.
356 for arg
358 case $arg in
366 set fnord "$@" "$arg"
368 shift # $arg
407 for arg in "$@"; do
413 case "$arg" in
415 set fnord "$@" "$arg"; shift ;;
421 set fnord "$@" "$arg"; shift ;;
452 for arg
    [all...]
  /external/grub/
depcomp 78 # HP compiler uses -M and no extra arg.
349 for arg
351 case $arg in
359 set fnord "$@" "$arg"
361 shift # $arg
400 for arg in "$@"; do
406 case "$arg" in
408 set fnord "$@" "$arg"; shift ;;
414 set fnord "$@" "$arg"; shift ;;
445 for arg
    [all...]
  /external/openssl/crypto/asn1/
asn1_gen.c 118 static int append_exp(tag_exp_arg *arg, int exp_tag, int exp_class, int exp_constructed, int exp_pad, int imp_ok);
279 tag_exp_arg *arg = bitstr; local
311 arg->utype = utype;
312 arg->str = vstart;
327 if (arg->imp_tag != -1)
332 if (!parse_tagging(vstart, vlen, &arg->imp_tag, &arg->imp_class))
340 if (!append_exp(arg, tmp_tag, tmp_class, 1, 0, 0))
345 if (!append_exp(arg, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, 1, 0, 1))
350 if (!append_exp(arg, V_ASN1_SET, V_ASN1_UNIVERSAL, 1, 0, 1)
    [all...]
  /external/oprofile/libpopt/
popthelp.c 27 * @param arg (unused)
33 /*@unused@*/ const char * arg, /*@unused@*/ void * data)
98 for (opt = table; opt->longName || opt->shortName || opt->arg; opt++) {
100 return opt->arg;
135 default: return POPT_("ARG");
165 if (opt->arg) /* XXX programmer error */
169 { long aLong = *((int *)opt->arg);
173 { long aLong = *((long *)opt->arg);
177 { double aDouble = *((float *)opt->arg);
181 { double aDouble = *((double *)opt->arg);
    [all...]
  /external/strace/
depcomp 85 # HP compiler uses -M and no extra arg.
347 for arg
349 case $arg in
357 set fnord "$@" "$arg"
359 shift # $arg
398 for arg in "$@"; do
404 case "$arg" in
406 set fnord "$@" "$arg"; shift ;;
412 set fnord "$@" "$arg"; shift ;;
443 for arg
    [all...]
  /external/e2fsprogs/misc/
util.c 179 char *buf, *token, *next, *p, *arg; local
198 arg = strchr(token, '=');
199 if (arg) {
200 *arg = 0;
201 arg++;
205 arg ? arg : "NONE");
208 journal_device = blkid_get_devname(NULL, arg, NULL);
214 if (!arg) {
218 journal_size = strtoul(arg, &p, 0)
    [all...]
  /external/icu4c/samples/ugrep/
ugrep.cpp 175 const char *arg; local
179 arg = argv[optInd];
182 if(strcmp(arg, "-V") == 0 || strcmp(arg, "--version") == 0) {
186 else if(strcmp(arg, "--help") == 0) {
189 else if(strcmp(arg, "-n") == 0 || strcmp(arg, "--line-number") == 0) {
193 else if(strcmp(arg, "--") == 0) {
199 else if(strncmp(arg, "-", strlen("-")) == 0) {
200 printf("ugrep: invalid option -- %s\n", arg+1)
    [all...]
  /external/jpeg/
rdswitch.c 266 set_quant_slots (j_compress_ptr cinfo, char *arg)
277 if (*arg) {
279 if (sscanf(arg, "%d%c", &val, &ch) < 1)
289 while (*arg && *arg++ != ',') /* advance to next segment of arg string */
301 set_sample_factors (j_compress_ptr cinfo, char *arg)
311 if (*arg) {
313 if (sscanf(arg, "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3)
323 while (*arg && *arg++ != ',') /* advance to next segment of arg string *
    [all...]

Completed in 640 milliseconds

<<11121314151617181920>>