Searched defs:content (Results 51 - 75 of 172) sorted by relevance

1234567

/frameworks/base/core/java/android/content/
H A DSyncAdaptersCache.java17 package android.content;
19 import android.content.pm.RegisteredServicesCache;
20 import android.content.pm.XmlSerializerAndParser;
21 import android.content.res.Resources;
22 import android.content.res.TypedArray;
31 * A cache of services that export the {@link android.content.ISyncAdapter} interface.
37 private static final String SERVICE_INTERFACE = "android.content.SyncAdapter";
38 private static final String SERVICE_META_DATA = "android.content.SyncAdapter";
H A DSyncStats.java17 package android.content;
H A DUriMatcher.java17 package android.content;
26 Utility class to aid in matching URIs in content providers.
H A DClipboardManager.java17 package android.content;
19 import android.content.Context;
35 * {@link android.content.Context#getSystemService}.
50 * @see android.content.Context#getSystemService
83 * {@link android.content.ClipboardManager#addPrimaryClipChangedListener(OnPrimaryClipChangedListener)
91 * Callback that is invoked by {@link android.content.ClipboardManager} when the primary
H A DContentQueryMap.java17 package android.content;
29 * keeps the cache fresh by registering for updates on the content backing the cursor. The column of
51 * Creates a ContentQueryMap that caches the content backing the cursor
H A DDialogInterface.java17 package android.content;
H A DSyncAdapterType.java17 package android.content;
H A DSyncQueue.java17 package android.content;
20 import android.content.pm.RegisteredServicesCache.ServiceInfo;
H A DSyncResult.java17 package android.content;
/frameworks/base/core/java/android/content/pm/
H A DFeatureInfo.java17 package android.content.pm;
H A DInstrumentationInfo.java17 package android.content.pm;
H A DManifestDigest.java17 package android.content.pm;
H A DPathPermission.java17 package android.content.pm;
H A DPermissionGroupInfo.java17 package android.content.pm;
H A DServiceInfo.java17 package android.content.pm;
H A DComponentInfo.java17 package android.content.pm;
H A DConfigurationInfo.java17 package android.content.pm;
30 * One of: {@link android.content.res.Configuration#TOUCHSCREEN_NOTOUCH},
31 * {@link android.content.res.Configuration#TOUCHSCREEN_STYLUS},
32 * {@link android.content.res.Configuration#TOUCHSCREEN_FINGER}.
38 * One of: {@link android.content.res.Configuration#KEYBOARD_UNDEFINED},
39 * {@link android.content.res.Configuration#KEYBOARD_NOKEYS},
40 * {@link android.content.res.Configuration#KEYBOARD_QWERTY},
41 * {@link android.content.res.Configuration#KEYBOARD_12KEY}
47 * one of: {@link android.content.res.Configuration#NAVIGATION_UNDEFINED},
48 * {@link android.content
[all...]
H A DLabeledIntent.java17 package android.content.pm;
19 import android.content.Intent;
H A DPackageStats.java17 package android.content.pm;
H A DParceledListSlice.java17 package android.content.pm;
H A DProviderInfo.java17 package android.content.pm;
25 * {@link android.content.ContentProvider content provider}. This is returned by
26 * {@link android.content.pm.PackageManager#resolveContentProvider(java.lang.String, int)
32 /** The name provider is published under content:// */
35 /** Optional permission required for read-only access this content
39 /** Optional permission required for read/write access this content
43 /** If true, additional permissions to specific Uris in this content
68 /** If true, this content provider allows multiple instances of itself
/frameworks/base/core/java/android/content/res/
H A DObbInfo.java17 package android.content.res;
/frameworks/base/core/java/android/text/method/
H A DBaseKeyListener.java48 public boolean backspace(View view, Editable content, int keyCode, KeyEvent event) { argument
49 return backspaceOrForwardDelete(view, content, keyCode, event, false);
60 public boolean forwardDelete(View view, Editable content, int keyCode, KeyEvent event) { argument
61 return backspaceOrForwardDelete(view, content, keyCode, event, true);
64 private boolean backspaceOrForwardDelete(View view, Editable content, int keyCode, argument
73 if (deleteSelection(view, content)) {
78 if (event.isAltPressed() || getMetaState(content, META_ALT_ON) == 1) {
79 if (deleteLine(view, content)) {
85 final int start = Selection.getSelectionEnd(content);
88 || getMetaState(content, META_SHIFT_O
100 deleteSelection(View view, Editable content) argument
115 deleteLine(View view, Editable content) argument
150 onKeyDown(View view, Editable content, int keyCode, KeyEvent event) argument
176 onKeyOther(View view, Editable content, KeyEvent event) argument
[all...]
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DStringPart.java55 /** Default content encoding of string parameters. */
65 private byte[] content; field in class:StringPart
107 * Gets the content in bytes. Bytes are lazily created to allow the charset to be changed
110 * @return the content in bytes
113 if (content == null) {
114 content = EncodingUtils.getBytes(value, getCharSet());
116 return content;
147 this.content = null;
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageHelperTests.java17 package android.content.pm;
19 import com.android.internal.content.PackageHelper;
31 protected final String PREFIX = "android.content.pm";

Completed in 191 milliseconds

1234567