Searched defs:method (Results 251 - 275 of 1189) sorted by relevance

<<11121314151617181920>>

/external/javassist/src/main/javassist/bytecode/annotation/
H A DArrayMemberValue.java53 Object getValue(ClassLoader cl, ClassPool cp, Method method) argument
58 "no array elements found: " + method.getName());
63 clazz = method.getReturnType().getComponentType();
66 + method.getName());
73 Array.set(a, i, values[i].getValue(cl, cp, method));
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java24 public TestMethod(Method method, TestClass testClass) { argument
25 fMethod= method;
/external/junit/src/org/junit/runners/model/
H A DNoGenericTypeParametersValidator.java14 NoGenericTypeParametersValidator(Method method) { argument
15 this.fMethod = method;
/external/libmicrohttpd/doc/examples/
H A Dbasicauthentication.c22 const char *url, const char *method,
32 if (0 != strcmp (method, "GET"))
21 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
H A Dresponseheaders.c24 const char *url, const char *method,
33 if (0 != strcmp (method, "GET"))
23 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/libmicrohttpd/src/examples/
H A Dchunked_example.c44 const char *method,
52 if (0 != strcmp (method, "GET"))
53 return MHD_NO; /* unexpected method */
41 ahc_echo(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 **ptr) argument
H A Ddual_stack_example.c34 const char *method,
43 if (0 != strcmp (method, "GET"))
44 return MHD_NO; /* unexpected method */
31 ahc_echo(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 **ptr) argument
H A Dminimal_example.c34 const char *method,
43 if (0 != strcmp (method, "GET"))
44 return MHD_NO; /* unexpected method */
31 ahc_echo(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 **ptr) argument
H A Dminimal_example_comet.c42 const char *method,
50 if (0 != strcmp (method, "GET"))
51 return MHD_NO; /* unexpected method */
39 ahc_echo(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 **ptr) argument
H A Dquerystring_example.c35 const char *method,
46 if (0 != strcmp (method, "GET"))
47 return MHD_NO; /* unexpected method */
32 ahc_echo(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 **ptr) argument
H A Drefuse_post_example.c29 <form action=\"/filepost\" method=\"post\" enctype=\"multipart/form-data\">\n\
40 const char *method,
49 if ((0 != strcmp (method, "GET")) && (0 != strcmp (method, "POST")))
50 return MHD_NO; /* unexpected method */
57 if (0 == strcmp (method, "POST"))
37 ahc_echo(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 **ptr) argument
/external/libmicrohttpd/src/testcurl/
H A Dtest_start_stop.c43 const char *method,
40 ahc_echo(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 **unused) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DCallbackGenerator.java30 CodeEmitter beginMethod(ClassEmitter ce, MethodInfo method); argument
31 int getOriginalModifiers(MethodInfo method); argument
32 int getIndex(MethodInfo method); argument
34 Signature getImplSignature(MethodInfo method); argument
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();
H A DInterfaceMaker.java29 * of method signatures.
48 * Add a method signature to the interface.
49 * @param sig the method signature to add to the interface
50 * @param exceptions an array of exception types to declare for the method
57 * Add a method signature to the interface. The method modifiers are ignored,
59 * @param method the method to add to the interface
61 public void add(Method method) { argument
62 add(ReflectUtils.getSignature(method),
[all...]
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DMethodInfo.java17 private Method method; field in class:MethodInfo
20 this.method = theInvocation.getMethod();
24 Class<?>[] exceptions = method.getExceptionTypes();
36 if (method.getReturnType().isPrimitive() || clazz.isPrimitive()) {
37 return Primitives.primitiveTypeOf(clazz) == Primitives.primitiveTypeOf(method.getReturnType());
39 return method.getReturnType().isAssignableFrom(clazz);
44 return this.method.getReturnType() == Void.TYPE;
48 return method.getReturnType().getSimpleName();
52 return method.getName();
56 return method
[all...]
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DGetAndPostIntegrationTest.java76 public Response serve(String uri, Method method, Map<String, String> header, Map<String, String> parms, Map<String, String> files) { argument
77 StringBuilder sb = new StringBuilder(String.valueOf(method) + ':' + this.response);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSipRequestLine.java22 * @return method string.
41 * Set the method member
43 * @param method String to set
45 public abstract void setMethod(String method); argument
/external/nist-sip/java/javax/sip/header/
H A DRAckHeader.java10 void setMethod(String method) throws ParseException; argument
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthAccessor.java65 * @param method
66 * the HTTP request method. If this is null, use the default
67 * method; that is getProperty("httpMethod") or (if that's null)
71 public OAuthMessage newRequestMessage(String method, String url, argument
74 if (method == null) {
75 method = (String) this.getProperty("httpMethod");
76 if (method == null) {
77 method = (String) this.consumer.getProperty("httpMethod");
78 if (method == null) {
79 method
[all...]
/external/opencv3/3rdparty/libwebp/dec/
H A Dalpha.c33 // error returned by appropriate compression method.
41 int method; local
52 method = (data[0] >> 0) & 0x03;
56 if (method < ALPHA_NO_COMPRESSION ||
57 method > ALPHA_LOSSLESS_COMPRESSION ||
64 if (method == ALPHA_NO_COMPRESSION) {
/external/opencv3/modules/imgproc/src/
H A Dmatchcontours.cpp44 double cv::matchShapes(InputArray contour1, InputArray contour2, int method, double) argument
55 switch (method)
143 CV_Error( CV_StsBadArg, "Unknown comparison method" );
152 int method, double parameter )
158 return cv::matchShapes(contour1, contour2, method, parameter);
151 cvMatchShapes( const void* _contour1, const void* _contour2, int method, double parameter ) argument
/external/opencv3/modules/imgproc/test/ocl/
H A Dtest_match_template.cpp62 int method; local
73 method = GET_PARAM(2);
103 method == TM_CCORR_NORMED ||
104 method == TM_SQDIFF_NORMED ||
105 method == TM_CCOEFF_NORMED;
120 OCL_OFF(cv::matchTemplate(image_roi, templ_roi, result_roi, method));
121 OCL_ON(cv::matchTemplate(uimage_roi, utempl_roi, uresult_roi, method));
/external/opencv3/samples/cpp/
H A Dbgfg_segm.cpp24 "{m method |mog2 | method (knn or mog2) }"
38 string method = parser.get<string>("method"); local
60 Ptr<BackgroundSubtractor> bg_model = method == "knn" ?
H A Dmask_tmpl.cpp52 //int method = CV_TM_SQDIFF;
53 int method = CV_TM_CCORR_NORMED; local
54 matchTemplate(img, tmpl, res, method, mask);
61 if(method == CV_TM_SQDIFF || method == CV_TM_SQDIFF_NORMED)

Completed in 2675 milliseconds

<<11121314151617181920>>