Searched refs:url (Results 176 - 200 of 253) sorted by relevance

1234567891011

/frameworks/base/core/java/android/webkit/
H A DJsDialogHelper.java58 String url) {
63 mUrl = url;
71 mUrl = msg.getData().getString("url");
172 // do nothing. just use the url as the title
57 JsDialogHelper(JsPromptResult result, int type, String defaultValue, String message, String url) argument
H A DWebView.java948 * @param url the URL of the resource to load
956 public void loadUrl(String url, Map<String, String> additionalHttpHeaders) { argument
958 mProvider.loadUrl(url, additionalHttpHeaders);
966 * @param url the URL of the resource to load
968 public void loadUrl(String url) { argument
970 mProvider.loadUrl(url);
974 * Loads the URL with postData using "POST" method into this WebView. If url
978 * @param url the URL of the resource to load
982 public void postUrl(String url, byte[] postData) { argument
984 if (URLUtil.isNetworkUrl(url)) {
[all...]
/frameworks/data-binding/
H A DpropLoader.gradle53 url repo
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmAnalyzerTest.java51 URL url = this.getClass().getClassLoader().getResource("data/mock_android.jar");
55 mOsJarPath.add(url.getFile());
H A DAsmGeneratorTest.java69 URL url = this.getClass().getClassLoader().getResource("data/mock_android.jar");
73 mOsJarPath.add(url.getFile());
/frameworks/support/browser/src/main/java/androidx/browser/customtabs/
H A DCustomTabsIntent.java77 * Boolean extra that enables the url bar to hide as the user scrolls down the page
144 * the url as data. The client app can call {@link Intent#getDataString()} to get the url.
194 * {@link PendingIntent} will be sent, carrying the current url of the custom tab as data.
197 * If you do not care about the current url, you can safely ignore this extra and use
208 * Note when this {@link PendingIntent} is triggered, it will have the current url as data
259 * @param url The URL to load in the Custom Tab.
261 public void launchUrl(Context context, Uri url) { argument
262 intent.setData(url);
317 * Enables the url ba
[all...]
/frameworks/av/include/media/
H A DIMediaPlayer.h56 const char *url,
H A Dmediaplayer.h215 const char *url,
/frameworks/av/media/libmedia/include/media/
H A DIMediaPlayer.h56 const char *url,
H A Dmediaplayer.h215 const char *url,
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.h37 const char *url,
H A DHTTPLiveSource.cpp44 const char *url,
48 mURL(url),
41 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeContentProvider.java150 public boolean refresh(String callingPkg, Uri url, Bundle args, argument
/frameworks/support/webkit/src/main/java/androidx/webkit/
H A DWebViewClientCompat.java109 * @param url The URL corresponding to the page navigation that triggered this callback.
112 public void onPageCommitVisible(@NonNull WebView view, @NonNull String url) { argument
263 * url is about to be loaded in the current WebView. If WebViewClient is not
265 * proper handler for the url. If WebViewClient is provided, return {@code true}
266 * means the host application handles the url, while return {@code false} means the
267 * current WebView handles the url.
274 * with the request's url from inside the method and then return {@code true},
275 * as this will make WebView to attempt loading a non-http url, and thus fail.</li>
285 * and handle the url itself, otherwise return {@code false}.
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DHTTPLiveSource2.cpp44 const char *url,
48 mURL(url),
41 HTTPLiveSource2( const sp<AMessage> &notify, const sp<MediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPacManager.java214 URL url = new URL(pacUri.toString());
215 URLConnection urlConnection = url.openConnection(java.net.Proxy.NO_PROXY);
/frameworks/data-binding/extensions/library/
H A Dbuild.gradle114 url dataBindingConfig.licenseUrl
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/model/
H A DMusicProvider.java303 URL url = new URL(urlString);
304 URLConnection urlConnection = url.openConnection();
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/model/
H A DMusicProvider.java303 URL url = new URL(urlString);
304 URLConnection urlConnection = url.openConnection();
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h117 const char *url,
126 mOriginalSessionURL(url),
127 mSessionURL(url),
154 // Strip any authentication info from the session url, we don't
169 ALOGV("rewritten session url: '%s'", mSessionURL.c_str());
513 // Strip any authentication info from the session url, we don't
527 ALOGI("rewritten session url: '%s'", mSessionURL.c_str());
916 // XXX should use aggregate url from SDP here...
1474 CHECK(GetAttribute((*it).c_str(), "url", &val));
1606 AString url; local
116 MyHandler( const char *url, const sp<AMessage> &notify, bool uidValid = false, uid_t uid = 0) argument
1692 MakeURL(const char *baseURL, const char *url, AString *out) argument
[all...]
H A DMyTransmitter.h78 MyTransmitter(const char *url, const sp<ALooper> &looper) argument
79 : mServerURL(url),
293 AString *request, const char *method, const char *url) {
315 A2.append(url);
337 request->append(url);
292 addAuthentication( AString *request, const char *method, const char *url) argument
/frameworks/layoutlib/bridge/src/android/content/res/
H A DResources_Delegate.java1070 ResourceUrl url = resourceUrlFromName(name, defType, defPackage);
1072 if (url != null) {
1073 id = ANDROID_PKG.equals(url.namespace) ? Bridge.getResourceId(url.type, url.name) :
1074 getLayoutlibCallback(resources).getResourceId(url.type, url.name);
/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java376 private CharSequence formatUrl(Context context, CharSequence url) { argument
384 SpannableString text = new SpannableString(url);
386 0, url.length(),
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DSuggestionsAdapter.java335 private CharSequence formatUrl(CharSequence url) { argument
343 SpannableString text = new SpannableString(url);
345 0, url.length(),
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp797 const char *url,
800 ALOGV("setDataSource(%s)", url);
801 if (url == NULL)
804 if ((strncmp(url, "http://", 7) == 0) ||
805 (strncmp(url, "https://", 8) == 0) ||
806 (strncmp(url, "rtsp://", 7) == 0)) {
812 if (strncmp(url, "content://", 10) == 0) {
816 String16 url16(url);
820 ALOGE("Couldn't open fd for %s", url);
827 player_type playerType = MediaPlayerFactory::getPlayerType(this, url);
795 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
[all...]

Completed in 485 milliseconds

1234567891011