/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 115 * @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...] |
/external/chromium/base/debug/ |
debug_on_start_win.cc | 16 // Minimalist implementation to try to find a command line argument. We can use 19 // The code is not that bright and will find things like ---argument or 20 // /-/argument. 23 wchar_t argument[50] = {}; local 25 argument[i] = argument_c[i]; 27 int argument_len = lstrlen(argument); 32 // Try to find an argument. 37 if (lstrcmpi(command_line+1, argument) == 0) { 54 // Try to find the argument.
|
/external/chromium_org/base/debug/ |
debug_on_start_win.cc | 16 // Minimalist implementation to try to find a command line argument. We can use 19 // The code is not that bright and will find things like ---argument or 20 // /-/argument. 23 wchar_t argument[50] = {}; local 25 argument[i] = argument_c[i]; 27 int argument_len = lstrlen(argument); 32 // Try to find an argument. 37 if (lstrcmpi(command_line+1, argument) == 0) { 54 // Try to find the argument.
|
/external/clang/test/Analysis/ |
free.c | 7 free(a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}} 12 free(&a); // expected-warning {{Argument to free() is the address of the local variable 'a', which is not memory allocated by malloc()}} 17 free(a); // expected-warning {{Argument to free() is the address of the static variable 'a', which is not memory allocated by malloc()}} 30 free((void*)1000); // expected-warning {{Argument to free() is a constant address (1000), which is not memory allocated by malloc()}} 44 free(&&label); // expected-warning {{Argument to free() is the address of the label 'label', which is not memory allocated by malloc()}} 48 free((void*)&t10); // expected-warning {{Argument to free() is the address of the function 't10', which is not memory allocated by malloc()}} 57 free(^{return;}); // expected-warning {{Argument to free() is a block, which is not memory allocated by malloc()}} 61 free(&a); // expected-warning {{Argument to free() is the address of the parameter 'a', which is not memory allocated by malloc()}} 66 free(someGlobal); // expected-warning {{Argument to free() is the address of the global variable 'someGlobal', which is not memory allocated by malloc()}}
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
Support_MessageFormat.java | 58 // test with MessageFormat.Field.ARGUMENT 59 t_FormatWithField(1, format, objects, null, Field.ARGUMENT, 3, 15); 88 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4)); 90 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4)); 91 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4)); 93 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4)); 94 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4)); 96 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3)); 98 v.add(new FieldContainer(20, 21, Field.ARGUMENT, 3)); 99 v.add(new FieldContainer(21, 23, Field.ARGUMENT, 3)) [all...] |
/external/chromium_org/tools/json_schema_compiler/dart_test/ |
functions.idl | 25 // Function taking a non-optional argument. 28 // Function taking an optional argument. 31 // Function taking a non-optional dictionary argument. 34 // Function taking an optional dictionary argument. 37 // Function taking an entry argument.
|
/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/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/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/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
|
WorldWideWeb_suite.py | 26 Required argument: URL 27 Keyword argument to: file destination 28 Keyword argument toWindow: window iD 29 Keyword argument flags: Binary: any combination of 1, 2 and 4 is allowed: 1 and 2 mean force reload the document. 4 is ignored 30 Keyword argument post_data: Form posting data 31 Keyword argument post_type: MIME type of the posting data. Defaults to application/x-www-form-urlencoded 32 Keyword argument progressApp: Application that will display progress 33 Keyword argument _attributes: AppleEvent attribute dictionary 59 Required argument: File to open 60 Keyword argument MIME_type: MIME typ [all...] |
/external/clang/test/Misc/ |
diag-template-diffing.cpp | 27 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<class std::basic_string>' to 'vector<class versa_string>' for 1st argument 29 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<class std::basic_string>' to 'vector<class 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/chromium_org/third_party/WebKit/Source/bindings/templates/ |
methods.cpp | 40 {% for argument in method.arguments %} 41 {{generate_argument(method, argument) | indent}} 78 {% macro generate_argument(method, argument) %} 79 {% if argument.is_optional and not argument.has_default and 80 argument.idl_type != 'Dictionary' %} 84 if (UNLIKELY(info.Length() <= {{argument.index}})) { 85 {{cpp_method_call(method, argument.v8_set_return_value, argument.cpp_value) | indent}} 89 {% if method.is_strict_type_checking and argument.is_wrapper_type % [all...] |
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 110 + " <ARG> is an optional string argument\n" 171 for (String argument; (argument = mTokenizer.nextArg()) != null;) { 172 if (ARGUMENT_URI.equals(argument)) { 173 uri = Uri.parse(argumentValueRequired(argument)); 174 } else if (ARGUMENT_USER.equals(argument)) { 175 userId = Integer.parseInt(argumentValueRequired(argument)); 176 } else if (ARGUMENT_BIND.equals(argument)) { 179 throw new IllegalArgumentException("Unsupported argument: " + argument); 305 String argument = mTokenizer.nextArg(); local [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/ |
DnsSdResponseListenerTest.java | 71 receiveCallback(new Argument(instanceName, registrationType)); 81 IPP_DNS_PTR.add(new Argument(ippInstanceName, ippRegistrationType)); 82 AFP_DNS_PTR.add(new Argument(afpInstanceName, afpRegistrationType)); 83 ALL_DNS_PTR.add(new Argument(ippInstanceName, ippRegistrationType)); 84 ALL_DNS_PTR.add(new Argument(afpInstanceName, afpRegistrationType)); 88 * The container of the argument of {@link #onDnsSdServiceAvailable}. 90 static class Argument extends ListenerArgument { 96 * Set the argument of {@link #onDnsSdServiceAvailable}. 101 Argument(String instanceName, String registrationType) { 108 if (obj == null || !(obj instanceof Argument)) { [all...] |
DnsSdTxtRecordListenerTest.java | 73 receiveCallback(new Argument(fullDomainName, txtRecordMap)); 86 IPP_DNS_TXT.add(new Argument(ippDomainName, ippTxtRecord)); 87 AFP_DNS_TXT.add(new Argument(afpDomainName, afpTxtRecord)); 88 ALL_DNS_TXT.add(new Argument(ippDomainName, ippTxtRecord)); 89 ALL_DNS_TXT.add(new Argument(afpDomainName, afpTxtRecord)); 93 * The container of the argument of {@link #onDnsSdTxtRecordAvailable}. 95 static class Argument extends ListenerArgument { 101 * Set the argument of {@link #onDnsSdTxtRecordAvailable}. 105 Argument(String fullDomainName, Map<String, String> txtRecordMap) { 112 if (obj == null || !(obj instanceof Argument)) { [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_char/ |
Test_int_to_char.java | 27 * @title Argument = 65 35 * @title Argument = 65537 43 * @title Argument = -2 51 * @title Argument = 0x110000 59 * @title Argument = 0 67 * @title Argument = 65535 75 * @title Argument = Integer.MAX_VALUE 83 * @title Argument = Integer.MIN_VALUE 93 * @title type of argument - double 106 * @title type of argument - lon [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/int_to_float/ |
Test_int_to_float.java | 26 * @title Argument = 123456 34 * @title Argument = 1 42 * @title Argument = -1 50 * @title Argument = 33564439 59 * @title Argument = 0 67 * @title Argument = Argument = Integer.MAX_VALUE 75 * @title Argument = Integer.MIN_VALUE 85 * @title (type of argument - double) 99 * @title type of argument - lon [all...] |