HomeSort by relevance Sort by last modified time
    Searched refs:Method (Results 1176 - 1200 of 1620) sorted by null

<<41424344454647484950>>

  /external/proguard/src/proguard/classfile/instruction/
SimpleInstruction.java 216 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor)
218 instructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, this);
  /external/proguard/src/proguard/shrink/
ShortestUsageMarker.java 98 protected void markMethodHierarchy(Clazz clazz, Method method)
102 currentUsageMark = new ShortestUsageMark(getShortestUsageMark(method),
106 method);
108 super.markMethodHierarchy(clazz, method);
268 // Check the causing class or method, if still necessary.
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
MethodDefinition.java 69 @Nonnull public final Method method; field in class:MethodDefinition
83 public MethodDefinition(@Nonnull ClassDefinition classDef, @Nonnull Method method,
86 this.method = method;
93 methodParameters = ImmutableList.copyOf(method.getParameters());
157 methodString = ReferenceUtil.getMethodDescriptor(method);
159 throw ExceptionWithContext.withContext(ex, "Error while processing method");
161 throw ExceptionWithContext.withContext(ex, "Error while processing method %s", methodString)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DumpFields.java 41 import org.jf.dexlib2.iface.Method;
  /frameworks/base/core/tests/notificationtests/src/android/app/
NotificationStressTest.java 31 import java.lang.reflect.Method;
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
ImageRequest.java 74 super(Method.GET, url, errorListener);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
CompatUtils.java 28 import java.lang.reflect.Method;
203 * Determines if the given class's method is available to call. Can be used to check if system
207 * @param methodName the name of the method to look for
208 * @param parameterTypes the needed parameter types for the method to look for
222 Log.v(TAG, "Could not find method: " + className + "#" + methodName);
225 Log.e(TAG, "Unexpected exception when checking if method: " + className + "#"
232 * Invokes a given class's method using reflection. Can be used to call system apis that exist
235 * @param instance The instance of the class to invoke the method on.
236 * @param methodName The name of the method to invoke.
237 * @param parameterTypes The needed parameter types for the method
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/telecom/
TelecomManagerCompat.java 32 import java.lang.reflect.Method;
64 * @param telecomManager the {@link TelecomManager} used for method calls, if possible.
85 * @param telecomManager the {@link TelecomManager} used for method calls, if possible.
101 * @param telecomManager the {@link TelecomManager} used for method calls, if possible.
124 * If no PhoneAccount fits the criteria above, this method will return {@code null}.
126 * @param telecomManager the {@link TelecomManager} used for method calls, if possible.
186 * @param telecomManager the {@link TelecomManager} used for method calls, if possible.
268 * Returns the current SIM call manager. Apps must be prepared for this method to return null,
  /system/connectivity/shill/
ipconfig.h 70 std::string method; member in struct:shill::IPConfig::Properties
96 enum Method {
144 // Registers a callback that's executed every time the Refresh method
  /external/clang/lib/AST/
DeclCXX.cpp 28 // Decl Allocation/Deallocation Method Implementations
434 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
435 if (Method->isVirtual()) {
546 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
547 if (Method->isCopyAssignmentOperator()) {
551 Method->getParamDecl(0)->getType()->getAs<ReferenceType>();
556 if (Method->isMoveAssignmentOperator())
590 if (!Method->isImplicit() && !Method->isUserProvided()) {
591 // This method is user-declared but not user-provided. We can't work ou
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-spec-builders_test.cc 111 // This line verifies that a mock method can take a by-reference
120 // Even though this mock class contains a mock method that takes
172 // redefining a mock method name. This could happen, for example, when
176 #define Method MethodW
181 virtual int Method() = 0;
187 MOCK_METHOD0(Method, int());
193 // Tests that a method with expanded name compiles.
196 ON_CALL(cc, Method());
199 // Tests that the method with expanded name not only compiles but runs
203 ON_CALL(cc, Method()).WillByDefault(Return(42))
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
SimpleLog.java 23 import java.lang.reflect.Method;
275 * This method assembles the message
648 Method method = Thread.class.getMethod("getContextClassLoader", local
653 classLoader = (ClassLoader)method.invoke(Thread.currentThread(),
661 * the method being invoked (getContextClassLoader) throws
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 173 private CharInfo(String entitiesResource, String method, boolean internal)
329 if (Method.XML.equals(method))
335 if (Method.HTML.equals(method)) {
337 // "The html output method should not escape < characters occurring in attribute values."
385 * the character '>' this method would return the fully decorated
393 * Simplest fix for now is to make it a synchronized method, or to give
460 final String entitiesFileName, final String method,
466 method, internal);
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 99 ObjCBoxedExpr(Expr *E, QualType T, ObjCMethodDecl *method,
104 SubExpr(E), BoxingMethod(method), Range(R) {}
150 QualType T, ObjCMethodDecl * Method,
159 QualType T, ObjCMethodDecl * Method,
273 QualType T, ObjCMethodDecl *method,
307 QualType T, ObjCMethodDecl *method,
561 /// \brief Contains the Setter method pointer and MethodRefFlags bit flags.
854 /// The innermost message send invokes the "alloc" class method on the
856 /// "initWithString" instance method on the object returned from
871 /// referring to the method that we type-checked against
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-member-pointers.cpp 686 struct Base { void Method(); };
689 void f() { use(&Child::Method); }
  /external/easymock/src/org/easymock/internal/
RecordState.java 19 import java.lang.reflect.Method;
262 "missing behavior definition for the preceding method call "
275 "method call on the mock needed before setting "
283 "void method cannot return a value"));
307 "last method called on mock cannot throw "
330 "last method called on mock is not a void method"));
338 "last method called on mock is not a void method"));
385 public void setMatcher(Method method, org.easymock.ArgumentsMatcher matcher) {
    [all...]
  /external/guice/core/src/com/google/inject/internal/
ConstructorBindingImpl.java 37 import java.lang.reflect.Method;
190 public Map<Method, List<org.aopalliance.intercept.MethodInterceptor>> getMethodInterceptors() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
ULocaleCollationTest.java 15 import java.lang.reflect.Method;
154 Method getLocale = cls.getMethod("getLocale", getLocaleParams);
186 * en_US_FAKEVARIANT so this method can verify correct fallback
190 * object) but is required for the overload of this method that
201 * en_US_FAKEVARIANT so this method can verify correct fallback
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/
ULocaleCollationTest.java 14 import java.lang.reflect.Method;
150 Method getLocale = cls.getMethod("getLocale", getLocaleParams);
182 * en_US_FAKEVARIANT so this method can verify correct fallback
186 * object) but is required for the overload of this method that
197 * en_US_FAKEVARIANT so this method can verify correct fallback
  /external/jetty/src/java/org/eclipse/jetty/xml/
XmlConfiguration.java 28 import java.lang.reflect.Method;
96 Method load = slc.getMethod("load",Class.class);
209 Method gcp;
301 * <p>This method must be called by any {@link ConfigurationProcessor} when it
372 * This method applies the nested Set, Put, Call, etc. elements to the given object.
424 * Call a set method. This method makes a best effort to find a matching set method. The type of the value is used to find a suitable set method by 1.
455 Method set = oClass.getMethod(name,vClass)
673 Method method = oClass.getMethod("get" + name.substring(0,1).toUpperCase(Locale.ENGLISH) + name.substring(1),(java.lang.Class[])null); local
738 String method = node.getAttribute("name"); local
    [all...]
  /external/libweave/src/
device_registration_info.h 172 void DoCloudRequest(provider::HttpClient::Method method,
179 provider::HttpClient::Method method; member in struct:weave::DeviceRegistrationInfo::CloudRequestData
225 // This method reschedules any pending/queued fetch requests.
314 // Backoff manager for DoCloudRequest() method.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClassEmitter.java 117 return ReflectUtils.getSignature((Method)obj).toString();
133 String s = ReflectUtils.getSignature((Method)obj).toString();
172 MethodInfo method = (MethodInfo)info.get(key); local
173 Type[] types = method.getSignature().getArgumentTypes();
179 // TODO: change method lookup process so MethodInfo will already reference base
180 // instead of superclass when superclass method is inaccessible
181 e.invoke(method, base);
182 if (!TypeUtils.isConstructor(method)) {
183 e.box(method.getSignature().getReturnType());
194 e.throw_exception(ILLEGAL_ARGUMENT_EXCEPTION, "Cannot find matching method/constructor")
    [all...]
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SimpleLog.java 22 import java.lang.reflect.Method;
271 * Do the actual logging. This method assembles the message and then calls
627 Method method = Thread.class.getMethod("getContextClassLoader"); local
631 classLoader = (ClassLoader) method.invoke(Thread.currentThread());
636 * InvocationTargetException is thrown by 'invoke' when the method
  /external/testng/src/main/java/org/testng/internal/
ConfigurationMethod.java 3 import java.lang.reflect.Method;
88 public ConfigurationMethod(Method method,
102 this(new ConstructorOrMethod(method), annotationFinder, isBeforeSuite, isAfterSuite, isBeforeTest, isAfterTest,
138 for (ITestNGMethod method : methods) {
139 result.add(new ConfigurationMethod(method.getConstructorOrMethod(),
383 // If this configuration method has inherit-groups=true, add the groups
PackageUtils.java 7 import java.lang.reflect.Method;
131 Method thisMethod = url.openConnection().getClass()

Completed in 536 milliseconds

<<41424344454647484950>>