HomeSort by relevance Sort by last modified time
    Searched full:argument (Results 251 - 275 of 15492) sorted by null

<<11121314151617181920>>

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_long/
Test_int_to_long.java 26 * @title Argument = 123456
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = 0
58 * @title Argument = Integer.MAX_VALUE
66 * @title Argument = Integer.MIN_VALUE
77 * @title type of argument - double
86 * @title type of argument - long
102 * @title type of argument - reference
118 * @title Type of argument - float. The verifier checks that int
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/not_int/
Test_not_int.java 27 * @title Argument = 5; 256
36 * @title Argument = -5, -256
45 * @title Argument = 0xcafe; 0x12c
54 * @title Argument = Integer.MAX_VALUE
62 * @title Argument = Integer.MIN_VALUE
70 * @title Argument = 1
78 * @title Argument = 0
86 * @title Argument = -1
94 * @title Argument = Short.MAX_VALUE
102 * @title Argument = Short.MIN_VALU
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 28 * argument slots, slots for several literal-value arguments, and slots for
35 * {@code this} argument for instance methods.
58 * {@code Prototype} (popped in reverse of the argument
59 * order, so the first prototype argument type is for the deepest
75 * @param type {@code non-null;} type of the argument
81 * reverse argument order, so the first indicated type is for the
87 * @param type1 {@code non-null;} type of the first argument
88 * @param type2 {@code non-null;} type of the second argument
94 * reverse argument order, so the first indicated type is for the
100 * @param type1 {@code non-null;} type of the first argument
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
FiveRegisterDecodedInstruction.java 25 /** register argument "A" */
28 /** register argument "B" */
31 /** register argument "C" */
34 /** register argument "D" */
37 /** register argument "E" */
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
MathIllegalNumberException.java 25 * precondition is violated by a number argument.
36 private final Number argument; field in class:MathIllegalNumberException
51 argument = wrong;
65 argument = wrong;
72 return argument;
  /external/clang/test/Analysis/
unix-api.c 31 fd = open(path, O_RDONLY, NULL); // expected-warning{{Third argument to 'open' is not an integer}}
38 fd = open(path, O_RDONLY, ""); // expected-warning{{Third argument to 'open' is not an integer}}
48 fd = open(path, O_RDONLY, st); // expected-warning{{Third argument to 'open' is not an integer}}
65 fd = open(path, O_RDONLY, &open); // expected-warning{{Third argument to 'open' is not an integer}}
72 fd = open(path, O_RDONLY, 0.0f); // expected-warning{{Third argument to 'open' is not an integer}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
default-arguments.cpp 14 int k) { }; // expected-error{{missing default argument on parameter 'k'}}
16 auto l2 = [](int i, int j = i) {}; // expected-error{{default argument references parameter 'i'}}
19 auto l3 = [](int i = foo) {}; // expected-error{{default argument references local variable 'foo' of enclosing function}}
30 // expected-note{{candidate constructor not viable: requires 1 argument, but 0 were provided}}
46 // expected-note{{candidate function not viable: requires single argument 'value', but no arguments were provided}} \
  /external/clang/test/FixIt/
dereference-addressof.c 6 void ip(int *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}}
7 void i(int a) {} // expected-note{{passing argument to parameter 'a' here}}
8 void ii(int a) {} // expected-note{{passing argument to parameter 'a' here}}
9 void fp(float *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}}
10 void f(float a) {} // expected-note{{passing argument to parameter 'a' here}}
format.m 10 printf("%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
11 printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'int'}}
16 NSLog(@"%s", x); // expected-warning{{format specifies type 'char *' but the argument has type 'int'}}
17 NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'int'}}
18 NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'int'}}
25 printf("%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char *'}}
27 printf("%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'char *'}}
31 NSLog(@"%d", x); // expected-warning{{format specifies type 'int' but the argument has type 'char *'}}
33 NSLog(@"%lf", x); // expected-warning{{format specifies type 'double' but the argument has type 'char *'}}
34 NSLog(@"%@", x); // expected-warning{{format specifies type 'id' but the argument has type 'char *'}
    [all...]
  /external/clang/test/SemaCXX/
attr-nonnull.cpp 7 // GCC has a hidden 'this' argument in member functions, so the middle
8 // argument is the one that must not be null.
12 expected-error{{invalid for the implicit this argument}}
30 f1(0); // expected-warning{{null passed to a callee that requires a non-null argument}}
31 f2(0, 0); // expected-warning{{null passed to a callee that requires a non-null argument}}
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
FiveRegisterDecodedInstruction.java 25 /** register argument "A" */
28 /** register argument "B" */
31 /** register argument "C" */
34 /** register argument "D" */
37 /** register argument "E" */
  /external/mockito/src/org/mockito/
ArgumentCaptor.java 14 * Use it to capture argument values for further assertions.
17 * Mockito verifies argument values in natural java style: by using an equals() method.
22 * ArgumentCaptor&lt;Person&gt; argument = ArgumentCaptor.forClass(Person.class);
23 * verify(mock).doSomething(argument.capture());
24 * assertEquals("John", argument.getValue().getName());
30 * Also it may reduce defect localization because if stubbed method was not called then no argument is captured.
33 * In a way ArgumentCaptor is related to custom argument matchers (see javadoc for {@link ArgumentMatcher} class).
37 * <li>custom argument matcher is not likely to be reused</li>
38 * <li>you just need it to assert on argument values to complete verification</li>
40 * Custom argument matchers via {@link ArgumentMatcher} are usually better for stubbing.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 22 Required argument: the object for the command
23 Keyword argument saving_in: The file in which to save the object.
24 Keyword argument saving: Specifies whether changes should be saved before closing.
25 Keyword argument _attributes: AppleEvent attribute dictionary
49 Required argument: the object for the command
50 Keyword argument each: The class of objects to be counted.
51 Keyword argument _attributes: AppleEvent attribute dictionary
71 Required argument: the object for the command
72 Keyword argument _attributes: AppleEvent attribute dictionary
96 Required argument: the object for the comman
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 22 Required argument: the object for the command
23 Keyword argument saving_in: The file in which to save the object.
24 Keyword argument saving: Specifies whether changes should be saved before closing.
25 Keyword argument _attributes: AppleEvent attribute dictionary
49 Required argument: the object for the command
50 Keyword argument each: The class of objects to be counted.
51 Keyword argument _attributes: AppleEvent attribute dictionary
71 Required argument: the object for the command
72 Keyword argument _attributes: AppleEvent attribute dictionary
96 Required argument: the object for the comman
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 22 Required argument: the object for the command
23 Keyword argument saving_in: The file in which to save the object.
24 Keyword argument saving: Specifies whether changes should be saved before closing.
25 Keyword argument _attributes: AppleEvent attribute dictionary
49 Required argument: the object for the command
50 Keyword argument each: The class of objects to be counted.
51 Keyword argument _attributes: AppleEvent attribute dictionary
71 Required argument: the object for the command
72 Keyword argument _attributes: AppleEvent attribute dictionary
96 Required argument: the object for the comman
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 22 Required argument: the object for the command
23 Keyword argument saving_in: The file in which to save the object.
24 Keyword argument saving: Specifies whether changes should be saved before closing.
25 Keyword argument _attributes: AppleEvent attribute dictionary
49 Required argument: the object for the command
50 Keyword argument each: The class of objects to be counted.
51 Keyword argument _attributes: AppleEvent attribute dictionary
71 Required argument: the object for the command
72 Keyword argument _attributes: AppleEvent attribute dictionary
96 Required argument: the object for the comman
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 5 // a non-type template-argument. If a non-type template-argument cannot be
20 // (4.2) are applied; if the template-argument is of type
56 A2<(&an_X)> *a13_3; // expected-warning{{address non-type template argument cannot be surrounded by parentheses}}
78 // template-argument. The template-parameter is bound directly to the
79 // template-argument, which shall be an lvalue.
91 S0<ci> s0c; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'const int' ignores qualifiers}}
92 S0<vi> s0v; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'volatile int' ignores qualifiers}}
93 S0<cvi> s0cv; // expected-error{{reference binding of non-type template parameter of type 'int &' to template argument of type 'const volatile int' ignores qualifiers}}
97 S1<vi> s1v; // expected-error{{reference binding of non-type template parameter of type 'const int &' to template argument of type 'volatile int' ignores qualifiers}
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FunctionDef1Arg.java 31 * Base class for functions that accept one argument that can be defaulted if
40 * Execute the first argument expression that is expected to return a
41 * nodeset. If the argument is null, then return the current context node.
46 * node if the first argument is null.
49 * executing the argument expression.
69 * Execute the first argument expression that is expected to return a
70 * string. If the argument is null, then get the string value from the
75 * @return The string value of the first argument, or the string value of the
76 * current context node if the first argument is null.
79 * executing the argument expression
    [all...]
  /external/clang/test/SemaObjC/
nonnull.m 34 func1(0, cp2, i1); // expected-warning {{null passed to a callee that requires a non-null argument}}
35 func1(cp1, 0, i1); // expected-warning {{null passed to a callee that requires a non-null argument}}
39 func3(0, i2, cp3, i3); // expected-warning {{null passed to a callee that requires a non-null argument}}
40 func3(cp3, i2, 0, i3); // expected-warning {{null passed to a callee that requires a non-null argument}}
42 func4(0, cp1); // expected-warning {{null passed to a callee that requires a non-null argument}}
43 func4(cp1, 0); // expected-warning {{null passed to a callee that requires a non-null argument}}
67 _dispatch_queue_push_list(0); // expected-warning {{null passed to a callee that requires a non-null argument}}
94 [object doSomethingWithNonNullPointer:NULL:1:NULL]; // expected-warning 2 {{null passed to a callee that requires a non-null argument}}
95 [object doSomethingWithNonNullPointer:vp:1:NULL]; // expected-warning {{null passed to a callee that requires a non-null argument}}
96 [NSObject doSomethingClassyWithNonNullPointer:NULL]; // expected-warning {{null passed to a callee that requires a non-null argument}}
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 323 * Returns the matched argument for the given pattern argument.
325 private int matchedArgument(Clazz clazz, int argument)
328 if (argument == STRING_A_LENGTH)
334 // Otherwise, just return the matched argument.
335 return instructionSequenceMatcher.matchedArgument(argument);
378 int argument)
383 return Boolean.toString((instructionSequenceMatcher.wasConstant(argument) ?
384 ((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))).getValue() :
385 instructionSequenceMatcher.matchedArgument(argument)) != 0)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_int/
Test_neg_int.java 28 * @title Argument = 1
36 * @title Argument = -1
44 * @title Argument = 32768
52 * @title Argument = 0
68 * @title Argument = Integer.MAX_VALUE
76 * @title Argument = Integer.MIN_VALUE
96 * @title type of argument - double
105 * @title type of argument - long
114 * @title type of argument - reference
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_long/
Test_neg_long.java 28 * @title Argument = 123123123272432432l
36 * @title Argument = 1
44 * @title Argument = -1
61 * @title Argument = 0
69 * @title Argument = Long.MAX_VALUE
77 * @title Argument = Long.MIN_VALUE
96 * @title type of argument - int
105 * @title type of argument - float
114 * @title type of argument - reference
  /external/boringssl/src/tool/
args.cc 28 const struct argument *templates) {
33 const struct argument *templ = nullptr;
42 fprintf(stderr, "Unknown argument: %s\n", arg.c_str());
47 fprintf(stderr, "Duplicate argument: %s\n", arg.c_str());
55 fprintf(stderr, "Missing argument for option: %s\n", arg.c_str());
63 const struct argument *templ = &templates[j];
66 fprintf(stderr, "Missing value for required argument: %s\n", templ->name);
74 void PrintUsage(const struct argument *templates) {
76 const struct argument *templ = &templates[i];
  /external/clang/test/Sema/
format-strings-enum-fixed-type.cpp 19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short'}}
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short'}}
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has underlying type 'unsigned long'}}
49 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}}
59 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}}
67 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has underlying type 'short_t' (aka 'short')}}
70 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'short_t' (aka 'short')}}
83 printf("%hd", input); // expected-warning{{format specifies type 'short' but the argument has underlying type 'char'}}
90 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has underlying type 'char'}}
  /external/llvm/test/CodeGen/ARM/
2013-04-16-AAPCS-C4-vs-VFP.ll 14 ;C.2.cp If the argument is a CPRC then any co-processor registers in that class
16 ;until it is correctly aligned for the argument and the argument is copied to
18 ;of the argument. The argument has now been allocated.
20 ;C.4 If the size in words of the argument is not more than r4 minus NCRN, the
21 ;argument is copied into core registers, starting at the NCRN. The NCRN is
23 ;parts of the argument they would hold if its value were loaded into those
24 ;registers from memory using an LDM instruction. The argument has now been

Completed in 1892 milliseconds

<<11121314151617181920>>