Searched defs:create (Results 276 - 299 of 299) sorted by relevance

<<1112

/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountsDb.java273 static CeDatabaseHelper create( method in class:AccountsDb.CeDatabaseHelper
279 Log.v(TAG, "CeDatabaseHelper.create ceDatabaseFile=" + ceDatabaseFile
1081 results.add(Pair.create(accountName, uid));
1271 CeDatabaseHelper.create(mContext, mPreNDatabaseFile, ceDbFile);
1334 public static AccountsDb create(Context context, int userId, File preNDatabaseFile, method in class:AccountsDb
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsService.java270 public static NetworkStatsService create(Context context, method in class:NetworkStatsService
325 // create data recorders along with historical rotators
471 return createSession(null, /* poll on create */ false);
476 return createSession(callingPackage, /* poll on create */ true);
/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp38 sp<ScriptIntrinsicBLAS> ScriptIntrinsicBLAS::create(const sp<RS>& rs) { function in class:ScriptIntrinsicBLAS
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java63 * For older API version, this class lets you create a drawable based on an XML vector graphic.
65 * You can always create a VectorDrawableCompat object and use it as a Drawable by the Java API.
73 * used for different sizes, it is more efficient to create multiple VectorDrawables, one for each
390 // Therefore we create a new one all the time here. Don't expect this is called often.
546 public static VectorDrawableCompat create(@NonNull Resources res, @DrawableRes int resId, method in class:VectorDrawableCompat
579 * document, tries to create a Drawable from that tag. Returns {@code null}
880 * Instead of creating a VectorDrawable, create a VectorDrawableCompat instance which contains
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp312 sp<IMediaPlayer> MediaPlayerService::create(const sp<IMediaPlayerClient>& client, function in class:android::MediaPlayerService
572 ALOGD("create Antagonizer");
710 // create the right type of player
864 // create the right type of player
1031 // TODO: create mPlayer on demand.
1914 // We don't attempt to create a new track if we are recycling an
1916 // are switching where one is offloaded and one isn't then we create
1971 ALOGE("Unable to create audio track");
2026 // the server or create shared memory state.
2585 if (index < 0) { // create
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java62 * This lets you create a drawable based on an XML vector graphic.
68 * different sizes, it is more efficient to create multiple VectorDrawables, one for each size.
579 public static VectorDrawable create(Resources resources, int rid) { method in class:VectorDrawable
871 // If copy is not null, deep copy the given VectorDrawableState. Otherwise, create a
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsicBLAS.java192 public static ScriptIntrinsicBLAS create(RenderScript rs) { method in class:ScriptIntrinsicBLAS
H A DRenderScript.java1409 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1426 throw new RSDriverException("Failed to create RS context.");
1438 * calls create(ctx, ContextType.NORMAL, CREATE_FLAG_NONE)
1440 * See documentation for @create for details
1445 public static RenderScript create(Context ctx) { method in class:RenderScript
1446 return create(ctx, ContextType.NORMAL);
1450 * calls create(ctx, ct, CREATE_FLAG_NONE)
1452 * See documentation for @create for details
1458 public static RenderScript create(Context ctx, ContextType ct) { method in class:RenderScript
1459 return create(ct
1483 public static RenderScript create(Context ctx, ContextType ct, int flags) { method in class:RenderScript
1498 public static RenderScript create(Context ctx, int sdkVersion) { method in class:RenderScript
1511 private static RenderScript create(Context ctx, int sdkVersion, ContextType ct, int flags) { method in class:RenderScript
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java346 static NetworkManagementService create(Context context, String socket) method in class:NetworkManagementService
359 public static NetworkManagementService create(Context context) throws InterruptedException { method in class:NetworkManagementService
360 return create(context, NETD_SERVICE_NAME);
1097 // create triplet: interface dest-ip-addr/prefixlength gateway-ip-addr
2411 mConnector.execute("network", "create", netId, permission);
2413 mConnector.execute("network", "create", netId);
2425 mConnector.execute("network", "create", netId, "vpn", hasDNS ? "1" : "0",
2468 // create triplet: interface dest-ip-addr/prefixlength gateway-ip-addr
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBLAS.java193 public static ScriptIntrinsicBLAS create(RenderScript rs) { method in class:ScriptIntrinsicBLAS
H A DRenderScript.java69 * Should be used before context create.
84 * Should be used before context create.
1484 throw new RSDriverException("Failed to create RS context.");
1494 * See documentation for @create for details
1499 public static RenderScript create(Context ctx) { method in class:RenderScript
1500 return create(ctx, ContextType.NORMAL);
1504 * calls create(ctx, ct, CREATE_FLAG_NONE)
1506 * See documentation for @create for details
1512 public static RenderScript create(Context ctx, ContextType ct) { method in class:RenderScript
1513 return create(ct
1535 public static RenderScript create(Context ctx, ContextType ct, int flags) { method in class:RenderScript
1550 public static RenderScript create(Context ctx, int sdkVersion) { method in class:RenderScript
1563 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) { method in class:RenderScript
1576 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct, int flags) { method in class:RenderScript
[all...]
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java120 Range.create(1, Integer.MAX_VALUE);
122 Range.create(1l, Long.MAX_VALUE);
124 Range.create(new Rational(1, Integer.MAX_VALUE),
126 private static final Range<Integer> SIZE_RANGE = Range.create(1, 32768);
127 private static final Range<Integer> FRAME_RATE_RANGE = Range.create(0, 960);
128 private static final Range<Integer> BITRATE_RANGE = Range.create(0, 500000000);
900 mAudioCaps = AudioCapabilities.create(info, this);
903 mVideoCaps = VideoCapabilities.create(info, this);
906 mEncoderCaps = EncoderCapabilities.create(info, this);
917 Range.create(
986 public static AudioCapabilities create( method in class:MediaCodecInfo.AudioCapabilities
1581 public static VideoCapabilities create( method in class:MediaCodecInfo.VideoCapabilities
2700 public static EncoderCapabilities create( method in class:MediaCodecInfo.EncoderCapabilities
[all...]
H A DMediaPlayer.java165 * of the overloaded convenient <code>create</code> methods are <em>NOT</em>
167 * state if the creation using <code>create</code> method is successful.
570 * associated with these listeners, applications are required to create
649 * Default constructor. Consider using one of the create() methods for
672 * It's easier to create it here than in C++.
849 * Convenience method to create a MediaPlayer for a given Uri.
863 public static MediaPlayer create(Context context, Uri uri) { method in class:MediaPlayer
864 return create (context, uri, null);
868 * Convenience method to create a MediaPlayer for a given Uri.
883 public static MediaPlayer create(Contex method in class:MediaPlayer
899 public static MediaPlayer create(Context context, Uri uri, SurfaceHolder holder, method in class:MediaPlayer
946 public static MediaPlayer create(Context context, int resid) { method in class:MediaPlayer
962 public static MediaPlayer create(Context context, int resid, method in class:MediaPlayer
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java521 boolean create) throws PackageManagerException {
523 if (s == null && create) {
3043 // It's enough to just touch version details to create them
4237 // Need to create a data directory for all apps under this user. Accumulate all
520 getSharedUserLPw(String name, int pkgFlags, int pkgPrivateFlags, boolean create) argument
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java922 public void addInputExtra(boolean create, String extra) { argument
923 Bundle bundle = super.getInputExtras(create);
/frameworks/base/core/java/android/widget/
H A DTextView.java2101 tf = Typeface.create(familyName, styleIndex);
2103 tf = Typeface.create(tf, styleIndex);
2213 tf = Typeface.create(tf, style);
5160 * Sets the Factory used to create new {@link Editable Editables}.
5173 * Sets the Factory used to create new {@link Spannable Spannables}.
5194 * When required, TextView will use {@link android.text.Spannable.Factory} to create final or
5196 * {@link android.text.Editable.Factory} to create final or intermediate
5213 * When required, TextView will use {@link android.text.Spannable.Factory} to create final or
5215 * {@link android.text.Editable.Factory} to create final or intermediate
5230 * When required, TextView will use {@link android.text.Spannable.Factory} to create fina
6022 getInputExtras(boolean create) argument
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java310 * NOTE: do not create loops in aliases!
3082 private ScoClient getScoClient(IBinder cb, boolean create) { argument
3091 if (create) {
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2591 * Get the wakeup reason counter, and create a new one if one
2604 * Get the KernelWakelockTimer associated with name, and create a new one if one
8413 public DualTimer getSensorTimerLocked(int sensor, boolean create) { argument
8416 if (!create) {
8564 DualTimer t = getSensorTimerLocked(sensor, /* create= */ true);
8569 // Don't create a timer if one doesn't already exist
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 2855 milliseconds

<<1112