/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
StackMapFrameVisitor.java | 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame); 36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame); 37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame); 38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame); 39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame) [all...] |
/external/webkit/LayoutTests/http/tests/resources/ |
tripmine.php | 36 $method = $_SERVER['REQUEST_METHOD']; variable 39 if ($method == "OPTIONS") { 46 if ($method != "GET" && $method != "HEAD" && $method != "POST") { 47 setState("FAIL. Non-simple method $method.", $stateFile);
|
/external/webkit/Tools/Scripts/webkitpy/test/ |
skip.py | 46 def _skipped_method(method, message, logger): 48 if method.im_class._printed_skipped_message: 50 method.im_class._printed_skipped_message = True 51 logger.info('Skipping %s.%s: %s' % (method.__module__, method.im_class.__name__, message))
|
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_methods.c | 2 * hostapd / EAP method registration 26 * eap_server_get_eap_method - Get EAP method based on type number 28 * @method: EAP type number 29 * Returns: Pointer to EAP method or %NULL if not found 31 const struct eap_method * eap_server_get_eap_method(int vendor, EapType method) 35 if (m->vendor == vendor && m->method == method) 43 * eap_server_get_type - Get EAP type for the given EAP method name 44 * @name: EAP method name, e.g., TLS 46 * Returns: EAP method type or %EAP_TYPE_NONE if not foun [all...] |
/external/openssh/ |
audit.c | 49 audit_classify_auth(const char *method) 51 if (strcmp(method, "none") == 0) 53 else if (strcmp(method, "password") == 0) 55 else if (strcmp(method, "publickey") == 0 || 56 strcmp(method, "rsa") == 0) 58 else if (strncmp(method, "keyboard-interactive", 20) == 0 || 59 strcmp(method, "challenge-response") == 0) 61 else if (strcmp(method, "hostbased") == 0 || 62 strcmp(method, "rhosts-rsa") == 0) 64 else if (strcmp(method, "gssapi-with-mic") == 0 [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_service.cc | 120 const MethodDescriptor* method = descriptor_->method(i); local 122 GenerateMethodSignature(printer, method, IS_CONCRETE); 125 " impl.$method$(controller, request, done);\n" 127 "method", UnderscoresToCamelCase(method)); 159 const MethodDescriptor* method = descriptor_->method(i); local 160 GenerateMethodSignature(printer, method, IS_ABSTRACT); 169 " com.google.protobuf.Descriptors.MethodDescriptor method,\n 184 const MethodDescriptor* method = descriptor_->method(i); local 229 const MethodDescriptor* method = descriptor_->method(i); local 274 const MethodDescriptor* method = descriptor_->method(i); local 321 const MethodDescriptor* method = descriptor_->method(i); local 364 const MethodDescriptor* method = descriptor_->method(i); local 386 const MethodDescriptor* method = descriptor_->method(i); local [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
AttributeNameFilter.java | 123 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 127 deprecatedAttribute.accept(clazz, method, attributeVisitor); 150 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 154 syntheticAttribute.accept(clazz, method, attributeVisitor); 177 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) 181 signatureAttribute.accept(clazz, method, attributeVisitor); 195 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
RequiredAttributeFilter.java | 137 public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute) 141 deprecatedAttribute.accept(clazz, method, optionalAttributeVisitor); 164 public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute) 168 syntheticAttribute.accept(clazz, method, optionalAttributeVisitor); 191 public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute signatureAttribute) 195 signatureAttribute.accept(clazz, method, optionalAttributeVisitor); 209 public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute [all...] |
/external/proguard/src/proguard/optimize/info/ |
ParameterUsageMarker.java | 107 // Is it a native method? 114 // Is it an abstract method? 121 // Is it a non-native, concrete method? 124 // Is the method not static, but synchronized, or can it have 158 // Can the method have other implementations? 161 // All implementations must keep all parameters of this method, 173 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 176 partialEvaluator.visitCodeAttribute(clazz, method, codeAttribute); 179 codeAttribute.instructionsAccept(clazz, method, this) [all...] |
SuperInvocationMarker.java | 47 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) 60 setInvokesSuperMethods(method); 78 private static void setInvokesSuperMethods(Method method) 80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); 88 public static boolean invokesSuperMethods(Method method) [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
ReachableCodeMarker.java | 82 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 101 markCode(clazz, method, codeAttribute, 0); 108 codeAttribute.exceptionsAccept(clazz, method, this); 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 [all...] |
VariableShrinker.java | 79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 81 if ((method.getAccessFlags() & ClassConstants.INTERNAL_ACC_ABSTRACT) == 0) 85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 86 method.getAccessFlags()); 93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute); 117 // Visit the method, if required. 120 method.accept(clazz, extraVariableMemberVisitor) [all...] |
/dalvik/vm/oo/ |
Object.h | 33 struct Method; 52 const Method* method, struct Thread* self); 58 ACC_MIRANDA = 0x8000, // method (internal to VM) 105 * Use the top 16 bits of the access flags field for other method flags. 109 METHOD_ISWRITABLE = (1<<31), // the method's code is writable 113 * Get/set method flags. 115 #define SET_METHOD_FLAG(method, flag) \ 116 do { (method)->accessFlags |= (flag); } while (0) 118 #define CLEAR_METHOD_FLAG(method, flag) [all...] |
/external/junit/src/org/junit/internal/runners/ |
JUnit4ClassRunner.java | 5 import java.lang.reflect.Method; 31 private final List<Method> fTestMethods; 40 protected List<Method> getTestMethods() { 60 for (Method method : fTestMethods) 61 invokeTestMethod(method, notifier); 67 List<Method> testMethods= fTestMethods; 68 for (Method method : testMethods) 69 spec.addChild(methodDescription(method)); 126 Method method= iter.next(); local [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/d/ |
T_rsub_int_1.d | 20 .method public <init>()V 25 .end method 27 .method public run(I)I 32 .end method 34 .method public run1(I)I 39 .end method 41 .method public run2(I)I 46 .end method 48 .method public run3(I)I 53 .end method [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/ |
T_rsub_int_lit8_1.d | 20 .method public <init>()V 25 .end method 27 .method public run(I)I 32 .end method 34 .method public run1(I)I 39 .end method 41 .method public run2(I)I 46 .end method 48 .method public run3(I)I 53 .end method [all...] |
/dalvik/vm/mterp/x86-atom/ |
OP_INVOKE_SUPER.S | 19 * Code: Call super method. 24 * method (as opposed to the one with the same method_id in the 51 FETCH 1, %edx # %edx<- method index 54 movl (%ecx, %edx, 4), %ecx # %ecx<- resolved base method 61 movl offGlue_method(%eax), %eax # %eax<- glue->method 62 movl offMethod_clazz(%eax), %eax # %eax<- glue->method->clazz 69 * %ecx = resolved base method 70 * %eax = method->clazz 74 movl offClassObject_super(%eax), %edx # %edx<- glue->method->clazz->super 78 jnc .L${opcode}_nsm # handle method not presen [all...] |
OP_INVOKE_SUPER_QUICK.S | 28 movl offGlue_method(%ecx), %eax # %eax<- glue->method 32 FETCH 1, %ecx # %ecx<- method index 33 movl offMethod_clazz(%eax), %eax # %eax<- glue->method->clazz 34 movl offClassObject_super(%eax), %eax # %eax<- glue->method->clazz->super 36 movl offClassObject_vtable(%eax), %eax # %edx<- glue->method->clazz->super->vtable 40 jmp common_invokeMethod${routine} # invoke method common code
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
CSeq.java | 59 * method field 61 protected String method; field in class:CSeq 71 * Constructor given the sequence number and method. 74 * @param method is the method string. 76 public CSeq(long seqno, String method) { 79 this.method = SIPRequest.getCannonicalName(method); 116 return buffer.append(seqno).append(SP).append(method.toUpperCase()); 120 * Get the method [all...] |
RequestLine.java | 53 /** method field. 55 protected String method; field in class:RequestLine 77 if (method != null) { 78 buffer.append(method); 97 /** Constructor given the request URI and the method. 99 public RequestLine(GenericURI requestURI, String method) { 101 this.method = method; 109 return method; 129 public void setMethod(String method) { [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
ApiClass.java | 71 public void addMethod(ApiMethod method) { 72 mApiMethods.add(method); 76 for (ApiMethod method : mApiMethods) { 77 if (name.equals(method.getName()) 78 && parameterTypes.equals(method.getParameterTypes()) 79 && returnType.equals(method.getReturnType())) { 80 return method; 97 for (ApiMethod method : mApiMethods) { 98 if (method.isCovered()) {
|
/external/proguard/src/proguard/optimize/ |
ParameterShrinker.java | 77 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 80 int oldParameterSize = ParameterUsageMarker.getParameterSize(method); 84 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz), 85 method.getAccessFlags()); 94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)); 109 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex)) 125 // Visit the method, if required. 128 method.accept(clazz, extraVariableMemberVisitor) [all...] |
/external/dbus/dbus/ |
dbus-server-win.c | 54 const char *method; local 58 method = dbus_address_entry_get_method (entry); 60 if (strcmp (method, "nonce-tcp") == 0)
|
/external/easymock/src/org/easymock/internal/ |
LegacyMatcherProvider.java | 20 import java.lang.reflect.Method;
36 private transient Map<Method, ArgumentsMatcher> matchers = new HashMap<Method, ArgumentsMatcher>();
38 public ArgumentsMatcher getMatcher(Method method) {
39 if (!matchers.containsKey(method)) {
43 matchers.put(method, defaultMatcher);
45 return matchers.get(method);
58 public void setMatcher(Method method, ArgumentsMatcher matcher) { 81 Method method = entry.getKey().getMethod(); local [all...] |
/external/openssl/crypto/x509v3/ |
v3_enum.c | 87 char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, 93 for(enam = method->usr_data; enam->lname; enam++) { 96 return i2s_ASN1_ENUMERATED(method, e);
|