/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
Request.java | 30 private final String method; field in class:Request 41 this.method = builder.method; 69 public String method() { method in class:Request 70 return method; 111 return "Request{method=" 112 + method 122 private String method; field in class:Request.Builder 128 this.method = "GET"; 134 this.method = request.method 248 public Builder method(String method, RequestBody body) { method in class:Request.Builder [all...] |
/external/opencv3/3rdparty/jinja2/ |
_compat.py | 123 def method(self): pass member in class:_C 128 method_type = type(_C().method) 129 code_type = type(_C.method.__code__)
|
/external/opencv3/3rdparty/libjpeg/ |
jcdctmgr.c | 185 int method = 0; local 196 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 200 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 204 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 208 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 212 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 216 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 220 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 224 method = JDCT_ISLOW; /* jfdctint uses islow-style table */ 228 method = JDCT_ISLOW; /* jfdctint uses islow-style table * [all...] |
/external/opencv3/modules/cudaimgproc/test/ |
test_match_template.cpp | 66 int method; local 74 method = GET_PARAM(4); 85 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method); 91 cv::matchTemplate(image, templ, dst_gold, method); 123 int method; local 133 method = GET_PARAM(4); 144 cv::Ptr<cv::cuda::TemplateMatching> alg = cv::cuda::createTemplateMatching(image.type(), method); 150 cv::matchTemplate(image, templ, dst_gold, method); 179 int method; local 184 method = GET_PARAM(1) [all...] |
/external/opencv3/modules/imgproc/test/ |
test_templmatch.cpp | 61 int method; member in class:CV_TemplMatchTest 74 method = 0; 121 method = cvtest::randInt(rng)%6; 129 (method >= CV_TM_CCOEFF && test_mat[INPUT][1].cols*test_mat[INPUT][1].rows <= 2) ) 139 cvMatchTemplate( test_array[INPUT][0], test_array[INPUT][1], test_array[OUTPUT][0], method ); 143 cv::matchTemplate(cv::cvarrToMat(test_array[INPUT][0]), cv::cvarrToMat(test_array[INPUT][1]), _out, method); local 148 static void cvTsMatchTemplate( const CvMat* img, const CvMat* templ, CvMat* result, int method ) 166 method == CV_TM_CCOEFF_NORMED ) 172 if( method & 1 ) 175 if( method != CV_TM_CCOEFF_NORMED [all...] |
/external/opencv3/samples/gpu/ |
stereo_match.cpp | 26 switch (method) 34 enum {BM, BP, CSBP} method; member in struct:Params 81 << "\t--method <stereo_match_method> # BM | BP | CSBP\n" 111 method = BM; 124 else if (string(argv[i]) == "--method") 126 if (string(argv[i + 1]) == "BM") p.method = BM; 127 else if (string(argv[i + 1]) == "BP") p.method = BP; 128 else if (string(argv[i + 1]) == "CSBP") p.method = CSBP; 129 else throw runtime_error("unknown stereo match method: " + string(argv[i + 1])); 151 << "\tm - change stereo match method\n [all...] |
/external/proguard/src/proguard/classfile/attribute/visitor/ |
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/benchmarks/ |
ProtoBench.java | 40 import java.lang.reflect.Method; 80 Method method = clazz.getDeclaredMethod("getDefaultInstance"); local 81 defaultMessage = (Message) method.invoke(null);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/ |
JsonRpcServer.java | 89 String method = request.getString("method"); local 92 MethodDescriptor rpc = receiverManager.getMethodDescriptor(method); 94 send(writer, JsonRpcResult.error(id, new RpcError("Unknown RPC: " + method)), UID); 103 if (method.equals(CMD_CLOSE_SESSION)) {
|
/external/testng/src/main/java/org/testng/junit/ |
JUnitMethodFinder.java | 12 import java.lang.reflect.Method; 53 public boolean accept(Method method) { 54 return method.getName().startsWith("test") && 55 method.getParameterTypes().length == 0; 60 // ppp("FIND TEST METHOD RETURNING "); 72 // same method twice (e.g. setUp) which would lead to double-invocation. 74 // method names in a Set to filter out duplicates. 82 Method[] allMethods = current.getDeclaredMethods(); 83 for(Method allMethod : allMethods) 87 Method method = m.getMethod(); local [all...] |
/external/testng/src/test/java/test/methodinterceptors/ |
MethodInterceptorTest.java | 73 String method = "zzzfast"; local 75 Assert.assertEquals(first.getMethod().getMethodName(), method); local 77 Assert.assertNotSame(first.getMethod().getMethodName(), method); local
|
/external/vogar/src/vogar/target/junit/ |
Junit4.java | 22 import java.lang.reflect.Method; 49 * @param methodNames if non-empty, this is the list of test method names. 65 for (Method m : testClass.getMethods()) { 100 for (Method m : testClass.getMethods()) { 114 private static void addAllParameterizedTests(List<VogarTest> out, Class<?> testClass, Method m, 158 for (Method m : klass.getDeclaredMethods()) { 200 protected final Method method; field in class:Junit4.VogarJUnitTest 202 protected VogarJUnitTest(Class<?> testClass, Method method) { [all...] |
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/ |
AsyncHttpURLConnection.java | 27 private final String method; field in class:AsyncHttpURLConnection 41 public AsyncHttpURLConnection(String method, String url, String message, 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/webrtc/webrtc/examples/peerconnection/server/ |
data_socket.h | 76 RequestMethod method() const { return method_; } function in class:DataSocket 122 // A fairly relaxed HTTP header parser. Parses the method, path and
|
/external/wpa_supplicant_8/hs20/server/www/ |
est.php | 8 $method = $_SERVER["REQUEST_METHOD"]; variable 66 $A2 = md5($method . ':' . $data['uri']); 76 if ($method == "GET" && $cmd == "cacerts") { 90 } else if ($method == "GET" && $cmd == "csrattrs") { 95 } else if ($method == "POST" && $cmd == "simpleenroll") { 194 error_log("EST: Unexpected method or path"); 195 die("Unexpected method or path");
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap.h | 22 u32 method; member in struct:eap_method_type 209 * An EAP method can perform a pending operation (e.g., to get a 244 * @parameter: Step-specific parameter, e.g., EAP method name
|
/external/zlib/src/contrib/minizip/ |
mztools.c | 56 unsigned int method = READ_16(header + 8); local 156 WRITE_16(header + 10, method);
|
/frameworks/base/cmds/idmap/ |
scan.cpp | 134 uint16_t method; local 135 if (!zip->getEntryInfo(entry, &method, &uncompLen, NULL, NULL, NULL, NULL)) { 139 if (method != ZipFileRO::kCompressDeflated) { 140 ALOGW("%s: cannot handle zip compression method %" PRIu16 "\n", __FUNCTION__, method);
|
/frameworks/base/core/java/android/text/method/ |
CharacterPickerDialog.java | 17 package android.text.method;
|
ReplacementTransformationMethod.java | 17 package android.text.method; 29 * This transformation method causes the characters in the {@link #getOriginal}
|
Touch.java | 17 package android.text.method;
|
WordIterator.java | 18 package android.text.method; 151 // so this method can be removed. 170 // so this method can be removed.
|
/frameworks/base/core/java/android/view/inputmethod/ |
InputConnectionInspector.java | 24 import java.lang.reflect.Method; 136 final Method method = clazz.getMethod("getSelectedText", int.class); local 137 return !Modifier.isAbstract(method.getModifiers()); 145 final Method method = clazz.getMethod("setComposingRegion", int.class, int.class); local 146 return !Modifier.isAbstract(method.getModifiers()); 154 final Method method = clazz.getMethod("commitCorrection", CorrectionInfo.class); local 155 return !Modifier.isAbstract(method.getModifiers()) 163 final Method method = clazz.getMethod("requestCursorUpdates", int.class); local 172 final Method method = clazz.getMethod("deleteSurroundingTextInCodePoints", int.class, local 182 final Method method = clazz.getMethod("getHandler"); local 191 final Method method = clazz.getMethod("closeConnection"); local [all...] |
/frameworks/base/core/tests/coretests/src/android/text/method/ |
EditorState.java | 17 package android.text.method;
|
WordIteratorTest.java | 17 package android.text.method;
|