Searched defs:create (Results 251 - 264 of 264) sorted by relevance

<<11

/frameworks/support/v8/renderscript/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.
1473 throw new RSDriverException("Failed to create RS context.");
1483 * See documentation for @create for details
1488 public static RenderScript create(Context ctx) { method in class:RenderScript
1489 return create(ctx, ContextType.NORMAL);
1493 * calls create(ctx, ct, CREATE_FLAG_NONE)
1495 * See documentation for @create for details
1501 public static RenderScript create(Context ctx, ContextType ct) { method in class:RenderScript
1502 return create(ct
1524 public static RenderScript create(Context ctx, ContextType ct, int flags) { method in class:RenderScript
1539 public static RenderScript create(Context ctx, int sdkVersion) { method in class:RenderScript
1552 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) { method in class:RenderScript
1565 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct, int flags) { method in class:RenderScript
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java118 public static DevicePolicyManager create(Context context) { method in class:DevicePolicyManager
2603 * to create a device PIN or Password. In this case, the storage is encrypted, but the
4827 * Called by a device owner to create a user with the specified name. The UserHandle returned
4847 * Called by a device owner to create a user with the specified name. The UserHandle returned
4893 * Called by a device owner to create a user with the specified name and a given component of
/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);
894 mAudioCaps = AudioCapabilities.create(info, this);
897 mVideoCaps = VideoCapabilities.create(info, this);
900 mEncoderCaps = EncoderCapabilities.create(info, this);
911 Range.create(
980 public static AudioCapabilities create( method in class:MediaCodecInfo.AudioCapabilities
1569 public static VideoCapabilities create( method in class:MediaCodecInfo.VideoCapabilities
2688 public static EncoderCapabilities create( method in class:MediaCodecInfo.EncoderCapabilities
[all...]
H A DMediaPlayer.java151 * of the overloaded convenient <code>create</code> methods are <em>NOT</em>
153 * state if the creation using <code>create</code> method is successful.
553 * associated with these listeners, applications are required to create
618 * Default constructor. Consider using one of the create() methods for
640 * It's easier to create it here than in C++.
815 * Convenience method to create a MediaPlayer for a given Uri.
829 public static MediaPlayer create(Context context, Uri uri) { method in class:MediaPlayer
830 return create (context, uri, null);
834 * Convenience method to create a MediaPlayer for a given Uri.
849 public static MediaPlayer create(Contex method in class:MediaPlayer
865 public static MediaPlayer create(Context context, Uri uri, SurfaceHolder holder, method in class:MediaPlayer
912 public static MediaPlayer create(Context context, int resid) { method in class:MediaPlayer
928 public static MediaPlayer create(Context context, int resid, method in class:MediaPlayer
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java301 openHelper = DeDatabaseHelper.create(context, userId, preNDbFile, deDbFile);
640 CeDatabaseHelper.create(mContext, userId, preNDatabaseFile, ceDatabaseFile);
2272 // If the caller doesn't have permission then create and return the
4171 // Check for use directory; create if it doesn't exist, else renameTo will fail
4617 static DeDatabaseHelper create( method in class:AccountManagerService.DeDatabaseHelper
4759 static CeDatabaseHelper create( method in class:AccountManagerService.CeDatabaseHelper
4766 Log.v(TAG, "CeDatabaseHelper.create userId=" + userId + " oldDbExists="
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java514 int pkgFlags, int pkgPrivateFlags, boolean create) {
517 if (!create) {
2796 // It's enough to just touch version details to create them
2969 "Unable to create application package for " + pp.name);
3975 // Need to create a data directory for all apps under this user. Accumulate all
513 getSharedUserLPw(String name, int pkgFlags, int pkgPrivateFlags, boolean create) argument
/frameworks/base/rs/java/android/renderscript/
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/audio/
H A DAudioService.java293 * NOTE: do not create loops in aliases!
2968 private ScoClient getScoClient(IBinder cb, boolean create) { argument
2977 if (create) {
/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.java1531 tf = Typeface.create(familyName, styleIndex);
1641 tf = Typeface.create(tf, style);
4279 * Sets the Factory used to create new Editables.
4287 * Sets the Factory used to create new Spannables.
5005 * @param create If true, the extras will be created if they don't already
5011 public Bundle getInputExtras(boolean create) { argument
5012 if (mEditor == null && !create) return null;
5015 if (!create) return null;
5019 if (!create) return null;
5374 // Do not create th
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2060 * Get the wakeup reason counter, and create a new one if one
2073 * Get the KernelWakelockTimer associated with name, and create a new one if one
7373 public StopwatchTimer getSensorTimerLocked(int sensor, boolean create) { argument
7376 if (!create) {
7476 // 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/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 5101 milliseconds

<<11