/external/proguard/src/proguard/classfile/attribute/visitor/ |
AllExceptionInfoVisitor.java | 51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
|
MultiAttributeVisitor.java | 178 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 182 attributeVisitors[index].visitDeprecatedAttribute(clazz, method, deprecatedAttribute); 187 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 191 attributeVisitors[index].visitSyntheticAttribute(clazz, method, syntheticAttribute); 196 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute) 200 attributeVisitors[index].visitSignatureAttribute(clazz, method, syntheticAttribute); 214 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/external/proguard/src/proguard/optimize/info/ |
SideEffectMethodMarker.java | 91 // Look further if the method hasn't been marked yet. 98 // Mark the method depending on the return value. 114 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 117 hasSideEffects = hasSideEffects(clazz, method, codeAttribute); 127 Method method, 142 method, 159 private static void markSideEffects(Method method) [all...] |
MethodInvocationMarker.java | 46 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) 62 // Mark the referenced method, if any. 69 // Mark the referenced method. 87 private static void incrementInvocationCount(Method method) 89 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 98 * Returns the number of times the given method was invoked by th [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/ |
RobolectricTestRunnerInterface.java | 6 import java.lang.reflect.Method; 11 void internalBeforeTest(Method method); 13 void internalAfterTest(Method method);
|
/libcore/luni/src/main/java/java/lang/ |
Void.java | 20 import java.lang.reflect.Method; 40 Method method = Runnable.class.getMethod("run", EmptyArray.CLASS); local 41 return (Class<Void>) method.getReturnType();
|
/dalvik/dx/tests/069-dex-source-position/ |
run | 19 --dump-method=Blort.test'*' Blort.class 21 --dump-method=Blort.test'*' Blort.class 23 --dump-method=Blort.test'*' Blort.class
|
/dalvik/vm/mterp/x86/ |
OP_THROW_VERIFICATION_ERROR.S | 10 movl offThread_method(%ecx),%ecx # ecx<- self->method 14 movl %ecx,OUT_ARG0(%esp) # arg0<- method 15 call dvmThrowVerificationError # call(method, kind, ref)
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/ |
T.g | 2 * convert method with "public void", add decls. This shows how to insert 14 : method+ 17 // note the reference to the last token matched for method: 18 $input->insert_after($method.stop, "\n}\n"); 22 method 23 : m='method' ID '(' ')' body
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n" 99 " const ::google::protobuf::MethodDescriptor* method) const;\n" 101 " const ::google::protobuf::MethodDescriptor* method) const;\n"); 145 const MethodDescriptor* method = descriptor_->method(i); local 147 sub_vars["name"] = method->name(); 148 sub_vars["input_type"] = ClassName(method->input_type(), true); 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 214 const MethodDescriptor* method = descriptor_->method(i) local 245 const MethodDescriptor* method = descriptor_->method(i); local 288 const MethodDescriptor* method = descriptor_->method(i); local 312 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
RAck.java | 54 protected String method; field in class:RAck 70 cSeqNumber).append(SP).append(method).toString(); 94 * Gets the method of RAckHeader 96 * @return method of RAckHeader 99 return this.method; 120 public void setMethod(String method) throws ParseException { 121 this.method = method;
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AllAnnotationVisitor.java | 67 public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute) 70 runtimeVisibleAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor); 88 public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute) 91 runtimeInvisibleAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor); 95 public void visitAnyParameterAnnotationsAttribute(Clazz clazz, Method method, ParameterAnnotationsAttribute parameterAnnotationsAttribute) 98 parameterAnnotationsAttribute.annotationsAccept(clazz, method, annotationVisitor);
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
ObjectType.java | 63 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) 65 verificationTypeVisitor.visitObjectType(clazz, method, codeAttribute, instructionOffset, this); 69 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) 71 verificationTypeVisitor.visitStackObjectType(clazz, method, codeAttribute, instructionOffset, stackIndex, this); 75 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) 77 verificationTypeVisitor.visitVariablesObjectType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
|
UninitializedType.java | 62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor) 64 verificationTypeVisitor.visitUninitializedType(clazz, method, codeAttribute, instructionOffset, this); 68 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) 70 verificationTypeVisitor.visitStackUninitializedType(clazz, method, codeAttribute, instructionOffset, stackIndex, this); 74 public void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor) 76 verificationTypeVisitor.visitVariablesUninitializedType(clazz, method, codeAttribute, instructionOffset, variableIndex, this);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n" 99 " const ::google::protobuf::MethodDescriptor* method) const;\n" 101 " const ::google::protobuf::MethodDescriptor* method) const;\n"); 145 const MethodDescriptor* method = descriptor_->method(i); local 147 sub_vars["name"] = method->name(); 148 sub_vars["input_type"] = ClassName(method->input_type(), true); 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 214 const MethodDescriptor* method = descriptor_->method(i) local 245 const MethodDescriptor* method = descriptor_->method(i); local 288 const MethodDescriptor* method = descriptor_->method(i); local 312 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_methods.h | 2 * EAP peer: Method registration 14 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method); 18 EapType method, const char *name); 19 void eap_peer_method_free(struct eap_method *method); 20 int eap_peer_method_register(struct eap_method *method); 69 int eap_peer_method_unload(struct eap_method *method); 78 static inline int eap_peer_method_unload(struct eap_method *method) 85 /* EAP peer method registration calls for statically linked in methods */
|
eap_methods.c | 2 * EAP peer: Method registration 23 * eap_peer_get_eap_method - Get EAP method based on type number 25 * @method: EAP type number 26 * Returns: Pointer to EAP method or %NULL if not found 28 const struct eap_method * eap_peer_get_eap_method(int vendor, EapType method) 32 if (m->vendor == vendor && m->method == method) 40 * eap_peer_get_type - Get EAP type for the given EAP method name 41 * @name: EAP method name, e.g., TLS 43 * Returns: EAP method type or %EAP_TYPE_NONE if not foun [all...] |
/external/junit/src/org/junit/runners/ |
BlockJUnit4ClassRunner.java | 63 protected void runChild(final FrameworkMethod method, RunNotifier notifier) { 64 Description description= describeChild(method); 65 if (method.getAnnotation(Ignore.class) != null) { 68 runLeaf(methodBlock(method), description, notifier); 73 protected Description describeChild(FrameworkMethod method) { 75 testName(method), method.getAnnotations()); 153 * Adds to {@code errors} for each method annotated with {@code @Test}, 155 * method with no arguments. 174 * Adds to {@code errors} for each method annotated with {@code @Test}tha [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
EncodedMethod.java | 31 * Class that representats a method of a class. 35 /** {@code non-null;} constant for the method */ 36 private final CstMethodRef method; field in class:EncodedMethod 39 * {@code null-ok;} code for the method, if the method is neither 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neither 54 public EncodedMethod(CstMethodRef method, int accessFlags, 58 if (method == null) [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
EncodedMethod.java | 30 * Class that representats a method of a class. 34 /** {@code non-null;} constant for the method */ 35 private final CstMethodRef method; field in class:EncodedMethod 38 * {@code null-ok;} code for the method, if the method is neither 46 * @param method {@code non-null;} constant for the method 48 * @param code {@code null-ok;} code for the method, if it is neither 53 public EncodedMethod(CstMethodRef method, int accessFlags, 57 if (method == null) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
EncodedMethod.java | 31 * Class that representats a method of a class. 35 /** {@code non-null;} constant for the method */ 36 private final CstMethodRef method; field in class:EncodedMethod 39 * {@code null-ok;} code for the method, if the method is neither 47 * @param method {@code non-null;} constant for the method 49 * @param code {@code null-ok;} code for the method, if it is neither 54 public EncodedMethod(CstMethodRef method, int accessFlags, 58 if (method == null) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkBitmapScaler.cpp | 14 SkResizeFilter(SkBitmapScaler::ResizeMethod method, 52 SkResizeFilter::SkResizeFilter(SkBitmapScaler::ResizeMethod method, 58 // method will only ever refer to an "algorithm method". 59 SkASSERT((SkBitmapScaler::RESIZE_FIRST_ALGORITHM_METHOD <= method) && 60 (method <= SkBitmapScaler::RESIZE_LAST_ALGORITHM_METHOD)); 62 switch(method) { 206 SkBitmapScaler::ResizeMethod method) { 207 // Convert any "Quality Method" into an "Algorithm Method" [all...] |
/external/skia/src/core/ |
SkBitmapScaler.cpp | 14 SkResizeFilter(SkBitmapScaler::ResizeMethod method, 52 SkResizeFilter::SkResizeFilter(SkBitmapScaler::ResizeMethod method, 58 // method will only ever refer to an "algorithm method". 59 SkASSERT((SkBitmapScaler::RESIZE_FIRST_ALGORITHM_METHOD <= method) && 60 (method <= SkBitmapScaler::RESIZE_LAST_ALGORITHM_METHOD)); 62 switch(method) { 206 SkBitmapScaler::ResizeMethod method) { 207 // Convert any "Quality Method" into an "Algorithm Method" [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalVariableExtractor.java | 24 * a method. 27 /** {@code non-null;} method being extracted from */ 28 private final RopMethod method; field in class:LocalVariableExtractor 30 /** {@code non-null;} block list for the method */ 40 * Extracts out all the local variable information from the given method. 42 * @param method {@code non-null;} the method to extract from 45 public static LocalVariableInfo extract(RopMethod method) { 46 LocalVariableExtractor lve = new LocalVariableExtractor(method); 51 * Constructs an instance. This method is private. Use {@link #extract} [all...] |