Searched defs:method (Results 426 - 450 of 1189) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java64 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
68 // method.getName(clazz).equals("abc");
72 // Catch any unexpected exceptions from the actual visiting method.
76 visitCodeAttribute0(clazz, method, codeAttribute);
82 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
87 method.accept(clazz, new ClassPrinter());
95 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
97 branchTargetFinder.visitCodeAttribute(clazz, method, codeAttribute);
107 System.out.println("SubroutineInliner: processing ["+clazz.getName()+"."+method
166 inlineSubroutine(Clazz clazz, Method method, CodeAttribute codeAttribute, int subroutineInvocationOffset, int subroutineStart) argument
228 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
249 visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
299 visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
346 visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
[all...]
/external/proguard/src/proguard/shrink/
H A DLocalVariableTypeUsageMarker.java71 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute) argument
75 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
87 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute) argument
91 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
105 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo) argument
126 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo) argument
H A DUsagePrinter.java157 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
159 codeAttribute.attributesAccept(clazz, method, this);
163 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute) argument
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_service.cc93 "void CallMethod(const ::google::protobuf::MethodDescriptor* method,\n"
99 " const ::google::protobuf::MethodDescriptor* method) const;\n"
101 " const ::google::protobuf::MethodDescriptor* method) const;\n");
145 const MethodDescriptor* method = descriptor_->method(i); local
147 sub_vars["name"] = method->name();
148 sub_vars["input_type"] = ClassName(method->input_type(), true);
149 sub_vars["output_type"] = ClassName(method->output_type(), true);
214 const MethodDescriptor* method = descriptor_->method( local
245 const MethodDescriptor* method = descriptor_->method(i); local
288 const MethodDescriptor* method = descriptor_->method(i); local
312 const MethodDescriptor* method = descriptor_->method(i); local
[all...]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DCustomRobolectricTestRunnerTest.java62 @Override public void beforeTest(Method method) { argument
63 testMethod = method;
66 @Override public void afterTest(Method method) { argument
/external/skia/bench/
H A DBitmapScaleBench.cpp124 PixmapScalerBench(SkBitmapScaler::ResizeMethod method, const char suffix[]) : fMethod(method) { argument
/external/skia/tools/skiaserve/
H A Dskiaserve.cpp51 int invoke(Request* request, MHD_Connection* connection, const char* url, const char* method, argument
54 if (fHandlers[i]->canHandle(method, url)) {
55 return fHandlers[i]->handle(request, connection, url, method, upload_data,
69 const char* url, const char* method, const char* version,
72 SkDebugf("New %s request for %s using version %s\n", method, url, version);
75 int result = kUrlManager.invoke(request, connection, url, method, upload_data,
78 fprintf(stderr, "Invalid method and / or url: %s %s\n", method, url);
68 answer_to_connection(void* cls, struct MHD_Connection* connection, const char* url, const char* method, const char* version, const char* upload_data, size_t* upload_data_size, void** con_cls) argument
/external/skia/tools/skiaserve/urlhandlers/
H A DBreakHandler.cpp16 bool BreakHandler::canHandle(const char* method, const char* url) { argument
18 return 0 == strcmp(method, MHD_HTTP_METHOD_GET) &&
36 const char* url, const char* method,
35 handle(Request* request, MHD_Connection* connection, const char* url, const char* method, const char* upload_data, size_t* upload_data_size) argument
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DLogTransformer.java48 * log statements to each method to allow logging entry/exit.
83 * Should each method log entry (with parameters) and exit (with parameters
228 * name of this class as an argument, and each method then gets processed with
286 * process a single method - this means add entry/exit logging if requested.
289 * @param method
290 * method to work on
294 private void doMethod(CtBehavior method) throws NotFoundException, CannotCompileException { argument
296 String signature = JavassistHelper.getSignature(method);
297 String returnValue = JavassistHelper.returnValue(method);
304 method
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DPrimitiveProto.java73 @Override public int findMethodIndexInVtable(@Nonnull MethodReference method) { argument
H A DUnknownClassProto.java83 @Override public int findMethodIndexInVtable(@Nonnull MethodReference method) { argument
84 return classPath.getClass("Ljava/lang/Object;").findMethodIndexInVtable(method);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethod.java91 public static ImmutableMethod of(Method method) { argument
92 if (method instanceof ImmutableMethod) {
93 return (ImmutableMethod)method;
96 method.getDefiningClass(),
97 method.getName(),
98 method.getParameters(),
99 method.getReturnType(),
100 method.getAccessFlags(),
101 method.getAnnotations(),
102 method
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DMethodUtil.java60 public static boolean isDirect(@Nonnull Method method) { argument
61 return (method.getAccessFlags() & directMask) != 0;
64 public static boolean isStatic(@Nonnull Method method) { argument
65 return AccessFlags.STATIC.isSet(method.getAccessFlags());
72 public static boolean isPackagePrivate(@Nonnull Method method) { argument
73 return (method.getAccessFlags() & (AccessFlags.PRIVATE.getValue() |
78 public static int getParameterRegisterCount(@Nonnull Method method) { argument
79 return getParameterRegisterCount(method, MethodUtil.isStatic(method));
/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/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
H A DLazyValue.java53 private final SmaliMethod method; field in class:LazyValue
59 public LazyValue(SmaliMethod method, Project project, int registerNumber, String type) { argument
60 this.method = method;
66 public static LazyValue create(@Nonnull SmaliMethod method, @Nonnull Project project, int registerNumber, argument
69 return new LazyByteValue(method, project, registerNumber, type);
71 return new LazyShortValue(method, project, registerNumber, type);
73 return new LazyLongValue(method, project, registerNumber, type);
75 return new LazyIntegerValue(method, project, registerNumber, type);
77 return new LazyFloatValue(method, projec
[all...]
/external/testng/src/main/java/org/testng/collections/
H A DMultiMap.java15 public boolean put(K key, V method) { argument
23 return l.add(method) && setExists;
/external/testng/src/main/java/org/testng/internal/
H A DConfigurationGroupMethods.java35 /**A map that returns the last method belonging to the given group */
56 * @return true if the passed method is the last to run for the group.
57 * This method is used to figure out when is the right time to invoke
60 public synchronized boolean isLastMethodForGroup(String group, ITestNGMethod method) { argument
63 int invocationCount= method.getCurrentInvocationCount();
64 if(invocationCount < (method.getInvocationCount() * method.getParameterInvocationCount())) {
79 methodsInGroup.remove(method);
103 public synchronized void removeBeforeMethod(String group, ITestNGMethod method) { argument
106 Object success= methods.remove(method);
[all...]
H A DInvokedMethod.java18 ITestNGMethod method,
23 m_testMethod = method;
17 InvokedMethod(Object instance, ITestNGMethod method, Object[] parameters, long date, ITestResult testResult) argument
H A DMethodInvocationHelper.java46 // method's class
48 // for some reason, we can't call this method on this class
52 // not static, so grab a method with the same name and signature in this case
57 // ignore, the method may be private
71 throw new RuntimeException("Can't invoke method " + thisMethod
74 throw new RuntimeException("Can't invoke method " + thisMethod
90 ITestNGMethod method, ITestContext testContext, Object fedInstance,
93 final ConstructorOrMethod com = method.getConstructorOrMethod();
115 lParameters.add(method);
151 method
89 invokeDataProvider(Object instance, Method dataProvider, ITestNGMethod method, ITestContext testContext, Object fedInstance, IAnnotationFinder annotationFinder) argument
[all...]
/external/testng/src/test/java/test/listeners/
H A DSuiteListener2.java25 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) { argument
30 public void afterInvocation(IInvokedMethod method, ITestResult testResult) { argument
/external/v8/test/unittests/runtime/
H A Druntime-interpreter-unittest.cc24 bool TestOperatorWithObjects(RuntimeMethod method, Handle<Object> lhs,
26 bool TestOperator(RuntimeMethod method, int32_t lhs, int32_t rhs,
28 bool TestOperator(RuntimeMethod method, double lhs, double rhs,
30 bool TestOperator(RuntimeMethod method, const char* lhs, const char* rhs,
35 bool RuntimeInterpreterTest::TestOperatorWithObjects(RuntimeMethod method, argument
41 handle(method(2, &args_object[1], isolate()), isolate());
47 bool RuntimeInterpreterTest::TestOperator(RuntimeMethod method, int32_t lhs, argument
51 return TestOperatorWithObjects(method, x, y, expected);
55 bool RuntimeInterpreterTest::TestOperator(RuntimeMethod method, double lhs, argument
61 return TestOperatorWithObjects(method,
65 TestOperator(RuntimeMethod method, const char* lhs, const char* rhs, bool expected) argument
[all...]
/external/webrtc/webrtc/common_video/libyuv/
H A Dscaler.cc33 ScaleMethod method) {
45 method_ = method;
30 Set(int src_width, int src_height, int dst_width, int dst_height, VideoType src_video_type, VideoType dst_video_type, ScaleMethod method) argument
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
H A DAsyncHttpURLConnection.java27 private final String method; field in class:AsyncHttpURLConnection
41 public AsyncHttpURLConnection(String method, String url, String message, argument
43 this.method = method;
70 connection.setRequestMethod(method);
78 if (method.equals("POST")) {
99 events.onHttpError("Non-200 response to " + method + " to URL: "
110 events.onHttpError("HTTP " + method + " to " + url + " timeout");
112 events.onHttpError("HTTP " + method + " to " + url + " error: "
/external/caliper/lib/
H A Djersey-client-1.11.jar ... Object) public abstract java.util.concurrent.Future method (java.lang.String) public abstract java.util
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/debuggee/
H A DProxyDebuggee.java51 public Object invoke(Object proxy, Method method, Object[] args) argument

Completed in 988 milliseconds

<<11121314151617181920>>