Searched defs:content (Results 101 - 125 of 239) sorted by relevance

12345678910

/frameworks/base/core/java/android/content/pm/
H A DLabeledIntent.java17 package android.content.pm;
19 import android.content.Intent;
H A DLauncherActivityInfo.java17 package android.content.pm;
19 import android.content.ComponentName;
20 import android.content.Context;
21 import android.content.pm.PackageManager.NameNotFoundException;
22 import android.content.res.Resources;
H A DManifestDigest.java17 package android.content.pm;
H A DPackageManagerInternal.java17 package android.content.pm;
H A DPackageStats.java17 package android.content.pm;
H A DProviderInfo.java17 package android.content.pm;
26 * {@link android.content.ContentProvider content provider}. This is returned by
27 * {@link android.content.pm.PackageManager#resolveContentProvider(java.lang.String, int)
33 /** The name provider is published under content:// */
36 /** Optional permission required for read-only access this content
40 /** Optional permission required for read/write access this content
44 /** If true, additional permissions to specific Uris in this content
69 /** If true, this content provider allows multiple instances of itself
H A DVerifierDeviceIdentity.java17 package android.content.pm;
/frameworks/base/core/java/android/content/res/
H A DThemedResourceCache.java17 package android.content.res;
21 import android.content.res.Resources.Theme;
22 import android.content.res.Resources.ThemeKey;
/frameworks/base/core/java/android/text/method/
H A DBaseKeyListener.java50 public boolean backspace(View view, Editable content, int keyCode, KeyEvent event) { argument
51 return backspaceOrForwardDelete(view, content, keyCode, event, false);
62 public boolean forwardDelete(View view, Editable content, int keyCode, KeyEvent event) { argument
63 return backspaceOrForwardDelete(view, content, keyCode, event, true);
66 private boolean backspaceOrForwardDelete(View view, Editable content, int keyCode, argument
75 if (deleteSelection(view, content)) {
81 boolean isShiftActive = (getMetaState(content, META_SHIFT_ON, event) == 1);
82 boolean isAltActive = (getMetaState(content, META_ALT_ON, event) == 1);
89 return deleteUntilWordBoundary(view, content, isForwardDelete);
93 if (isAltActive && deleteLine(view, content)) {
112 deleteUntilWordBoundary(View view, Editable content, boolean isForwardDelete) argument
160 deleteSelection(View view, Editable content) argument
175 deleteLine(View view, Editable content) argument
210 onKeyDown(View view, Editable content, int keyCode, KeyEvent event) argument
236 onKeyOther(View view, Editable content, KeyEvent event) argument
[all...]
H A DNumberKeyListener.java43 protected int lookup(KeyEvent event, Spannable content) { argument
44 return event.getMatch(getAcceptedChars(), getMetaState(content, event));
96 public boolean onKeyDown(View view, Editable content, argument
101 int a = Selection.getSelectionStart(content);
102 int b = Selection.getSelectionEnd(content);
110 Selection.setSelection(content, 0);
113 int i = event != null ? lookup(event, content) : 0;
118 Selection.setSelection(content, selEnd);
121 content.replace(selStart, selEnd, String.valueOf((char) i));
123 adjustMetaAfterKeypress(content);
[all...]
/frameworks/base/core/java/com/android/internal/content/
H A DSelectionBuilder.java17 package com.android.internal.content;
19 import android.content.ContentValues;
/frameworks/base/core/tests/coretests/src/android/content/res/
H A DConfigurationBoundResourceCacheTest.java17 package android.content.res;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPageContentView.java19 import android.content.Context;
60 public void onPageContentAvailable(BitmapDrawable content) { argument
61 setBackground(content);
92 // the empty state, so pages with no content appear blank.
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDebuggingActivity.java21 import android.content.BroadcastReceiver;
22 import android.content.Context;
23 import android.content.DialogInterface;
24 import android.content.Intent;
25 import android.content.IntentFilter;
91 public void onReceive(Context content, Intent intent) { argument
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DService.java21 import android.content.Context;
69 public void onMessageReceived(int service, int what, ByteBuffer content) { argument
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DResources_Theme_Delegate.java17 package android.content.res;
28 import android.content.res.Resources.NotFoundException;
29 import android.content.res.Resources.Theme;
30 import android.content.res.Resources.ThemeKey;
/frameworks/ex/common/java/com/android/common/content/
H A DProjectionMap.java17 package com.android.common.content;
/frameworks/support/v4/java/android/support/v4/content/
H A DIntentCompat.java17 package android.support.v4.content;
19 import android.content.ComponentName;
20 import android.content.Context;
21 import android.content.Intent;
25 * Helper for accessing features in {@link android.content.Intent}
150 * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE},
151 * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
159 * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE},
160 * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
169 * {@link android.content
[all...]
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp98 void CheckDataEquals(const Parcel& parcel, const char* content) { argument
105 int32_t content_len = strlen(content);
107 EXPECT_TRUE(strncmp(data, content, content_len) == 0);
/frameworks/base/core/java/android/content/
H A DAbstractThreadedSyncAdapter.java17 package android.content;
54 * in the service's {@link android.app.Service#onBind(android.content.Intent)} when invoked
55 * with an intent with action <code>android.content.SyncAdapter</code>. This service
59 * &lt;action android:name="android.content.SyncAdapter" /&gt;
61 * &lt;meta-data android:name="android.content.SyncAdapter"
78 * indicate which content authority and for which account types this sync adapter serves.
83 * with an authority whenever that authority's content provider does a
118 * @param context the {@link android.content.Context} that this is running within.
131 * @param context the {@link android.content.Context} that this is running within.
326 * Report that there was a security exception when opening the content provide
[all...]
H A DAsyncQueryHandler.java17 package android.content;
149 * @param uri The URI, using the content:// scheme, for the content to
H A DClipDescription.java17 package android.content;
51 * It should <em>not</em> be used for a content: URI that references some
H A DComponentName.java17 package android.content;
29 * {@link android.content.BroadcastReceiver}, or
30 * {@link android.content.ContentProvider}) that is available. Two
H A DContentValues.java17 package android.content;
H A DCursorLoader.java17 package android.content;

Completed in 552 milliseconds

12345678910