Lines Matching defs:factory

90     // The optional factory to use when creating new Cursors.  May be null.
664 * @param factory an optional factory class that is called to instantiate a
670 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) {
671 return openDatabase(path, factory, flags, null);
685 * @param factory an optional factory class that is called to instantiate a
693 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,
695 SQLiteDatabase db = new SQLiteDatabase(path, flags, factory, errorHandler);
701 * Equivalent to openDatabase(file.getPath(), factory, CREATE_IF_NECESSARY).
703 public static SQLiteDatabase openOrCreateDatabase(File file, CursorFactory factory) {
704 return openOrCreateDatabase(file.getPath(), factory);
708 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
710 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory) {
711 return openDatabase(path, factory, CREATE_IF_NECESSARY, null);
715 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler).
717 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory,
719 return openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler);
824 * @param factory an optional factory class that is called to instantiate a
828 public static SQLiteDatabase create(CursorFactory factory) {
831 factory, CREATE_IF_NECESSARY);
1084 * @param cursorFactory the cursor factory to use, or null for the default factory
1124 * @param cursorFactory the cursor factory to use, or null for the default factory
1281 * @param cursorFactory the cursor factory to use, or null for the default factory
1299 * @param cursorFactory the cursor factory to use, or null for the default factory