/dalvik/dx/tests/111-use-null-as-array/ |
run | 19 --dump-to=- --dump-method="Blort.test*" *.class
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
output_text.properties | 21 # Specify defaults when method="text". 25 method=text 33 # <xsl:output method="html" encoding="UTF-8"
|
/external/chromium/net/url_request/ |
url_request_netlog_params.cc | 13 const std::string& method, 17 method_(method), 25 dict->SetString("method", method_);
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
IMethodCollection.java | 32 * @param offset method offset [must be in [0, size()) range; input not checked] 45 * @param name method name [null or empty will result in no matches] 46 * @return array of method offsets in no particular order [never null; could be empty] 69 * that all data referenced in 'method' will eventually appear in the 72 * @param method new method descriptor [may not be null] 74 int add (Method_info method); 78 * checks are made. No method type compatibility checks are made. It is 80 * in 'method' will eventually appear in the constant pool. 82 * @param offset method offset [must be in [0, size()) range; input not checked [all...] |
/external/proguard/src/proguard/classfile/attribute/annotation/ |
RuntimeInvisibleParameterAnnotationsAttribute.java | 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 60 attributeVisitor.visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, this);
|
RuntimeVisibleParameterAnnotationsAttribute.java | 58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 60 attributeVisitor.visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, this);
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationVisitor.java | 38 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); 39 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation);
|
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/visitor/ |
AllExceptionInfoVisitor.java | 51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
|
/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...] |
/frameworks/base/tools/aidl/ |
aidl_language_y.y | 196 p->next = (interface_item_type*)$2.method; 199 $$.interface_item = (interface_item_type*)$2.method; 203 fprintf(stderr, "%s:%d: syntax error before ';' (expected method declaration)\n", 211 method_type *method = (method_type*)malloc(sizeof(method_type)); 212 method->interface_item.item_type = METHOD_TYPE; 213 method->interface_item.next = NULL; 214 method->type = $1.type; 215 method->oneway = false; 216 memset(&method->oneway_token, 0, sizeof(buffer_type)); 217 method->name = $2.buffer [all...] |
/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)
|
/dalvik/vm/mterp/x86-atom/ |
OP_THROW_VERIFICATION_ERROR.S | 32 movl offGlue_method(%edx), %ecx # %ecx<- glue->method 37 movl %ecx, -12(%esp) # push parameter glue->method 39 call dvmThrowVerificationError # call: (const Method* method, int kind, int 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/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/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 */
|
/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...] |
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
CCThreadTask.h | 38 typedef void (T::*Method)(); 41 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method) 43 return adoptPtr(new CCThreadTaskImpl(instance, method)); 47 CCThreadTask0(T* instance, Method method) 49 , m_method(method) 59 Method m_method; 65 typedef void (T::*Method)(MP1); 69 static PassOwnPtr<CCThreadTaskImpl> create(T* instance, Method method, Param1 parameter1 [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...] |