Searched defs:method (Results 201 - 225 of 743) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/optimize/info/
H A DInstanceofClassMarker.java46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DInstantiationClassMarker.java46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
49 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DNoSideEffectMethodMarker.java66 private static void markNoSideEffects(Method method) argument
68 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
75 MethodLinker.lastMember(method).setVisitorInfo(KEPT_BUT_NO_SIDE_EFFECTS);
80 public static boolean hasNoSideEffects(Method method) argument
82 if (MethodLinker.lastVisitorAccepter(method).getVisitorInfo() == KEPT_BUT_NO_SIDE_EFFECTS)
87 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DVariableUsageMarker.java60 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
76 codeAttribute.instructionsAccept(clazz, method, this);
82 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
85 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableCodeRemover.java79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
83 // method.getName(clazz).equals("abc");
86 // Catch any unexpected exceptions from the actual visiting method.
90 visitCodeAttribute0(clazz, method, codeAttribute);
96 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
104 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
108 System.out.println("UnreachableCodeRemover: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
111 reachableCodeMarker.visitCodeAttribute(clazz, method, codeAttribut
123 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
[all...]
H A DUnreachableExceptionRemover.java69 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
72 codeAttribute.exceptionsAccept(clazz, method, this);
83 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
86 method,
96 extraExceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
108 Method method,
107 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
/external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DSubstitutableLoggerTest.java75 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { argument
76 invokedMethodSignatures.add(getMethodSignature(method));
77 if (method.getName().startsWith("is")) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
H A DMethodRewriter.java57 @Nonnull protected Method method; field in class:MethodRewriter.RewrittenMethod
59 public RewrittenMethod(@Nonnull Method method) { argument
60 this.method = method;
64 return rewriters.getMethodReferenceRewriter().rewrite(method).getDefiningClass();
68 return rewriters.getMethodReferenceRewriter().rewrite(method).getName();
72 return rewriters.getMethodReferenceRewriter().rewrite(method).getParameterTypes();
77 // parameter names and annotations. If a method rewrite involves changing parameters, it needs
80 return RewriterUtils.rewriteList(rewriters.getMethodParameterRewriter(), method.getParameters());
84 return rewriters.getMethodReferenceRewriter().rewrite(method)
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DMethodPool.java52 public void intern(@Nonnull MethodReference method) { argument
53 Integer prev = internedItems.put(method, 0);
55 typePool.intern(method.getDefiningClass());
56 protoPool.intern(method);
57 stringPool.intern(method.getName());
H A DPoolMethod.java48 @Nonnull private final Method method; field in class:PoolMethod
53 @Override public PoolMethod apply(Method method) {
54 return new PoolMethod(method);
58 PoolMethod(@Nonnull Method method) { argument
59 this.method = method;
63 return method.getDefiningClass();
67 return method.getName();
71 return method.getParameterTypes();
75 return method
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.h14 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) argument
85 /* EAP peer method registration calls for statically linked in methods */
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_methods.h14 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) argument
85 /* EAP peer method registration calls for statically linked in methods */
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_methods.h14 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) argument
85 /* EAP peer method registration calls for statically linked in methods */
/external/apache-http/src/org/apache/http/impl/client/
H A DRequestWrapper.java70 private String method; field in class:RequestWrapper
84 this.method = ((HttpUriRequest) request).getMethod();
94 this.method = requestLine.getMethod();
107 return this.method;
110 public void setMethod(final String method) { argument
111 if (method == null) {
114 this.method = method;
139 String method = getMethod();
148 return new BasicRequestLine(method, uritex
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java329 String method = buffer.substringTrimmed(i, blank);
351 return createRequestLine(method, uri, ver);
363 * @param method the request method
369 protected RequestLine createRequestLine(final String method, argument
372 return new BasicRequestLine(method, uri, ver);
/external/boringssl/src/crypto/engine/
H A Dengine.c51 /* set_method takes a pointer to a method and its given size and sets
53 * future to support making a copy of the method so that a stable ABI for
56 static int set_method(void **out_member, const void *method, size_t method_size, argument
58 const struct openssl_method_common_st *common = method;
63 *out_member = (void*) method;
67 int ENGINE_set_DH_method(ENGINE *engine, const DH_METHOD *method, argument
69 return set_method((void **)&engine->dh_method, method, method_size,
77 int ENGINE_set_DSA_method(ENGINE *engine, const DSA_METHOD *method, argument
79 return set_method((void **)&engine->dsa_method, method, method_size,
87 int ENGINE_set_RSA_method(ENGINE *engine, const RSA_METHOD *method, argument
97 ENGINE_set_ECDSA_method(ENGINE *engine, const ECDSA_METHOD *method, size_t method_size) argument
112 struct openssl_method_common_st *method = method_in; local
[all...]
/external/boringssl/src/crypto/x509v3/
H A Dv3_pci.c47 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *ext,
49 static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method,
62 static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *pci, argument
248 static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method, argument
H A Dv3_prn.c100 const X509V3_EXT_METHOD *method; local
104 if(!(method = X509V3_EXT_get(ext)))
107 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
108 else ext_str = method->d2i(NULL, &p, ext->value->length);
112 if(method->i2s) {
113 if(!(value = method->i2s(method, ext_str))) {
118 } else if(method->i2v) {
119 if(!(nval = method
[all...]
/external/clang/test/CodeGenCXX/
H A D2007-01-06-PtrMethodInit.cpp56 GenericHandler method; member in struct:EventDispatchData
H A Dmangle-ms-template-callback.cpp58 void method() {} function in class:Z
H A Dtemplate-linkage.cpp62 mptr method = &Outer::Get<local>; local
/external/clang/test/Misc/
H A Ddiag-aka-types.cpp35 static void method(struct data *) {} function in struct:ns::str
46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMethod.java31 * 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, argument
58 if (method
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java30 /** {@code >= 0;} the register count for the method */
36 * max size for the method
53 * @param method {@code non-null;} the method being represented by this instance
55 public LocalVariableInfo(RopMethod method) { argument
56 if (method == null) {
57 throw new NullPointerException("method == null");
60 BasicBlockList blocks = method.getBlocks();
183 * method, since the spec that is stored here should always have a
239 * Helper method, t
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableInfo.java32 /** {@code >= 0;} the register count for the method */
38 * max size for the method
55 * @param method {@code non-null;} the method being represented by this instance
57 public LocalVariableInfo(SsaMethod method) { argument
58 if (method == null) {
59 throw new NullPointerException("method == null");
62 List<SsaBasicBlock> blocks = method.getBlocks();
64 this.regCount = method.getRegCount();
180 * method, sinc
[all...]

Completed in 1549 milliseconds

1234567891011>>