HomeSort by relevance Sort by last modified time
    Searched full:argument (Results 201 - 225 of 11830) sorted by null

1 2 3 4 5 6 7 891011>>

  /ndk/sources/host-tools/make-3.81/tests/scripts/functions/
word 59 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.",
64 "#MAKEFILE#:4: *** non-numeric first argument to `word' function: 'abc '. Stop.",
69 "#MAKEFILE#:5: *** non-numeric first argument to `word' function: '1a'. Stop.",
74 "#MAKEFILE#:7: *** non-numeric first argument to `wordlist' function: ''. Stop.",
79 "#MAKEFILE#:8: *** non-numeric first argument to `wordlist' function: 'abc '. Stop.",
84 "#MAKEFILE#:9: *** non-numeric second argument to `wordlist' function: ' 12a '. Stop.",
97 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: ''. Stop.",
102 "#MAKEFILE#:3: *** non-numeric first argument to `word' function: 'abc'. Stop.",
107 "#MAKEFILE#:3: *** first argument to `word' function must be greater than 0. Stop.",
112 "#MAKEFILE#:4: *** non-numeric first argument to `wordlist' function: ''. Stop."
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 22 Required argument: the object class about which information is requested
23 Keyword argument in_: the human language and script system in which to return information
24 Keyword argument _attributes: AppleEvent attribute dictionary
49 Required argument: the object to close
50 Keyword argument saving: specifies whether changes should be saved before closing
51 Keyword argument saving_in: the file or alias in which to save the object
52 Keyword argument _attributes: AppleEvent attribute dictionary
76 Required argument: the object whose elements are to be counted
77 Keyword argument each: if specified, restricts counting to objects of this class
78 Keyword argument _attributes: AppleEvent attribute dictionar
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/not_long/
Test_not_long.java 27 * @title Argument = 500000l
35 * @title Argument = -500000l
43 * @title Argument = 0xcafe; 0x12c
52 * @title Argument = Long.MAX_VALUE
60 * @title Argument = Long.MIN_VALUE
68 * @title Argument = 1l
76 * @title Argument = 0l
84 * @title Argument = -1l
  /external/chromium_org/chrome/renderer/resources/extensions/
i18n_custom_bindings.js 18 // The first argument is the message, and should be a string.
21 console.warn(extensionId + ': the first argument to getMessage should ' +
  /external/chromium_org/sync/js/
js_arg_list.h 19 // around argument lists to different threads.
22 // Uses an empty argument list.
  /external/chromium_org/testing/iossim/
redirect-stdout.sh 6 # This script executes the command given as the first argument and redirects
7 # the command's stdout to the file given as the second argument.
  /external/chromium_org/third_party/icu/source/tools/toolutil/
uoptions.c 16 * This file provides a command line argument parser.
57 /* parse the argument for the option, if any */
59 /* argument in the next argv[], and there is not an option in there */
62 /* there is no argument, but one is required: return with error */
85 /* parse the argument for the option, if any */
87 /* argument following in the same argv[] */
92 /* argument in the next argv[], and there is not an option in there */
97 /* there is no argument, but one is required: return with error */
  /external/chromium_org/win8/delegate_execute/
delegate_execute_util.h 21 // from |params| plus an optional |argument|.
24 const string16& argument);
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 13 new auto; // expected-error{{new expression for type 'auto' requires a constructor argument}}
14 new (const auto)(); // expected-error{{new expression for type 'auto const' requires a constructor argument}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p2-0x.cpp 7 // any template argument remains neither deduced nor explicitly
8 // specified, template argument deduction fails.
  /external/clang/test/CXX/temp/temp.param/
p9.cpp 3 // A default template-argument shall not be specified in a function
17 template<int N = 0> // expected-error{{cannot add a default template argument}}
  /external/clang/test/Preprocessor/
pr13851.c 1 // Check that -E -M -MF does not cause an "argument unused" error, by adding
8 // Check that -E -MM -MF does not cause an "argument unused" error, by adding
  /external/clang/test/Sema/
builtin-object-size.c 16 return __builtin_object_size(&a, -1); // expected-error {{argument should be a value from 0 to 3}}
19 return __builtin_object_size(&a, 4); // expected-error {{argument should be a value from 0 to 3}}
builtin-unary-fp.c 9 check(__builtin_isfinite(1)); // expected-error{{requires argument of floating point type}}
13 check(__builtin_fpclassify(0, 0, 0, 0, 0, 1)); // expected-error{{requires argument of floating point type}}
constructor-attribute.c 6 int f() __attribute__((constructor(1,2))); // expected-error {{attribute takes no more than 1 argument}}
12 int f() __attribute__((destructor(1,2))); // expected-error {{attribute takes no more than 1 argument}}
void_arg.c 9 X = sizeof(int (void a)); // expected-error {{argument may not have 'void' type}}
13 X = sizeof(int (Void a)); // expected-error {{argument may not have 'void' type}}
x86-builtin-palignr.c 9 return _mm_alignr_pi8(a, b, c); // expected-error {{argument to '__builtin_ia32_palignr' must be a constant integer}} expected-error {{incompatible result type}}
14 white2 = __builtin_ia32_pslldqi128(white2, N); // expected-error {{argument to '__builtin_ia32_pslldqi128' must be a constant integer}}
  /external/clang/test/SemaCXX/
format-strings.cpp 20 printf("%ls", "foo"); // expected-warning{{format specifies type 'wchar_t *' but the argument has type 'const char *'}}
39 foo.printf("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
40 Foo::printf_static("%d", i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
42 printf(foo.gettext("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
43 printf(Foo::gettext_static("%d"), i); // expected-warning{{format specifies type 'int' but the argument has type 'int *'}}
88 printf("%d", arg); // expected-warning {{format specifies type 'int' but the argument has type 'const char *'}}
110 format("%d", arg); // expected-warning {{format specifies type 'int' but the argument has type 'const char *'}}
128 block_print("%d", arg); // expected-warning {{format specifies type 'int' but the argument has type 'const char *'}}
warn-large-by-value-copy.cpp 17 // expected-warning {{'s' is a large (101 bytes) pass-by-value argument}}
35 void tf(TS<size> ts) {} // expected-warning {{ts' is a large (300 bytes) pass-by-value argument}}
  /external/clang/test/SemaObjCXX/
gc-attributes.mm 6 void f0(__strong A**); // expected-note{{candidate function not viable: 1st argument ('A *__weak *') has __weak ownership, but parameter has __strong ownership}}
15 void f1(__weak A**); // expected-note{{candidate function not viable: 1st argument ('A *__strong *') has __strong ownership, but parameter has __weak ownership}}
  /external/clang/test/SemaOpenCL/
invalid-logical-ops-1.1.cl 19 float bnf = ~0.0f; // expected-error {{invalid argument type}}
20 float lnf = !0.0f; // expected-error {{invalid argument type}}
30 float bnf4 = ~f4; // expected-error {{invalid argument type}}
31 int4 lnf4 = !f4; // expected-error {{invalid argument type}}
44 double bnf = ~0.0; // expected-error {{invalid argument type}}
45 double lnf = !0.0; // expected-error {{invalid argument type}}
55 double bnf4 = ~f4; // expected-error {{invalid argument type}}
56 long4 lnf4 = !f4; // expected-error {{invalid argument type}}
  /external/easymock/src/org/easymock/
CaptureType.java 30 * Will capture the argument of the first matching call
35 * Will capture the argument of the last matching call
  /external/icu4c/tools/toolutil/
uoptions.c 16 * This file provides a command line argument parser.
57 /* parse the argument for the option, if any */
59 /* argument in the next argv[], and there is not an option in there */
62 /* there is no argument, but one is required: return with error */
85 /* parse the argument for the option, if any */
87 /* argument following in the same argv[] */
92 /* argument in the next argv[], and there is not an option in there */
97 /* there is no argument, but one is required: return with error */
  /external/llvm/test/Verifier/
cttz-undef-arg.ll 8 ; CHECK: is_zero_undef argument of bit counting intrinsics must be a constant int
12 ; CHECK: is_zero_undef argument of bit counting intrinsics must be a constant int
  /frameworks/compile/mclinker/include/mcld/LD/
Diagnostic.h 38 assert(pIdx < getNumArgs() && "Argument index is out of range!");
44 "Invalid argument accessor!");
50 "Invalid argument accessor!");
56 "Invalid argument accessor!");
62 "Invalid argument accessor!");
68 "Invalid argument accessor!");
74 "Invalid argument accessor!");
80 "Invalid argument accessor!");

Completed in 483 milliseconds

1 2 3 4 5 6 7 891011>>