Searched refs:Method (Results 76 - 100 of 544) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/optimize/
H A DChangedCodePrinter.java117 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
123 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
129 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute)
141 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
147 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
153 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
159 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
165 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
171 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
201 public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method metho
[all...]
/external/proguard/src/proguard/optimize/info/
H A DMethodInvocationMarker.java46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
87 private static void incrementInvocationCount(Method method)
101 public static int getInvocationCount(Method method)
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
78 private static void setInvokesSuperMethods(Method method)
88 public static boolean invokesSuperMethods(Method method)
H A DParameterUsageMarker.java173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
185 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
188 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
220 private static void setParameterSize(Method method, int parameterSize)
233 public static int getParameterSize(Method method)
243 public static void markParameterUsed(Method method, int variableIndex)
256 public static void markUsedParameters(Method method, long usedParameters)
269 public static boolean isParameterUsed(Method method, int variableIndex)
280 public static long getUsedParameters(Method method)
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DUnsafeAllocator.java22 import java.lang.reflect.Method;
42 final Method allocateInstance = unsafeClass.getMethod("allocateInstance", Class.class);
59 final Method newInstance = ObjectInputStream.class
78 Method getConstructorId = ObjectStreamClass.class
82 final Method newInstance = ObjectStreamClass.class
101 Method getConstructorId = ObjectStreamClass.class
105 final Method newInstance = ObjectStreamClass.class
H A DInvocationHandlerAdapter.java21 import java.lang.reflect.Method;
41 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
62 private final Method method;
64 public ProxiedMethod(Method method) {
88 public Method getJavaMethod() {
/external/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DPlatform.java26 import java.lang.reflect.Method;
153 Method getMtu;
162 Method setUseSessionTickets;
163 Method setHostname;
178 Method setNpnProtocols = openSslSocketClass.getMethod("setNpnProtocols", byte[].class);
179 Method getNpnSelectedProtocol = openSslSocketClass.getMethod("getNpnSelectedProtocol");
198 Method putMethod = nextProtoNegoClass.getMethod("put", SSLSocket.class, providerClass);
199 Method getMethod = nextProtoNegoClass.getMethod("get", SSLSocket.class);
212 private final Method getMtu;
214 private Java6(Method getMt
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DVariableRemapper.java63 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
79 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
91 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
105 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
114 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo)
123 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
126 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_collator.h22 template <class T, class Method>
28 StringMethodComparatorWithCollator(icu::Collator* collator, Method method)
40 Method method_;
45 template <class T, class Method>
50 explicit StringMethodComparator(Method method) : method_(method) { }
58 Method method_;
64 template <class T, class Method>
67 Method method) {
73 StringMethodComparator<T, Method>(method));
78 StringMethodComparatorWithCollator<T, Method>(collato
[all...]
/external/proguard/src/proguard/optimize/peephole/
H A DReachableCodeMarker.java82 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
146 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
163 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
184 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
203 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets)
215 private void markBranchTarget(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset)
228 private void markCode(Clazz clazz, Method metho
[all...]
/external/chromium_org/webkit/browser/fileapi/
H A Dtask_runner_bound_observer_list.h19 template <class T, class Method, class Params>
20 void NotifyWrapper(T obj, Method m, const Params& p) {
65 template <class Method, class Params>
66 void Notify(Method method, const Params& params) const {
78 base::Bind(&NotifyWrapper<ObserverStoreType, Method, Params>,
/external/javassist/src/main/javassist/util/proxy/
H A DRuntimeSupport.java18 import java.lang.reflect.Method;
33 public Object invoke(Object self, Method m,
34 Method proceed, Object[] args)
50 String desc, java.lang.reflect.Method[] methods)
67 public static Method findMethod(Object self, String name, String desc) {
68 Method m = findMethod2(self.getClass(), name, desc);
81 public static Method findSuperMethod(Object self, String name, String desc) {
83 Method m = findSuperMethod2(clazz.getSuperclass(), name, desc);
98 private static Method findSuperMethod2(Class clazz, String name, String desc) {
99 Method
[all...]
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAttributeNameFilter.java123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
150 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
177 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
195 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
204 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
213 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
222 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
231 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
240 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
249 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method metho
[all...]
H A DRequiredAttributeFilter.java137 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
164 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
191 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
209 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
218 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
227 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
236 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
245 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
254 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
263 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method metho
[all...]
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java47 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
70 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
120 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
215 throw new UnsupportedOperationException("Method must be overridden in ["+this.getClass().getName()+"] if ever called");
270 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
297 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
324 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute)
336 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
342 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
348 public void visitStackMapAttribute(Clazz clazz, Method metho
[all...]
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-generated-function-mockers.h343 #define GMOCK_MOCKER_(arity, constness, Method) \
344 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__)
347 #define GMOCK_METHOD0_(tn, constness, ct, Method, F) \
348 GMOCK_RESULT_(tn, F) ct Method() constness { \
352 GMOCK_MOCKER_(0, constness, Method).SetOwnerAndName(this, #Method); \
353 return GMOCK_MOCKER_(0, constness, Method).Invoke(); \
356 gmock_##Method() constness { \
357 GMOCK_MOCKER_(0, constness, Method).RegisterOwner(this); \
358 return GMOCK_MOCKER_(0, constness, Method)
[all...]
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DMultiInstructionVisitor.java84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
100 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
108 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
116 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
124 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction)
/external/proguard/src/proguard/optimize/evaluation/
H A DStoringInvocationUnit.java112 generalizeMethodParameterValue((Method)referencedMember,
121 Method method,
171 private static void generalizeMethodParameterValue(Method method, int parameterIndex, Value value)
181 public static Value getMethodParameterValue(Method method, int parameterIndex)
190 private static void generalizeMethodReturnValue(Method method, Value value)
200 public static Value getMethodReturnValue(Method method)
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java117 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
125 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
134 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
142 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
158 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute)
166 public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute)
184 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
192 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame)
198 public void visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame)
206 public void visitLessZeroFrame(Clazz clazz, Method metho
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java23 import java.lang.reflect.Method;
117 Method method = generatedClass.getMethod("call");
143 * Method method = null;
147 TypeId<Method> methodType = TypeId.get(Method.class);
149 Local<Method> localMethod = code.newLocal(methodType);
157 Method method = generatedClass.getMethod("call", int.class);
222 Method method = generatedClass.getMethod("call", generatedClass);
255 Method method = generatedClass.getMethod("superHashCode");
470 Method metho
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DCloneUtils.java33 import java.lang.reflect.Method;
46 Method m;
/external/chromium/chrome/browser/ui/cocoa/
H A Dtest_event_utils.h23 Method old_selector_impl_;
24 Method new_selector_impl_;
/external/chromium_org/chrome/browser/ui/cocoa/applescript/
H A Dbookmark_applescript_utils_unittest.h32 Method originalMethod_;
33 Method alternateMethod_;
/external/chromium_org/ppapi/proxy/
H A Denter_proxy.h113 template<class CallbackFactory, typename Method>
117 Method method)
126 template<class CallbackFactory, typename Method, typename A>
130 Method method,
140 template<class CallbackFactory, typename Method, typename A, typename B>
144 Method method,
155 template<class CallbackFactory, typename Method, typename A, typename B,
160 Method method,
/external/clang/test/SemaCXX/
H A Dvtable-instantiation.cc58 static GMG* Method() { return &singleton; } // expected-note{{in instantiation of}} function in struct:PR10020::GMG
66 GMG<int>::Method(); // expected-note{{in instantiation of}}

Completed in 669 milliseconds

1234567891011>>