Searched refs:mMethod (Results 1 – 5 of 5) sorted by relevance
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/ |
D | MethodDescriptor.java | 50 private final Method mMethod; field in MethodDescriptor 55 mMethod = method; in MethodDescriptor() 60 return mMethod.getDeclaringClass().getCanonicalName() + "." + mMethod.getName(); in toString() 136 result = manager.invoke(mClass, mMethod, args); in invoke() 276 return mMethod; in getMethod() 284 if (mMethod.isAnnotationPresent(RpcName.class)) { in getName() 285 return mMethod.getAnnotation(RpcName.class).name(); in getName() 287 return mMethod.getName(); in getName() 291 return mMethod.getGenericParameterTypes(); in getGenericParameterTypes() 295 return mMethod.getParameterAnnotations(); in getParameterAnnotations() [all …]
|
/external/apache-http/android/src/android/net/http/ |
D | RequestHandle.java | 40 private String mMethod; field in RequestHandle 68 mMethod = method == null? "GET" : method; in RequestHandle() 190 if ((statusCode == 302 || statusCode == 303) && mMethod.equals("POST")) { in setupRedirect() 194 mMethod = "GET"; in setupRedirect() 268 return mMethod; in getMethod() 321 String A2 = mMethod + ":" + mUrl; in computeDigestAuthResponse() 466 mUrl, mUri, mMethod, mHeaders, mRequest.mEventHandler, in createAndQueueNewRequest() 474 mUrl, mUri, mMethod, mHeaders, mRequest.mEventHandler, in createAndQueueNewRequest()
|
/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | AnnotationProcessingUtils.java | 241 final Method mMethod; field in AnnotationProcessingUtils.AnnotatedNode.MethodNode 244 mMethod = method; in MethodNode() 250 return new ClassNode(mMethod.getDeclaringClass()); in getParent() 255 return Arrays.asList(mMethod.getDeclaredAnnotations()); in getAnnotations()
|
/external/volley/src/main/java/com/android/volley/ |
D | Request.java | 73 private final int mMethod; field in Request 149 mMethod = method; in Request() 159 return mMethod; in getMethod()
|
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/ |
D | UberColorPickerDialog.java | 168 private int mMethod = METHOD_HS_V_PALETTE; field in UberColorPickerDialog.ColorPickerView 366 if (mMethod == METHOD_HS_V_PALETTE) in onDraw() 700 switch (mMethod) { in dispatchTrackballEvent() 793 if (mMethod == METHOD_HS_V_PALETTE) { in changeSlider() 908 else if (mMethod == METHOD_HS_V_PALETTE) { in onTouchEvent()
|