Searched defs:create (Results 176 - 200 of 317) sorted by relevance

1234567891011>>

/frameworks/support/compat/java/android/support/v4/widget/
H A DScrollerCompat.java40 public static ScrollerCompat create(Context context) { method in class:ScrollerCompat
41 return create(context, null);
48 public static ScrollerCompat create(Context context, Interpolator interpolator) { method in class:ScrollerCompat
/frameworks/support/core-utils/java/android/support/v4/app/
H A DTaskStackBuilder.java120 public static TaskStackBuilder create(Context context) { method in class:TaskStackBuilder
131 * @deprecated use {@link #create(Context)} instead
135 return create(context);
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DMetadataRepo.java81 * Private constructor that is called by one of {@code create} methods.
102 public static MetadataRepo create(@NonNull final Typeface typeface, method in class:MetadataRepo
114 public static MetadataRepo create(@NonNull final Typeface typeface, method in class:MetadataRepo
126 public static MetadataRepo create(@NonNull final AssetManager assetManager, method in class:MetadataRepo
/frameworks/support/persistence/db/src/main/java/android/arch/persistence/db/
H A DSupportSQLiteOpenHelper.java36 * uses {@link Factory#create(Configuration)} to create this and {@link Callback} to implement
169 * you can use ALTER TABLE to rename the old table, then create the new table and then
298 * The configuration to create an SQLite open helper object using {@link Factory}.
303 * Context to use to open or create the database.
325 * Creates a new Configuration.Builder to create an instance of Configuration.
327 * @param context to use to open or create the database.
343 throw new IllegalArgumentException("Must set a callback to create the"
347 throw new IllegalArgumentException("Must set a non-null context to create"
378 * Factory class to create instance
389 SupportSQLiteOpenHelper create(Configuration configuration); method in interface:SupportSQLiteOpenHelper.Factory
[all...]
H A DSupportSQLiteQueryBuilder.java22 * A simple query builder to create SQL SELECT queries.
44 * @return A builder to create a query.
148 public SupportSQLiteQuery create() { method in class:SupportSQLiteQueryBuilder
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp36 extern "C" IDrmEngine* create() { function
/frameworks/av/media/libaudioprocessing/
H A DAudioResampler.cpp150 AudioResampler* AudioResampler::create(audio_format_t format, int inChannelCount, function in class:android::AudioResampler
/frameworks/base/core/java/android/hardware/
H A DHardwareBuffer.java127 public static HardwareBuffer create(int width, int height, @Format int format, int layers, method in class:HardwareBuffer
146 throw new IllegalArgumentException("Unable to create a HardwareBuffer, either the " +
154 * Private use only. See {@link #create(int, int, int, int, long)}. May also be
321 * See {@link #create(int, int, int, int, long)}.
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTvClient.java52 /* package */ static HdmiTvClient create(IHdmiControlService service) { method in class:HdmiTvClient
318 * // create timer info
322 * // create timer recording source.
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java237 public void create(int sockType) throws IOException { method in class:LocalSocketImpl
/frameworks/base/core/java/android/os/
H A DCommonClock.java126 static public CommonClock create() { method in class:CommonClock
274 * restore functionality, clients should {@link #release()} their old visualizer and create
H A DSharedMemory.java50 "Unable to create SharedMemory from a null FileDescriptor");
54 "Unable to create SharedMemory from closed FileDescriptor");
63 mCleaner = Cleaner.create(mFileDescriptor,
76 * @param size The size of the shared memory to create. Must be greater than 0.
80 public static @NonNull SharedMemory create(@Nullable String name, int size) method in class:SharedMemory
116 * that first create the read/write mapping with PROT_READ | PROT_WRITE,
/frameworks/base/core/java/com/android/internal/content/
H A DNativeLibraryHelper.java81 public static Handle create(File packageFile) throws IOException { method in class:NativeLibraryHelper.Handle
84 return create(lite);
90 public static Handle create(Package pkg) throws IOException { method in class:NativeLibraryHelper.Handle
91 return create(pkg.getAllCodePaths(),
97 public static Handle create(PackageLite lite) throws IOException { method in class:NativeLibraryHelper.Handle
98 return create(lite.getAllCodePaths(), lite.multiArch, lite.extractNativeLibs,
102 private static Handle create(List<String> codePaths, boolean multiArch, method in class:NativeLibraryHelper.Handle
277 throw new IOException("Cannot create " + path.getPath());
/frameworks/base/core/jni/android/graphics/
H A DPathMeasure.cpp55 static jlong create(JNIEnv* env, jobject clazz, jlong pathHandle, function in class:android::SkPathMeasureGlue
147 {"native_create", "(JZ)J", (void*) SkPathMeasureGlue::create },
H A DYuvToJpegEncoder.cpp11 YuvToJpegEncoder* YuvToJpegEncoder::create(int format, int* strides) { function in class:YuvToJpegEncoder
230 YuvToJpegEncoder* encoder = YuvToJpegEncoder::create(format, imgStrides);
/frameworks/base/graphics/java/android/graphics/
H A DGraphicBuffer.java76 public static GraphicBuffer create(int width, int height, int format, int usage) { method in class:GraphicBuffer
85 * Private use only. See {@link #create(int, int, int, int)}.
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfDocument.java35 * create a new document and then for every page you want to add you start a page,
46 * // create a new document
50 * PageInfo pageInfo = new PageInfo.Builder(new Rect(0, 0, 100, 100), 1).create();
369 public PageInfo create() { method in class:PdfDocument.PageInfo.Builder
/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp44 status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) { function in class:android::CursorWindow
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.h56 * Note that unlike create, for alloc the type is purely for compile-time error
62 "Error, type is non-trivial! did you mean to use create()?");
71 T* create(Params&&... params) { function in class:android::uirenderer::LinearAllocator
/frameworks/base/media/java/android/media/soundtrigger/
H A DSoundTriggerManager.java117 * @param soundModelId UUID of the sound model to create the receiver object for.
144 * factory constructor {@link Model#create()} to create an instance.
160 * Factory constructor to create a SoundModel instance for use with methods in this
163 public static Model create(UUID modelUuid, UUID vendorUuid, byte[] data) { method in class:SoundTriggerManager.Model
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DCustomTile.java351 public static QSTile create(QSTileHost host, String spec) { method in class:CustomTile
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DIntentTile.java67 public static QSTile create(QSHost host, String spec) { method in class:IntentTile
/frameworks/base/rs/java/android/renderscript/
H A DSampler.java109 rs.mSampler_CLAMP_NEAREST = b.create();
133 rs.mSampler_CLAMP_LINEAR = b.create();
157 rs.mSampler_CLAMP_LINEAR_MIP_LINEAR = b.create();
181 rs.mSampler_WRAP_NEAREST = b.create();
205 rs.mSampler_WRAP_LINEAR = b.create();
229 rs.mSampler_WRAP_LINEAR_MIP_LINEAR = b.create();
253 rs.mSampler_MIRRORED_REPEAT_NEAREST = b.create();
277 rs.mSampler_MIRRORED_REPEAT_LINEAR = b.create();
301 rs.mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR = b.create();
374 public Sampler create() { method in class:Sampler.Builder
[all...]
H A DScriptIntrinsicBlend.java36 public static ScriptIntrinsicBlend create(RenderScript rs, Element e) { method in class:ScriptIntrinsicBlend
H A DType.java437 * Validate structure and create a new Type.
441 public Type create() { method in class:Type.Builder

Completed in 742 milliseconds

1234567891011>>