Home
last modified time | relevance | path

Searched refs:NOT_NULL_CONSTRAINT (Results 1 – 4 of 4) sorted by relevance

/packages/modules/HealthFitness/tests/cts/hostsidetests/healthconnect/host/src/android/healthconnect/cts/database/
DHealthConnectDatabaseUnitTest.java84 .addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT) in test_column_matches()
92 .addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT) in test_column_matches()
100 .addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT) in test_column_matches()
107 .addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT) in test_column_matches()
132 .addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT) in test_column_matches()
DColumnInfo.java39 @IntDef({UNIQUE_CONSTRAINT, NOT_NULL_CONSTRAINT, AUTO_INCREMENT_CONSTRAINT})
44 public static final int NOT_NULL_CONSTRAINT = 1; field in ColumnInfo
DHealthConnectDatabaseSchemaParser.java148 col.addConstraint(ColumnInfo.NOT_NULL_CONSTRAINT); in getTableInfo()
DDatabaseTestUtils.java307 if (columnInfo.getConstraints().contains(ColumnInfo.NOT_NULL_CONSTRAINT)) { in checkColumnModification()