Searched refs:method (Results 201 - 225 of 1813) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableExtractor.java29 * a method. Stolen and retrofitted from
36 /** {@code non-null;} method being extracted from */
37 private final SsaMethod method; field in class:LocalVariableExtractor
39 /** {@code non-null;} block list for the method */
49 * Extracts out all the local variable information from the given method.
51 * @param method {@code non-null;} the method to extract from
54 public static LocalVariableInfo extract(SsaMethod method) { argument
55 LocalVariableExtractor lve = new LocalVariableExtractor(method);
60 * Constructs an instance. This method i
64 LocalVariableExtractor(SsaMethod method) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DFixedValueGenerator.java32 MethodInfo method = (MethodInfo)it.next();
33 CodeEmitter e = context.beginMethod(ce, method);
34 context.emitCallback(e, context.getIndex(method));
H A DCallbackHelper.java38 Method method = (Method)methods.get(i);
39 Object callback = getCallback(method);
52 methodMap.put(method, index);
57 abstract protected Object getCallback(Method method); argument
81 public int accept(Method method, List<Method> allMethods) argument
83 return ((Integer)methodMap.get(method)).intValue();
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DVerificationType.java59 * Accepts the given visitor in the context of a method's code, either on
62 public abstract void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, VerificationTypeVisitor verificationTypeVisitor); argument
66 * Accepts the given visitor in the context of a stack in a method's code .
68 public abstract void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor); argument
72 * Accepts the given visitor in the context of a variable in a method's code.
74 public abstract void variablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int variableIndex, VerificationTypeVisitor verificationTypeVisitor); argument
/external/proguard/src/proguard/classfile/editor/
H A DMethodInvocationFixer.java60 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
66 codeAttribute.instructionsAccept(clazz, method, this);
69 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
75 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
78 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
82 // Get information on the called class and method, if present.
87 // Did we find the called class and method?
94 // Is the method static?
109 debug(clazz, method, offset, constantInstruction, replacementInstruction);
114 // Is the method privat
225 debug(Clazz clazz, Method method, int offset, ConstantInstruction constantInstruction, Instruction replacementInstruction) argument
[all...]
/external/protobuf/python/google/protobuf/
H A Dservice_reflection.py142 # instance to the method that does the real CallMethod work.
153 for method in self.descriptor.methods:
154 setattr(cls, method.name, self._GenerateNonImplementedMethod(method))
158 """Calls the method described by a given method descriptor.
161 srvc: Instance of the service for which this method is called.
162 method_descriptor: Descriptor that represent the method to call.
163 rpc_controller: RPC controller to use for this method's execution.
165 callback: A callback to invoke after the method ha
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DProtoPool.java60 public void intern(@Nonnull MethodReference method) { argument
61 // We can't use method directly, because it is likely a full MethodReference. We use a wrapper that computes
63 Key key = new Key(method);
67 typePool.intern(method.getReturnType());
68 typeListPool.intern(method.getParameterTypes());
85 @Nonnull private final MethodReference method; field in class:ProtoPool.Key
87 public Key(@Nonnull MethodReference method) { argument
88 this.method = method;
91 @Nonnull public String getReturnType() { return method
[all...]
/external/chromium_org/content/browser/devtools/
H A Ddevtools_protocol.cc16 const char kMethodParam[] = "method";
41 DevToolsProtocol::Message::Message(const std::string& method, argument
43 : method_(method),
45 size_t pos = method.find(".");
47 domain_ = method.substr(0, pos);
84 return new Response(id_, kErrorNoSuchMethod, "No such method");
101 const std::string& method,
103 : Message(method, params),
150 DevToolsProtocol::Notification::Notification(const std::string& method, argument
152 : Message(method, param
100 Command(int id, const std::string& method, base::DictionaryValue* params) argument
194 SendNotification( const std::string& method, base::DictionaryValue* params) argument
212 ParseMethod(base::DictionaryValue* command, std::string* method) argument
239 std::string method; local
256 CreateCommand( int id, const std::string& method, base::DictionaryValue* params) argument
304 CreateNotification( const std::string& method, base::DictionaryValue* params) argument
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DMethodCollection.java44 final Method_info method = (Method_info) m_methods.get (m);
46 if (method.getName (cls).equals (name))
108 public int add (final Method_info method) argument
111 m_methods.add (method);
116 public Method_info set (final int offset, final Method_info method) argument
118 return (Method_info) m_methods.set (offset, method);
139 private List/* Method_info */ m_methods; // method collection
/external/chromium_org/chrome/browser/resources/cryptotoken/
H A Dtextfetcher.js20 * @param {string?} opt_method The HTTP method to use (default GET)
36 * @param {string?} opt_method The HTTP method to use (default GET)
44 var method = opt_method || 'GET';
45 xhr.open(method, url, true);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevtools_event_listener.h28 const std::string& method,
33 const std::string& method);
H A Dheap_snapshot_taker_unittest.cc28 DummyDevToolsClient(const std::string& method, bool error_after_events) argument
29 : method_(method),
51 virtual Status SendCommand(const std::string& method,
54 disabled_ = method == "Debugger.disable";
55 if (method == method_ && !error_after_events_)
58 if (method == "HeapProfiler.takeHeapSnapshot") {
64 if (method == method_ && error_after_events_)
66 return StubDevToolsClient::SendCommand(method, params);
70 std::string method_; // Throw error on command with this method.
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTextPathElement.idl38 readonly attribute SVGAnimatedEnumeration method;
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapScaler.h25 // They are translated into an algorithm-specific method that depends
38 // Note that the underlying resizing method may be determined
84 ResizeMethod method,
89 ResizeMethod method,
/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 DMethodIdItem.java22 * Representation of a method reference inside a Dalvik file.
28 * @param method {@code non-null;} the constant for the method
30 public MethodIdItem(CstBaseMethodRef method) { argument
31 super(method);
50 * Gets the method constant.
/external/mockito/src/org/mockito/internal/creation/
H A DMethodInterceptorFilter.java44 public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) argument
46 if (objectMethodsGuru.isEqualsMethod(method)) {
48 } else if (objectMethodsGuru.isHashCodeMethod(method)) {
50 } else if (acrossJVMSerializationFeature.isWriteReplace(method)) {
57 MockitoMethod mockitoMethod = createMockitoMethod(method);
78 public MockitoMethod createMockitoMethod(Method method) { argument
80 return new SerializableMethod(method);
82 return new DelegatingMethod(method);
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DForwardsInvocations.java29 Method method = invocation.getMethod() ;
31 return method.invoke(delegatedObject, invocation.getArguments());
/external/nanohttpd/samples/src/main/java/fi/iki/elonen/
H A DHelloServer.java14 Method method = session.getMethod();
16 System.out.println(method + " '" + uri + "' ");
22 "<form action='?' method='get'>\n" +
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpResponseMessage.java31 protected HttpResponseMessage(String method, URL url) { argument
32 super(method, url);
/external/openssl/crypto/x509v3/
H A Dv3_prn.c113 const X509V3_EXT_METHOD *method; local
117 if(!(method = X509V3_EXT_get(ext)))
120 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
121 else ext_str = method->d2i(NULL, &p, ext->value->length);
125 if(method->i2s) {
126 if(!(value = method->i2s(method, ext_str))) {
146 } else if(method->i2v) {
147 if(!(nval = method
[all...]
/external/proguard/src/proguard/classfile/attribute/
H A DDeprecatedAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitDeprecatedAttribute(clazz, method, this);
H A DExceptionsAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitExceptionsAttribute(clazz, method, this);
H A DSyntheticAttribute.java62 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
64 attributeVisitor.visitSyntheticAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationDefaultAttribute.java69 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
71 attributeVisitor.visitAnnotationDefaultAttribute(clazz, method, this);

Completed in 375 milliseconds

1234567891011>>