Searched refs:isNull (Results 1 - 25 of 41) sorted by path

12

/frameworks/base/core/java/android/database/
H A DAbstractCursor.java89 abstract public boolean isNull(int column); method in class:AbstractCursor
H A DAbstractWindowedCursor.java91 public boolean isNull(int columnIndex) { method in class:AbstractWindowedCursor
H A DCursor.java343 boolean isNull(int columnIndex); method in interface:Cursor
H A DCursorWindow.java289 public boolean isNull(int row, int column) { method in class:CursorWindow
H A DCursorWrapper.java149 public boolean isNull(int columnIndex) { method in class:CursorWrapper
150 return mCursor.isNull(columnIndex);
H A DDatabaseUtils.java636 if (!cursor.isNull(colIndex)) {
666 if (!cursor.isNull(colIndex)) {
697 if (!cursor.isNull(colIndex)) {
889 if (index != -1 && !cursor.isNull(index)) {
905 if (index != -1 && !cursor.isNull(index)) {
921 if (index != -1 && !cursor.isNull(index)) {
937 if (index != -1 && !cursor.isNull(index)) {
953 if (index != -1 && !cursor.isNull(index)) {
969 if (index != -1 && !cursor.isNull(index)) {
H A DMatrixCursor.java311 public boolean isNull(int column) { method in class:MatrixCursor
H A DMergeCursor.java137 public boolean isNull(int column) method in class:MergeCursor
139 return mCursor.isNull(column);
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java226 public boolean isNull(int column) method in class:SortCursor
228 return mCursor.isNull(column);
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java188 assertTrue(c.isNull(numCol));
H A DMatrixCursorTest.java36 assertTrue(cursor.isNull(0));
/frameworks/base/libs/input/
H A DSpriteController.h79 return !bitmap.isNull() && !bitmap.empty();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DFilteringCursorWrapper.java133 public boolean isNull(int column) { method in class:FilteringCursorWrapper
134 return mCursor.isNull(column);
H A DRootCursorWrapper.java134 public boolean isNull(int column) { method in class:RootCursorWrapper
135 return mCursor.isNull(column);
H A DSortingCursorWrapper.java163 public boolean isNull(int column) { method in class:SortingCursorWrapper
164 return mCursor.isNull(column);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java546 if (td.isNull()) { // end sentinel
571 if (td.isNull()) { // end sentinel
H A DTaskDescription.java70 public boolean isNull() { method in class:TaskDescription
/frameworks/base/services/core/java/com/android/server/firewall/
H A DStringFilter.java35 private static final String ATTR_IS_NULL = "isNull";
69 // if there are no string filter attributes, we default to isNull="false" so that an
219 public IsNullFilter(ValueProvider valueProvider, boolean isNull) { argument
221 mIsNull = isNull;
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java62 public boolean isNull(int columnIndex) { method in class:MockCursor
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerEntry.java248 if (!cursor.isNull(colIndex)) {
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h65 bool isNull() const { return (this == Null()); } function in class:mcld::FragmentRef
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h57 bool isNull() const;
H A DResolveInfo.h148 bool isNull() const;
/frameworks/compile/mclinker/lib/LD/
H A DLDSymbol.cpp94 bool LDSymbol::isNull() const function in class:LDSymbol
101 return !m_pFragRef->isNull();
H A DResolveInfo.cpp145 bool ResolveInfo::isNull() const function in class:ResolveInfo
288 if (pInfo->isNull())

Completed in 396 milliseconds

12