Lines Matching defs:content

22 import android.content.BroadcastReceiver;
23 import android.content.ClipboardManager;
24 import android.content.ComponentCallbacks2;
25 import android.content.Context;
26 import android.content.DialogInterface;
27 import android.content.DialogInterface.OnCancelListener;
28 import android.content.Intent;
29 import android.content.IntentFilter;
30 import android.content.pm.PackageInfo;
31 import android.content.pm.PackageManager;
32 import android.content.res.Configuration;
132 * can roll your own web browser or simply display some online content within your Activity.
166 * <p>See {@link android.content.Intent} for more information.</p>
202 * rendering of the content, eg, errors or form submissions. You
290 * considered a high density device (hdpi) and the page content is scaled 1.5x; if the
291 * value is "0.75", then the device is considered a low density device (ldpi) and the content is
319 * <pre>&lt;meta name="viewport" content="target-densitydpi=device-dpi" /&gt;</pre></li>
595 // The amount of content to overlap between two screens when going through
810 // normally we try to fit the content to the minimum preferred width
875 * This how far content can be pulled beyond its normal bounds by the user.
881 * This is how far flinged content can move beyond the end of its normal bounds.
948 * the WebView content, you are advised against its usage until a replacement
1483 * Return the width of the view where the content of WebView should render
1535 * Return the height of the view where the content of WebView should render
1982 * This WebView will then switch to showing the content from webkit
2124 * page loaded using this method will be unable to access content loaded
2164 * the content. The base URL is used both to resolve relative URLs and when
2168 * Note that content specified in this way can access local device files
2750 * Given a distance in view space, convert it to content space. Note: this
2760 * Given an x coordinate in view space, convert it to content space. Also
2769 * Given a y coordinate in view space, convert it to content space.
2778 * Given a x coordinate in view space, convert it to content space.
2786 * Given a y coordinate in view space, convert it to content space.
2795 * Given a distance in content space, convert it to view space. Note: this
2805 * Given an x coordinate in content space, convert it to view
2813 * Given a y coordinate in content space, convert it to view
2825 /* To invalidate a rectangle in content coordinates, we need to transform
2840 // content space
2851 // coordinates in content space
2890 // repin our scroll, taking into account the new content size
2949 // Sets r to be our visible rectangle in content coordinates
2956 // displaying our content is displaced by that amount.
2963 // Sets r to be our visible rectangle in content coordinates. We use this
2973 // displaying our content is displaced by that amount.
3016 * layout and a change in content size. This content size change will
3024 // Actual visible content height.
3235 * @return the height of the HTML content.
3243 * @return the width of the HTML content.
3710 // Scale from content to view coordinates, and pin.
3891 // scale from content to view coordinates, and pin
3918 // Log.d(LOGTAG, "content scrollTo [" + cx + " " + cy + "] view=[" +
3951 // scale from content to view coordinates, and pin
3964 * These are from webkit, and are in content coordinate system (unzoomed)
3968 // this avoids drawing the prev content in a funny place. If we find a
4013 * Register the interface to be used when content can not be handled by
4242 // next clip the region for the content
4422 * Select the word at the indicated content coordinates.
4669 // XXX: Revisit splitting content. Right now it causes a
4671 int content = nativeDraw(canvas, mVisibleContentRect, color,
4674 if (!mBlockWebkitViewMessages && content != 0) {
4675 mWebViewCore.sendMessage(EventHub.SPLIT_PICTURE_SET, content, 0);
4932 // should be in content coordinates.
5441 // coordinates should be in content coordinates.
7170 * @return Maximum horizontal scroll position within real content
7178 * @return Maximum vertical scroll position within real content
7297 // no horizontal overscroll if the content just fits
7550 * Returns plugin bounds if x/y in content coordinates corresponds to a
7691 // Grab the content size from WebViewCore.
7747 Rect content = new Rect(viewToContentX(mScrollX),
7752 content = nativeSubtractLayers(content);
7753 int screenTop = contentToViewY(content.top);
7754 int screenBottom = contentToViewY(content.bottom);
7773 int screenLeft = contentToViewX(content.left);
7774 int screenRight = contentToViewX(content.right);
8488 // called for new content
8569 // we need to scale r from content into view coords,
8702 // use the passing content width to cap x as the current
8719 // use the passing content height to cap y as the current
9478 /** @hide send content invalidate */
9643 private native void nativeReplaceBaseContent(int content);
9650 private native Rect nativeSubtractLayers(Rect content);