/frameworks/native/opengl/tests/gldual/ |
Android.mk | 33 LOCAL_CFLAGS := -Werror -Wno-error=unused-parameter
|
/libcore/luni/src/main/java/java/security/ |
AlgorithmParametersSpi.java | 37 * the parameter specification. 55 * initialized, or the parameter could not be encoded. 69 * initialized, or the parameter could not be encoded. 79 * the type of the parameter specification in which this
|
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
BoundedGenericMethodsTests.java | 44 * Tests whether the type parameter is upper bounded by BoundedGenericMethods. 62 * Tests whether the specified method declares a parameter with the type of 63 * the type parameter. 102 * Tests that there are is one Type Parameter on the Class itself.
|
GenericMethodsTests.java | 52 * Tests whether the specified method declares a type parameter T. 62 * Tests whether the specified method declares a parameter with the 63 * type of the type parameter. 76 * Tests whether the type of the return type is the declared type parameter.
|
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
KeyManagerFactorySpiImpl.java | 38 throw new InvalidAlgorithmParameterException("Incorrect parameter");
|
/ndk/sources/cxx-stl/llvm-libc++/cmake/ |
config-ix.cmake | 11 check_cxx_compiler_flag(-Wno-unused-parameter LIBCXX_HAS_WNO_UNUSED_PARAMETER_FLAG)
|
/packages/apps/Browser/src/com/android/browser/ |
EventLogTags.logtags | 7 # Second parameter is where the bookmark was added from, currently history or bookmarks view.
|
/packages/apps/Camera/src/com/android/camera/ui/ |
Rotatable.java | 20 // Set parameter 'animation' to true to have animation when rotation.
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
IntentUtilities.java | 51 * Add the account ID parameter. 60 * Add the mailbox ID parameter. 69 * Add the message ID parameter. 78 * Add the account UUID parameter.
|
/packages/apps/Gallery2/src/com/android/camera/ui/ |
Rotatable.java | 20 // Set parameter 'animation' to true to have animation when rotation.
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
ParameterInteger.java | 19 public interface ParameterInteger extends Parameter {
|
ParameterSet.java | 22 Parameter getFilterParameter(int index);
|
ParameterStyles.java | 23 public interface ParameterStyles extends Parameter {
|
/external/clang/lib/Sema/ |
SemaTemplate.cpp | 451 /// that the template parameter 'PrevDecl' is being shadowed by a new 455 assert(PrevDecl->isTemplateParameter() && "Not a template parameter"); 462 // A template-parameter shall not be redeclared within its 471 /// the parameter D to reference the templated declaration and return a pointer 536 /// ActOnTypeParameter - Called when a C++ template type parameter 538 /// the keyword "typename" was used to declare the type parameter 541 /// parameter (NULL indicates an unnamed template parameter) and 542 /// ParamNameLoc is the location of the parameter name (if any). 543 /// If the type parameter has a default argument, it will be adde [all...] |
/external/chromium/chrome/common/ |
automation_messages_internal.h | 37 // in the app (the app is not fully up at this point). The parameter to this 38 // message is the version string of the automation provider. This parameter 52 // The second parameter is the url to be loaded in the new tab. 66 // The first parameter is the handle to window resource. 67 // The second parameter is the (zero-based) index to be activated 74 // profile of the tab identified by the second parameter. The first 75 // parameter is the URL string. The response contains the length of the 85 // identified by the third parameter. The first parameter is the URL 86 // string, and the second parameter is the cookie name and value to be set [all...] |
/external/clang/include/clang/Basic/ |
DiagnosticASTKinds.td | 177 "%select{class|instance}0 method %1 has a parameter with a different types " 200 "template parameter lists have a different number of parameters (%0 vs %1)">; 202 "template parameter list also declared here">; 204 "template parameter has different kinds in different translation units">; 206 "template parameter declared here">; 208 "parameter kind mismatch; parameter is %select{not a|a}0 parameter pack">; 210 "%select{parameter|parameter pack}0 declared here"> [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/material/ |
TechniqueDef.java | 242 * Returns the define name which the given material parameter influences. 244 * @param paramName The parameter name to look up 257 * Adds a define linked to a material parameter. 259 * Any time the material parameter on the parent material is altered, 263 * on the exact details of how the material parameter changes the define. 265 * @param paramName The name of the material parameter to link to. 266 * @param defineName The name of the define parameter, e.g. USE_LIGHTING 292 * @param defineName The name of the define parameter, e.g. USE_LIGHTING 337 * Adds a new world parameter by the given name. 339 * @param name The world parameter to add [all...] |
/frameworks/base/core/java/android/net/http/ |
HttpAuthHeader.java | 321 // have only one parameter 332 * Parses a single authentication scheme parameter. The parameter 333 * string is expected to follow the format: PARAMETER=VALUE. 335 private void parseParameter(String parameter) { 336 if (parameter != null) { 338 int i = parameter.indexOf('='); 340 String token = parameter.substring(0, i).trim(); 342 trimDoubleQuotesIfAny(parameter.substring(i + 1).trim()); 362 * If the token is a known parameter name, parses and initialize [all...] |
/cts/tools/signature-tools/src/signature/compare/model/subst/ |
ExecutableMemberProjection.java | 66 for (IParameter parameter : original.getParameters()) { 67 result.add(new ParameterProjection(parameter, mappings));
|
/dalvik/libdex/ |
DexProto.h | 113 * Get the parameter descriptors for the given prototype. This is the 152 * Get the parameter count of the given prototype. 157 * Compute the number of parameter words (u4 units) required by the 199 * Single-thread prototype parameter iterator. This structure holds a 217 * Get the type_id index for the next parameter, if any. This returns 218 * kDexNoIndex if the last parameter has already been consumed. 223 * Get the type descriptor for the next parameter, if any. This returns 224 * NULL if the last parameter has already been consumed.
|
/external/apache-harmony/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/ |
ElementTypeTest.java | 44 assertSame(ElementType.PARAMETER, ElementType.valueOf("PARAMETER"));
|
/external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/ |
MyKeyAgreementSpi.java | 76 throw new IllegalArgumentException("Invalid parameter"); 83 throw new IllegalArgumentException("Invalid parameter");
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
MyCertStoreSpi.java | 51 throw new CertStoreException("Parameter is null"); 59 throw new CertStoreException("Parameter is null");
|
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/ |
MyKeyManagerFactorySpi.java | 54 throw new InvalidAlgorithmParameterException("Incorrect parameter"); 64 throw new InvalidAlgorithmParameterException("Invalid parameter");
|
MyTrustManagerFactorySpi.java | 46 throw new InvalidAlgorithmParameterException("Null parameter"); 55 throw new InvalidAlgorithmParameterException("Invalid parameter");
|