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

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 18 Required argument: the object to close
19 Keyword argument _attributes: AppleEvent attribute dictionary
42 Required argument: the object whose elements are to be counted
43 Keyword argument each: the class of the elements to be counted
44 Keyword argument _attributes: AppleEvent attribute dictionary
68 Required argument: the object whose data size is to be returned
69 Keyword argument as: the data type for which the size is calculated
70 Keyword argument _attributes: AppleEvent attribute dictionary
90 Required argument: the item to delete
91 Keyword argument _attributes: AppleEvent attribute dictionar
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
UPnPServiceResponseListenerTest.java 68 receiveCallback(new Argument(uniqueServiceName));
75 ALL_UPNP_SERVICES.add(new Argument(uuid));
76 ALL_UPNP_SERVICES.add(new Argument(uuid +
78 ALL_UPNP_SERVICES.add(new Argument(uuid +
80 ALL_UPNP_SERVICES.add(new Argument(uuid +
82 ALL_UPNP_SERVICES.add(new Argument(uuid +
85 UPNP_ROOT_DEVICE.add(new Argument(uuid +
90 * The container of the argument of {@link #onUpnpServiceAvailable}.
92 static class Argument extends ListenerArgument {
95 Argument(String uniqueServiceName)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_int/
Test_double_to_int.java 27 * @title Argument = 2.9999999d
35 * @title Argument = 1
43 * @title Argument = -1
51 * @title Argument = -0
59 * @title Argument = Double.MAX_VALUE
67 * @title Argument = Double.MIN_VALUE
75 * @title Argument = NaN
83 * @title Argument = POSITIVE_INFINITY
91 * @title Argument = NEGATIVE_INFINITY
101 * @title Type of argument - long. The verifier checks that long
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/double_to_long/
Test_double_to_long.java 26 * @title Argument = 2.9999999
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = Double.MAX_VALUE
58 * @title Argument = Double.MIN_VALUE
66 * @title Argument = -0
74 * @title Argument = NaN
82 * @title Argument = POSITIVE_INFINITY
90 * @title Argument = NEGATIVE_INFINITY
99 * @title type of argument - floa
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_double/
Test_float_to_double.java 26 * @title Argument = 0.5
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = Float.MAX_VALUE
59 * @title Argument = Float.MIN_VALUE
68 * @title Argument = -0
76 * @title Argument = NaN
84 * @title Argument = POSITIVE_INFINITY
92 * @title Argument = NEGATIVE_INFINITY
103 * @title type of argument - doubl
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_int/
Test_float_to_int.java 27 * @title Argument = 2.999999f
35 * @title Argument = 1
43 * @title Argument = -1
51 * @title Argument = -0f
59 * @title Argument = Float.MAX_VALUE
67 * @title Argument = Float.MIN_VALUE
75 * @title Argument = NaN
83 * @title Argument = POSITIVE_INFINITY
91 * @title Argument = NEGATIVE_INFINITY
101 * @title type of argument - doubl
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/float_to_long/
Test_float_to_long.java 26 * @title Argument = 2.999999f
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = Float.MAX_VALUE
58 * @title Argument = Float.MIN_VALUE
66 * @title Argument = 0
74 * @title Argument = NaN
82 * @title Argument = POSITIVE_INFINITY
90 * @title Argument = NEGATIVE_INFINITY
109 * @title type of argument - doubl
    [all...]
  /external/mockito/src/org/mockito/
ArgumentMatcher.java 14 * Allows creating customized argument matchers.
47 * <b>Warning:</b> Be reasonable with using complicated argument matching, especially custom argument matchers, as it can make the test less readable.
49 * (Mockito naturally uses equals() for argument matching).
53 * For example, if custom argument matcher is not likely to be reused
54 * or you just need it to assert on argument values to complete verification of behavior.
58 * @param <T> type of argument
65 * Returns whether this matcher accepts the given argument.
67 * The method should <b>never</b> assert if the argument doesn't match. It
70 * @param argument
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_double/
Test_int_to_double.java 27 * @title Argument = 300000000
35 * @title Argument = 1
43 * @title Argument = -1
51 * @title Argument = Integer.MAX_VALUE
59 * @title Argument = Integer.MIN_VALUE
67 * @title Argument = 0
77 * @title type of argument - long
93 * @title type of argument - reference
109 * @title Type of argument - float. The verifier checks that ints
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/long_to_float/
Test_long_to_float.java 26 * @title Argument = 123456789012345
34 * @title Argument = 1
42 * @title Argument = -1
50 * @title Argument = Long.MAX_VALUE
58 * @title Argument = Long.MIN_VALUE
66 * @title Argument = 0
78 * @title Type of argument - double. The verifier checks that longs and
87 * @title type of argument - integer
96 * @title type of argument - reference
  /external/clang/test/Analysis/
free.c 9 free(a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}}
14 free(&a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}}
19 free(a); // expected-warning {{Argument to free() is the address of the static variable 'a', which is not memory allocated by malloc()}}
32 free((void*)1000); // expected-warning {{Argument to free() is a constant address (1000), which is not memory allocated by malloc()}}
46 free(&&label); // expected-warning {{Argument to free() is the address of the label 'label', which is not memory allocated by malloc()}}
50 free((void*)&t10); // expected-warning {{Argument to free() is the address of the function 't10', which is not memory allocated by malloc()}}
64 free(^{return;}); // expected-warning {{Argument to free() is a block, which is not memory allocated by malloc()}}
68 free(&a); // expected-warning {{Argument to free() is the address of the parameter 'a', which is not memory allocated by malloc()}}
73 free(someGlobal); // expected-warning {{Argument to free() is the address of the global variable 'someGlobal', which is not memory allocated by malloc()}}
  /external/clang/test/SemaCXX/
default1.cpp 7 void f(int i = 17); // expected-error {{redefinition of default argument}}
15 int l, // expected-error {{missing default argument on parameter 'l'}}
16 int, // expected-error {{missing default argument on parameter}}
17 int n);// expected-error {{missing default argument on parameter 'n'}}
21 // expected-note{{passing argument to parameter here}}
38 // expected-note{{passing argument to parameter 'y' here}}
41 // expected-note{{passing argument to parameter here}}
62 jj(); // expected-error{{too few arguments to function call, single argument 'f' was not specified}}
69 j(2, 3); // expected-error{{too many arguments to function call, expected at most single argument 'f', have 2}}
  /external/dbus-binding-generator/chromeos-dbus-bindings/
interface.h 14 struct Argument {
15 Argument(const std::string& name_in,
28 const std::vector<Argument>& input_arguments_in,
29 const std::vector<Argument>& output_arguments_in)
34 const std::vector<Argument>& input_arguments_in)
39 std::vector<Argument> input_arguments;
40 std::vector<Argument> output_arguments;
48 const std::vector<Argument>& arguments_in)
52 std::vector<Argument> arguments;
  /external/clang/test/CXX/class/class.mem/
p1b.cpp 2 // implicitly checking the order of default argument parsing:
15 void a2(B b = B()); // expected-error{{use of default argument to function 'B' that is declared later in class 'B'}}
24 B(int b = 42) { // expected-note{{default argument declared here}}
30 void b1(A a = A()); // expected-error{{use of default argument to function 'A' that is declared later in class 'A'}}
42 A(int a = 42); // expected-note{{default argument declared here}}
  /external/clang/test/Misc/
diag-template-diffing.cpp 27 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argument
29 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argument
31 // CHECK-ELIDE-TREE: candidate function not viable: no known conversion from argument type to parameter type for 1st argument
35 // CHECK-NOELIDE-TREE: candidate function not viable: no known conversion from argument type to parameter type for 1st argument
46 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<[5 * ...], 2, [2 * ...], 7>' to 'I1<[5 * ...], 3, [2 * ...], (no argument)>' for 1st argument
48 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I1<1, 2, 3, 4, 2, 2, 4, 3, 7>' to 'I1<1, 2, 3, 4, 2, 3, 4, 3, (no argument)>' for 1st argument
    [all...]
  /external/clang/test/Sema/
builtins-overflow.c 17 __builtin_add_overflow(c, 1, &r); // expected-error {{operand argument to overflow builtin must be an integer ('const char *' invalid)}}
18 __builtin_add_overflow(1, c, &r); // expected-error {{operand argument to overflow builtin must be an integer ('const char *' invalid)}}
19 __builtin_add_overflow(1, 1, 3); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('int' invalid)}}
20 __builtin_add_overflow(1, 1, &f); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('float *' invalid)}}
21 __builtin_add_overflow(1, 1, &q); // expected-error {{result argument to overflow builtin must be a pointer to a non-const integer ('const unsigned int *' invalid)}}
  /external/clang/test/SemaObjC/
argument-checking.m 5 extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
6 extern int charFunc(char); // expected-note{{passing argument to parameter here}}
10 -(int)charStarMeth:(char *)s; // expected-note{{passing argument to parameter 's' here}}
11 -structMeth:(struct S)s; // expected-note{{passing argument to parameter 's' here}}
13 :(struct S)s2; // expected-note{{passing argument to parameter 's2' here}}
  /external/clang/test/SemaTemplate/
temp_arg_type.cpp 5 A<0> *a1; // expected-error{{template argument for template type parameter must be a type}}
16 A<function_tpl> a7; // expected-error{{template argument for template type parameter must be a type}}
27 A<X> * a = 0; // expected-warning{{template argument uses local type 'X'}}
30 struct { int x; } Unnamed; // expected-note{{unnamed type used in template argument was declared here}}
31 A<__typeof__(Unnamed)> *a9; // expected-warning{{template argument uses unnamed type}}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
Support_MessageFormat.java 60 // test with MessageFormat.Field.ARGUMENT
61 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
92 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4));
93 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4));
95 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4));
96 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4));
98 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4));
100 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3));
101 v.add(new FieldContainer(20, 21, Field.ARGUMENT, 3));
103 v.add(new FieldContainer(21, 23, Field.ARGUMENT, 3))
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_MessageFormat.java 57 // test with MessageFormat.Field.ARGUMENT
58 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15);
87 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4));
89 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4));
90 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4));
92 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4));
93 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4));
95 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3));
97 v.add(new FieldContainer(20, 21, Field.ARGUMENT, 3));
98 v.add(new FieldContainer(21, 23, Field.ARGUMENT, 3))
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/iface/
argument_factory.hpp 33 // another name can be argument production policy
37 // Argument factory interface
38 virtual argument_ptr produce_using( parameter& p, argv_traverser& tr ) = 0; /// produce argument based on input
39 virtual argument_ptr produce_using( parameter& p, parser const& ) = 0; /// produce argument based on internal generator and/or values of other parameters
40 virtual void argument_usage_info( format_stream& fs ) = 0; /// argument value format information
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Standard_URL_suite.py 25 Required argument: The url
26 Keyword argument to: file the URL should be loaded into
27 Keyword argument inside: Window the URL should be loaded to
28 Keyword argument from_: Referrer, to be sent with the HTTP request
29 Keyword argument _attributes: AppleEvent attribute dictionary
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Standard_URL_suite.py 25 Required argument: The url
26 Keyword argument to: file the URL should be loaded into
27 Keyword argument inside: Window the URL should be loaded to
28 Keyword argument from_: Referrer, to be sent with the HTTP request
29 Keyword argument _attributes: AppleEvent attribute dictionary
  /libcore/ojluni/src/main/java/java/lang/
Math.java 60 * method as a whole rather than at a specific argument, the number of
61 * ulps cited is for the worst-case error at any argument. If a
111 * <ul><li>If the argument is NaN or an infinity, then the
113 * <li>If the argument is zero, then the result is a zero with the
114 * same sign as the argument.</ul>
120 * @return the sine of the argument.
126 * <ul><li>If the argument is NaN or an infinity, then the
133 * @return the cosine of the argument.
139 * <ul><li>If the argument is NaN or an infinity, then the result
141 * <li>If the argument is zero, then the result is a zero with th
    [all...]
StrictMath.java 87 * <ul><li>If the argument is NaN or an infinity, then the
89 * <li>If the argument is zero, then the result is a zero with the
90 * same sign as the argument.</ul>
93 * @return the sine of the argument.
99 * <ul><li>If the argument is NaN or an infinity, then the
103 * @return the cosine of the argument.
109 * <ul><li>If the argument is NaN or an infinity, then the result
111 * <li>If the argument is zero, then the result is a zero with the
112 * same sign as the argument.</ul>
115 * @return the tangent of the argument
    [all...]

Completed in 1509 milliseconds

1 2 3 4 56 7 8 91011>>