/external/clang/test/SemaObjCXX/ |
objc-pointer-conv.mm | 29 - (void) Meth : (I*) Arg; // expected-note{{passing argument to parameter 'Arg' here}} 35 [sel Meth : p]; // expected-error {{cannot initialize a parameter of type 'I *' with an lvalue of type 'const I *'}} 45 accept_derived(i); // expected-warning{{incompatible pointer types passing 'I *' to parameter of type 'DerivedFromI *'}}
|
arc-objc-lifetime.mm | 50 - (void) MMM : (NSObject*) arg0 : (NSObject<P>*&)arg : (id) arg1 : (id<P>&) arg2 {} // expected-warning {{method parameter of type 'NSObject<P> *__autoreleasing &' with no explicit ownership}} \ 51 // expected-warning {{method parameter of type '__autoreleasing id<P> &' with no explicit ownership}} 53 - (void) M : (NSObject**)arg0 : (id*)arg {} // expected-warning {{method parameter of type 'NSObject *__autoreleasing *' with no explicit ownership}} \ 54 // expected-warning {{method parameter of type '__autoreleasing id *' with no explicit ownership}} 56 - (void) BLOCK : (T&) arg0 : (T)arg : (__strong T*) arg1 {} // expected-warning {{method parameter of type '__autoreleasing T &' (aka 'void (^__autoreleasing &)()') with no explicit ownership}}
|
/external/clang/test/SemaTemplate/ |
temp_arg_type.cpp | 2 template<typename T> class A; // expected-note 2 {{template parameter is declared here}} expected-note{{template is declared here}} 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}}
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
ParametersAreNullableByDefault.java | 16 * annotation of the corresponding parameter in the superclass applies) 17 * <li> there is a default parameter annotation applied to a more tightly nested 27 @TypeQualifierDefault(ElementType.PARAMETER)
|
/external/openssl/crypto/rc2/ |
version | 5 this last parameter, 'bits'. It the key is 128 bits, BSAFE 6 also sets this parameter to 128. The old behaviour can be 7 duplicated by setting this parameter to 1024.
|
/external/srec/doc/logs/uapi/ |
run_parameters.log | 11 Retrieving parameter values... 19 Setting new parameter values... 27 Getting new parameter values...
|
/external/srec/srec/AcousticModels/include/ |
SR_AcousticModels.h | 65 * Sets AcousticModels parameter, overriding session defaults. 68 * @param key Parameter name 69 * @param value Parameter value 73 * Returns AcousticModels parameter value. 76 * @param key Parameter name 77 * @param value [in/out] Parameter value 145 * Sets AcousticModel parameter, overriding session defaults. 148 * @param key Parameter name 149 * @param value Parameter value 153 * Returns AcousticModel parameter value [all...] |
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
LVREV_GetControlParameters.c | 31 /* Request the LVREV module control parameters. The current parameter set is returned */ 32 /* via the parameter pointer. */ 36 /* pControlParams Pointer to an empty parameter structure */
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaEnvReverbTest.java | 153 msg = msg.concat(": Bad parameter value"); 154 loge(msg, "Bad parameter value"); 156 msg = msg.concat(": get parameter() rejected"); 157 loge(msg, "get parameter() rejected"); 159 msg = msg.concat("get parameter() called in wrong state"); 160 loge(msg, "get parameter() called in wrong state"); 188 msg = msg.concat(": Bad parameter value"); 189 loge(msg, "Bad parameter value"); 191 msg = msg.concat(": get parameter() rejected"); 192 loge(msg, "get parameter() rejected") [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/annotations/ |
Nullable.java | 23 * Denotes a parameter or field can be null. 25 * When decorating a method call parameter, this denotes the parameter can
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldGenericReflectionCornerCases.java | 49 Type parameter = parameterTypes[0]; local 50 assertInstanceOf(ParameterizedType.class, parameter); 51 ParameterizedType paramType = (ParameterizedType) parameter; 92 Type parameter = parameterTypes[0]; local 93 assertInstanceOf(ParameterizedType.class, parameter); 94 ParameterizedType paramType = (ParameterizedType) parameter; 149 Type parameter = parameterTypes[0]; local 150 assertInstanceOf(ParameterizedType.class, parameter); 151 ParameterizedType paramType = (ParameterizedType) parameter; 201 Type parameter = parameterTypes[0] local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
Parameter.java | 54 * A template parameter editable and edited by the user. 61 class Parameter { 85 * Constraints that can be applied to a parameter which helps the UI add a 93 * means that the parameter should designate a name that does not 101 * means that the parameter should designate a name that already exists as 155 /** The template defining the parameter */ 158 /** The type of parameter */ 162 /** The unique id of the parameter (not displayed to the user) */ 166 /** The display name for this parameter */ 171 * The initial value for this parameter (see also {@link #suggest} for mor [all...] |
/libcore/luni/src/main/java/org/w3c/dom/ |
DOMConfiguration.java | 25 * <p> The parameter names used by the <code>DOMConfiguration</code> object 33 * parameter values may also be required to be supported by the 34 * implementation. Refer to the definition of the parameter to know if a 50 * DOM. In addition, Setting this parameter to <code>true</code> will also 101 * Schema normalized values</a> in the case of XML Schema. Since this parameter requires to have schema 102 * information, the "validate" parameter will also be set to 103 * <code>true</code>. Having this parameter activated when "validate" is 106 * processing, this parameter does not apply to attribute value 139 * <p ><b>Note:</b> This parameter does not affect <code>Entity</code> nodes. </dd> 144 * <code>DOMErrorHandler</code> registered using this parameter. Th [all...] |
/external/oauth/core/src/main/java/net/oauth/ |
OAuth.java | 107 for (Map.Entry parameter : parameters) { 113 into.write(percentEncode(toString(parameter.getKey())) 116 into.write(percentEncode(toString(parameter.getValue())) 123 public static List<Parameter> decodeForm(String form) { 124 List<Parameter> list = new ArrayList<Parameter>(); 137 list.add(new Parameter(name, value)); 198 public static List<Parameter> newList(String... parameters) { 199 List<Parameter> list = new ArrayList<Parameter>(parameters.length / 2) [all...] |
/external/clang/test/CXX/temp/temp.arg/temp.arg.template/ |
p3-0x.cpp | 20 template<template <int ...N> class TT> struct X0 { }; // expected-note{{previous non-type template parameter with type 'int' is here}} 23 template<int I, long J> struct X0c; // expected-note{{template non-type parameter has a different type 'long' in template argument}} 27 X0<X0c> inst_x0c; // expected-error{{template template argument has different template parameters than its corresponding template template parameter}} 30 template <T ...N> class TT> // expected-note{{previous non-type template parameter with type 'short' is here}} 35 template<short I, long J> struct X1d; // expected-note{{template non-type parameter has a different type 'long' in template argument}}
|
/external/clang/test/CXX/temp/temp.param/ |
p9-0x.cpp | 4 // template-parameter that is not a template parameter pack. 5 template<typename ...Types = int> // expected-error{{template parameter pack cannot have a default argument}} 8 template<int ...Values = 0> // expected-error{{template parameter pack cannot have a default argument}} 13 template<template<class> class ...Templates = vector> // expected-error{{template parameter pack cannot have a default argument}}
|
/external/clang/test/SemaObjC/ |
method-conflict-1.m | 21 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:': 'NSObject *' vs 'NSArray *'}} 35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod:': 'id<MyProtocol>' vs 'MyClass *'}} 37 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:': 'id<MyProtocol>' vs 'MyClass<MyProtocol> *'}} 52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'A *' vs 'B *'}} 62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'id' vs 'A *'}}
|
/external/icu4c/common/ |
schriter.cpp | 36 // we had set the input parameter's array, now we need to set our copy's array 45 // we had set the input parameter's array, now we need to set our copy's array 56 // we had set the input parameter's array, now we need to set our copy's array 64 // we had set the input parameter's array, now we need to set our copy's array 75 // we had set the input parameter's array, now we need to set our copy's array
|
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlopenaudio.html | 124 CLASS="PARAMETER" 131 CLASS="PARAMETER" 136 CLASS="PARAMETER" 147 CLASS="PARAMETER" 249 CLASS="PARAMETER" 262 CLASS="PARAMETER" 267 CLASS="PARAMETER" 285 >This pointer is passed as the first parameter to the <TT 297 CLASS="PARAMETER" 305 CLASS="PARAMETER" [all...] |
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
domconfigerrorhandler2.js | 74 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-error-handler 89 var parameter = "error-handler"; 95 canSet = domConfig.canSetParameter(parameter,errorHandler); 97 domConfig.setParameter(parameter, errorHandler.handleError); 98 state = domConfig.getParameter(parameter);
|
/libcore/luni/src/main/java/java/security/spec/ |
ECPublicKeySpec.java | 31 * curve point and parameter specification. 36 * the domain parameter specification. 52 throw new IllegalArgumentException("the w parameter is point at infinity"); 57 * Returns the domain parameter specification. 59 * @return the domain parameter specification.
|
MGF1ParameterSpec.java | 21 * The parameter specification for the Mask Generation Function (MGF1) in 31 * The predefined MGF1 parameter specification with an "SHA-1" message 38 * The predefined MGF1 parameter specification with an "SHA-256" message 45 * The predefined MGF1 parameter specification with an "SHA-384" message 52 * The predefined MGF1 parameter specification with an "SHA-512" message
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
PSource.java | 58 * The explicit specification of the parameter <code>P</code> used in the 78 * parameter <code>P</code>. 81 * the parameter <code>P</code>. 97 * Returns a copy of the value of the parameter <code>P</code>. 99 * @return a copy of the value of the parameter <code>P</code>
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
KeyStoreBuilderParametersTest.java | 32 // Null parameter 39 // Not null parameter 52 // Null parameter 59 // Empty parameter 67 // Not null parameter
|
/external/apache-http/src/org/apache/http/client/params/ |
ClientPNames.java | 35 * Parameter names for the HttpClient module. 48 * This parameter expects a value of type {@link String}. 64 * This parameter expects a value of type {@link Boolean}. 72 * This parameter expects a value of type {@link Boolean}. 81 * This parameter expects a value of type {@link Integer}. 91 * This parameter expects a value of type {@link Boolean}. 99 * This parameter expects a value of type {@link Boolean}. 107 * This parameter expects a value of type {@link String}. 115 * This parameter expects a value of type {@link org.apache.http.HttpHost}. 123 * This parameter expects a value of type {@link java.util.Collection}. The [all...] |