Searched defs:getMethod (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DWebResourceRequest.java55 String getMethod(); method in interface:WebResourceRequest
/frameworks/volley/src/com/android/volley/toolbox/
H A DHttpClientStack.java96 switch (request.getMethod()) {
189 public String getMethod() { method in class:HttpClientStack.HttpPatch
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DAppCompatActionBar.java90 Method setTitle = getMethod(mWindowActionBarClass, "setTitle", CharSequence.class);
98 Method setSubtitle = getMethod(mWindowActionBarClass, "setSubtitle", CharSequence.class);
107 if (((Boolean) invoke(getMethod(mWindowActionBarClass, "hasIcon"), mWindowDecorActionBar)
111 Method setIcon = getMethod(mWindowActionBarClass, "setIcon", Drawable.class);
121 Method setHomeAsUp = getMethod(mWindowActionBarClass,
134 private static Method getMethod(Class<?> owner, String name, Class<?>... parameterTypes) { method in class:AppCompatActionBar
136 return owner == null ? null : owner.getMethod(name, parameterTypes);
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java268 public String getMethod() { method in class:RequestHandle
/frameworks/volley/src/com/android/volley/
H A DRequest.java143 public int getMethod() { method in class:Request
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java748 private Method getMethod(View view, String methodName, Class<?> paramType) { method in class:RemoteViews
766 method = klass.getMethod(methodName);
768 method = klass.getMethod(methodName, paramType);
919 getMethod(view, this.methodName, null).invoke(view);
1280 getMethod(view, this.methodName, param).invoke(view, wrapArg(this.value));
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java300 public String getMethod() { method in class:WebViewContentsClientAdapter.WebResourceRequestImpl

Completed in 197 milliseconds