/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
callback_interface.h | 26 {% for method in methods %} 27 virtual {{method.cpp_type}} {{method.name}}({{method.argument_declarations | join(', ')}}) OVERRIDE;
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
BlockingRpcChannel.java | 42 * Call the given method of the remote service and blocks until it returns. 47 Descriptors.MethodDescriptor method,
|
RpcChannel.java | 57 * Call the given method of the remote service. This method is similar to 61 * {@code request.getDescriptor() == method.getInputType()}. 64 * {@code getDescriptor() == method.getOutputType()}). 66 void callMethod(Descriptors.MethodDescriptor method,
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
MethodWrapper.java | 18 import java.lang.reflect.Method; 33 public static Object create(Method method) { 34 return KEY_FACTORY.newInstance(method.getName(), 35 ReflectUtils.getNames(method.getParameterTypes()), 36 method.getReturnType().getName()); 42 set.add(create((Method)it.next()));
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
InvocationHandler.java | 18 import java.lang.reflect.Method; 31 * @see java.lang.reflect.InvocationHandler#invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object) 33 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
|
MethodInterceptor.java | 27 * All generated proxied methods call this method instead of the original method. 28 * The original method may either be invoked by normal reflection using the Method object, 31 * @param method intercepted Method 33 * @param proxy used to invoke super (non-intercepted method); may be called 35 * @throws Throwable any exception may be thrown; if so, super method will not be invoked 36 * @return any value compatible with the signature of the proxied method. Method returning void will ignore this value [all...] |
NoOpGenerator.java | 30 MethodInfo method = (MethodInfo)it.next(); local 31 if (TypeUtils.isProtected(context.getOriginalModifiers(method)) && 32 TypeUtils.isPublic(method.getModifiers())) { 33 CodeEmitter e = EmitUtils.begin_method(ce, method);
|
/external/nist-sip/java/javax/sip/header/ |
AllowHeader.java | 9 void setMethod(String method) throws ParseException;
|
/external/proguard/src/proguard/classfile/attribute/ |
CodeAttribute.java | 99 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) 101 attributeVisitor.visitCodeAttribute(clazz, method, this); 108 public void instructionsAccept(Clazz clazz, Method method, InstructionVisitor instructionVisitor) 110 instructionsAccept(clazz, method, 0, u4codeLength, instructionVisitor); 118 public void instructionAccept(Clazz clazz, Method method, int offset, InstructionVisitor instructionVisitor) 121 instruction.accept(clazz, method, this, offset, instructionVisitor); 129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor [all...] |
LocalVariableTableAttribute.java | 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) 63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this); 70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor) 76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
|
LocalVariableTypeTableAttribute.java | 61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) 63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this); 70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor) 76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
StackMapAttribute.java | 71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) 73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this); 80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) 88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
ExceptionInfoVisitor.java | 36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo);
|
LineNumberInfoVisitor.java | 37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo);
|
LocalVariableInfoVisitor.java | 37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo);
|
LocalVariableTypeInfoVisitor.java | 37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo);
|
StackSizeComputer.java | 99 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 103 // method.getName(clazz).equals("abc"); 106 // Catch any unexpected exceptions from the actual visiting method. 110 visitCodeAttribute0(clazz, method, codeAttribute); 116 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 121 method.accept(clazz, new ClassPrinter()); 129 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
BlockingRpcChannel.java | 42 * Call the given method of the remote service and blocks until it returns. 47 Descriptors.MethodDescriptor method,
|
RpcChannel.java | 57 * Call the given method of the remote service. This method is similar to 61 * {@code request.getDescriptor() == method.getInputType()}. 64 * {@code getDescriptor() == method.getOutputType()}). 66 void callMethod(Descriptors.MethodDescriptor method,
|
/frameworks/base/core/java/android/hardware/camera2/dispatch/ |
Dispatchable.java | 18 import java.lang.reflect.Method; 21 * Dynamically dispatch a method and its argument to some object. 23 * <p>This can be used to intercept method calls and do work around them, redirect work, 28 * Dispatch the method and arguments to this object. 29 * @param method a method defined in class {@code T} 30 * @param args arguments corresponding to said {@code method} 31 * @return the object returned when invoking {@code method} 32 * @throws Throwable any exception that might have been raised while invoking the method 34 public Object dispatch(Method method, Object[] args) throws Throwable [all...] |
InvokeDispatcher.java | 22 import java.lang.reflect.Method; 37 public Object dispatch(Method method, Object[] args) { 39 return method.invoke(mTarget, args); 46 Log.wtf(TAG, "IllegalAccessException while invoking " + method, e); 49 Log.wtf(TAG, "IllegalArgumentException while invoking " + method, e);
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/ |
v8_interface.py | 249 methods = [v8_methods.generate_method(interface, method) 250 for method in interface.operations 251 if method.name] # Skip anonymous special operations (methods) 258 for method in methods: 259 # Skip all but one method in each set of overloaded methods. 260 if 'overload_index' in method and 'overloads' not in method: 263 if 'overloads' in method: 264 overloads = method['overloads'] 269 per_context_enabled_function = method['per_context_enabled_function' [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 66 (method == 0) ? 0 : (method == 1) ? 255 : 67 (method == 2) ? 128 : 68 (method == 3) ? rnd.Rand8() : 69 (method == 4) ? (parity ? 0 : 255) : 71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : 72 (method == 6) 111 << " method: " << method; local [all...] |
/external/libvpx/libvpx/test/ |
vp8_boolcoder_test.cc | 59 for (int method = 0; method <= 7; ++method) { // we generate various proba 66 (method == 0) ? 0 : (method == 1) ? 255 : 67 (method == 2) ? 128 : 68 (method == 3) ? rnd.Rand8() : 69 (method == 4) ? (parity ? 0 : 255) : 71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : 72 (method == 6) 115 << " method: " << method; local [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
ReflectionMethod.java | 39 import org.jf.dexlib2.iface.Method; 49 public class ReflectionMethod extends BaseMethodReference implements Method { 50 private final java.lang.reflect.Method method; field in class:ReflectionMethod 52 public ReflectionMethod(java.lang.reflect.Method method) { 53 this.method = method; 57 final java.lang.reflect.Method method = this.method local [all...] |