Searched defs:isNull (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/syncml/pim/vcalendar/
H A DVCalComposer.java66 if(!isNull(struct.timezone)){
99 if(!isNull(stru.uid))
102 if(!isNull(stru.description))
106 if(!isNull(stru.dtend))
109 if(!isNull(stru.dtstart))
112 if(!isNull(stru.duration))
115 if(!isNull(stru.event_location))
118 if(!isNull(stru.last_date))
121 if(!isNull(stru.rrule))
124 if(!isNull(str
184 private boolean isNull(String str){ method in class:VCalComposer
[all...]
/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java142 public boolean isNull(int columnIndex) method in class:AbstractWindowedCursor
152 return mWindow.isNull(mPos, columnIndex);
H A DMatrixCursor.java275 public boolean isNull(int column) { method in class:MatrixCursor
H A DMergeCursor.java158 public boolean isNull(int column) method in class:MergeCursor
160 return mCursor.isNull(column);
H A DCursor.java300 boolean isNull(int columnIndex); method in interface:Cursor
H A DCursorWindow.java221 public boolean isNull(int row, int col) { method in class:CursorWindow
H A DCursorWrapper.java174 public boolean isNull(int columnIndex) { method in class:CursorWrapper
175 return mCursor.isNull(columnIndex);
H A DAbstractCursor.java57 abstract public boolean isNull(int column); method in class:AbstractCursor
/frameworks/base/core/java/com/android/internal/database/
H A DArrayListCursor.java168 public boolean isNull(int columnIndex) { method in class:ArrayListCursor
H A DSortCursor.java239 public boolean isNull(int column) method in class:SortCursor
241 return mCursor.isNull(column);
/frameworks/base/core/java/android/syncml/pim/vcard/
H A DVCardComposer.java119 if (!isNull(struct.name)) {
123 if (!isNull(struct.company)) {
127 if (struct.notes.size() > 0 && !isNull(struct.notes.get(0))) {
132 if (!isNull(struct.title)) {
201 if (isNull(type) || type.toUpperCase().indexOf("JPEG") >= 0) {
229 private boolean isNull(String str) { method in class:VCardComposer
262 if (!isNull(phone.data)) {
317 if (!isNull(contactMethod.data)) {
333 if (!isNull(contactMethod.data)) {
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp447 bool isNull; local
448 if (window->getNull(row, column, &isNull)) {
449 return isNull;

Completed in 104 milliseconds