Searched defs:create (Results 51 - 64 of 64) sorted by relevance

123

/frameworks/base/awt/java/awt/
H A DGraphics.java74 public Graphics create(int x, int y, int width, int height) { method in class:Graphics
75 Graphics res = create();
397 public abstract Graphics create(); method in class:Graphics
/frameworks/base/core/jni/android/graphics/
H A DMatrix.cpp39 static SkMatrix* create(JNIEnv* env, jobject clazz, const SkMatrix* src) { function in class:android::SkMatrixGlue
364 {"native_create","(I)I", (void*) SkMatrixGlue::create},
/frameworks/base/graphics/java/android/renderscript/
H A DElement.java266 return b.create();
400 public Element create() { method in class:Element.Builder
H A DRenderScript.java294 public static RenderScript create() { method in class:RenderScript
/frameworks/base/core/java/android/content/
H A DIntentFilter.java321 public static IntentFilter create(String action, String dataType) { method in class:IntentFilter
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java109 * of the overloaded convenient <code>create</code> methods are <em>NOT</em>
111 * state if the creation using <code>create</code> method is successful.
491 * Default constructor. Consider using one of the create() methods for
509 * It's easier to create it here than in C++.
577 * Convenience method to create a MediaPlayer for a given Uri.
587 public static MediaPlayer create(Context context, Uri uri) { method in class:MediaPlayer
588 return create (context, uri, null);
592 * Convenience method to create a MediaPlayer for a given Uri.
603 public static MediaPlayer create(Context context, Uri uri, SurfaceHolder holder) { method in class:MediaPlayer
614 Log.d(TAG, "create faile
639 public static MediaPlayer create(Context context, int resid) { method in class:MediaPlayer
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java17 package com.android.tools.layoutlib.create;
/frameworks/base/awt/com/android/internal/awt/
H A DAndroidGraphics2D.java749 public Graphics create() { method in class:AndroidGraphics2D
1225 tf = Typeface.create(aF, Typeface.NORMAL);
1228 tf = Typeface.create(aF, Typeface.BOLD);
1231 tf = Typeface.create(aF, Typeface.ITALIC);
1234 tf = Typeface.create(aF, Typeface.BOLD_ITALIC);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java53 * <p>SQLiteDatabase has methods to create, delete, execute SQL commands, and
172 * Flag for {@link #openDatabase} to create the database file if it does not already exist.
245 /** The flags passed to open/create */
356 // Delete the corrupt file. Don't re-create it now -- that would just confuse people
806 * @param path to database file to open and/or create
865 public static SQLiteDatabase create(CursorFactory factory) { method in class:SQLiteDatabase
1796 * Private constructor. See {@link #create} and {@link #openDatabase}.
/frameworks/base/core/java/com/android/internal/widget/
H A DEditStyledText.java433 public Bundle getInputExtras(boolean create) { argument
437 Bundle bundle = super.getInputExtras(create);
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp257 sp<IMediaPlayer> MediaPlayerService::create( function in class:android::MediaPlayerService
275 sp<IMediaPlayer> MediaPlayerService::create(pid_t pid, const sp<IMediaPlayerClient>& client, function in class:android::MediaPlayerService
626 LOGD("create Antagonizer");
793 LOGV(" create PVPlayer");
798 LOGV(" create MidiFile");
802 LOGV(" create VorbisPlayer");
807 LOGV(" create StagefrightPlayer");
824 LOGE("Failed to create player object");
868 // create the right type of player
918 // create th
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java962 * Get the KernelWakelockTimer associated with name, and create a new one if one
2651 public StopwatchTimer getSensorTimerLocked(int sensor, boolean create) { argument
2654 if (!create) {
2696 // Don't create a timer if one doesn't already exist
/frameworks/base/core/java/android/widget/
H A DTextView.java961 tf = Typeface.create(tf, style);
2503 * Sets the Factory used to create new Editables.
2511 * Sets the Factory used to create new Spannables.
3199 * @param create If true, the extras will be created if they don't already
3205 public Bundle getInputExtras(boolean create) { argument
3207 if (!create) return null;
3211 if (!create) return null;
/frameworks/base/services/java/com/android/server/
H A DPackageManagerService.java2986 // Just create the setting, don't add it yet. For already existing packages
3200 Slog.w(TAG, "Unable to create data directory: " + dataPath);
3777 throw new IOException("Couldn't create cached binary "
4909 * policy if needed and then create install arguments based
5165 Slog.w(TAG, "Failed to create file " + codeFile);
5174 Slog.e(TAG, "Failed to create file descritpor for : " + codeFileName);
5487 // Utility method used to create code paths based on package name and available index.
5962 Slog.e(TAG, "Couldn't create a new zip file for the public parts of a" +
6079 Slog.e(TAG, "Couldn't create temp file for downloaded package file.");
7914 int pkgFlags, boolean create, boolea
7912 getPackageLP(PackageParser.Package pkg, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, int pkgFlags, boolean create, boolean add) argument
7962 getSharedUserLP(String name, int pkgFlags, boolean create) argument
8083 getPackageLP(String name, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, int vc, int pkgFlags, boolean create, boolean add) argument
[all...]

Completed in 364 milliseconds

123