Searched refs:method (Results 126 - 150 of 1813) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/
H A DCodeAttribute.java99 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
101 attributeVisitor.visitCodeAttribute(clazz, method, this);
108 public void instructionsAccept(Clazz clazz, Method method, InstructionVisitor instructionVisitor) argument
110 instructionsAccept(clazz, method, 0, u4codeLength, instructionVisitor);
118 public void instructionAccept(Clazz clazz, Method method, int offset, InstructionVisitor instructionVisitor) argument
121 instruction.accept(clazz, method, this, offset, instructionVisitor);
129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor) argument
138 instruction.accept(clazz, method, this, offset, instructionVisitor);
147 public void exceptionsAccept(Clazz clazz, Method method, ExceptionInfoVisitor exceptionInfoVisitor) argument
153 exceptionInfoVisitor.visitExceptionInfo(clazz, method, thi
162 exceptionsAccept(Clazz clazz, Method method, int offset, ExceptionInfoVisitor exceptionInfoVisitor) argument
179 exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
195 attributesAccept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
[all...]
H A DLocalVariableTableAttribute.java61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor) argument
76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
H A DLocalVariableTypeTableAttribute.java61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor) argument
76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DStackMapAttribute.java71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this);
80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) argument
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DExceptionInfoVisitor.java36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo); argument
H A DLineNumberInfoVisitor.java37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo); argument
H A DLocalVariableInfoVisitor.java37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo); argument
H A DLocalVariableTypeInfoVisitor.java37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo); argument
H A DAllExceptionInfoVisitor.java51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DBlockingRpcChannel.java42 * Call the given method of the remote service and blocks until it returns.
47 Descriptors.MethodDescriptor method,
46 callBlockingMethod( Descriptors.MethodDescriptor method, RpcController controller, Message request, Message responsePrototype) argument
H A DRpcChannel.java57 * 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, argument
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dvp8_boolcoder_test.cc59 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
111 << " method: " << method; local
[all...]
/external/libvpx/libvpx/test/
H A Dvp8_boolcoder_test.cc59 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
115 << " method: " << method; local
[all...]
/external/okhttp/android/main/java/com/squareup/okhttp/internal/
H A DOptionalMethod.java25 * Duck-typing for methods: Represents a method that may or may not be present on an object.
27 * @param <T> the type of the object the method might be on, typically an interface or base class
31 /** The return type of the method. null means "don't care". */
39 * Creates an optional method.
42 * @param methodName the name of the method
43 * @param methodParams the method parameter types
52 * Returns true if the method exists on the supplied {@code target}.
59 * Invokes the method on {@code target} with {@code args}. If the method does not exist or is not
79 * Invokes the method o
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
H A DReflectionMethod.java50 private final java.lang.reflect.Method method; field in class:ReflectionMethod
52 public ReflectionMethod(java.lang.reflect.Method method) { argument
53 this.method = method;
57 final java.lang.reflect.Method method = this.method;
59 private final Class[] parameters = method.getParameterTypes();
84 return method.getModifiers();
96 return ReflectionUtils.javaToDexName(method.getDeclaringClass().getName());
100 return method
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_text.properties21 # Specify defaults when method="text".
25 method=text
33 # <xsl:output method="html" encoding="UTF-8"
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevtools_event_listener.cc16 const std::string& method,
23 const std::string& method) {
15 OnEvent(DevToolsClient* client, const std::string& method, const base::DictionaryValue& params) argument
21 OnCommandSuccess( DevToolsClient* client, const std::string& method) argument
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIMethodCollection.java32 * @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); argument
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 offse
88 set(int offset, Method_info method) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DRuntimeInvisibleParameterAnnotationsAttribute.java58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
60 attributeVisitor.visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, this);
H A DRuntimeVisibleParameterAnnotationsAttribute.java58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
60 attributeVisitor.visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationVisitor.java38 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); argument
39 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); argument
/external/proguard/src/proguard/classfile/editor/
H A DBridgeMethodFixer.java37 * versions of JDK 1.6, complain if they can't find the method with the same
72 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
74 // Go over the instructions of the bridge method.
75 codeAttribute.instructionsAccept(clazz, method, this);
81 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
84 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
92 // Get the name of the bridged method.
96 if (!method.getName(clazz).equals(bridgedMethodName))
100 System.out.println("BridgeMethodFixer: ["+clazz.getName()+"."+method.getName(clazz)+method
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
H A DRobolectricTestRunnerInterface.java11 void internalBeforeTest(Method method); argument
13 void internalAfterTest(Method method); argument
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g2 * 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/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dbase_screen_handler.h93 // This method is called when page is ready. It propagates to inherited class
94 // via virtual Initialize() method (see below).
105 // All subclasses should implement this method to provide localized values.
114 void CallJS(const std::string& method);
117 void CallJS(const std::string& method, const A1& arg1) { argument
118 web_ui()->CallJavascriptFunction(FullMethodPath(method), MakeValue(arg1));
122 void CallJS(const std::string& method, const A1& arg1, const A2& arg2) { argument
123 web_ui()->CallJavascriptFunction(FullMethodPath(method), MakeValue(arg1),
128 void CallJS(const std::string& method, argument
132 web_ui()->CallJavascriptFunction(FullMethodPath(method),
139 CallJS(const std::string& method, const A1& arg1, const A2& arg2, const A3& arg3, const A4& arg4) argument
204 AddPrefixedCallback(const std::string& unprefixed_name, const Method& method) argument
206 AddCallback(FullMethodPath(unprefixed_name), method); local
[all...]

Completed in 388 milliseconds

1234567891011>>