HomeSort by relevance Sort by last modified time
    Searched defs:isNull (Results 51 - 75 of 144) sorted by null

1 23 4 5 6

  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionProviderCursor.java 86 public boolean isNull(int column) {
87 return mRows.get(getPosition()).isNull(column);
150 public boolean isNull(int column) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DataStatus.java 54 final boolean hasStatus = !isNull(cursor, Data.STATUS);
55 final boolean hasTimestamp = !isNull(cursor, Data.STATUS_TIMESTAMP);
148 return cursor.isNull(columnIndex) ? missingValue : cursor.getInt(columnIndex);
153 return cursor.isNull(columnIndex) ? missingValue : cursor.getLong(columnIndex);
156 private static boolean isNull(Cursor cursor, String columnName) {
157 return cursor.isNull(cursor.getColumnIndex(columnName));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ReorderingCursorWrapper.java 102 public boolean isNull(int column) {
103 return mCursor.isNull(column);
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursor_SelfContentObserverTest.java 123 public boolean isNull(int column) {
MatrixCursorTest.java 80 method = "isNull",
90 assertTrue(mMatrixCursor.isNull(COLUMN0_INDEX));
91 assertTrue(mMatrixCursor.isNull(COLUMN1_INDEX));
92 assertTrue(mMatrixCursor.isNull(COLUMN2_INDEX));
95 assertFalse(mMatrixCursor.isNull(COLUMN0_INDEX));
97 assertTrue(mMatrixCursor.isNull(COLUMN1_INDEX));
98 assertTrue(mMatrixCursor.isNull(COLUMN2_INDEX));
101 assertFalse(mMatrixCursor.isNull(COLUMN0_INDEX));
103 assertFalse(mMatrixCursor.isNull(COLUMN1_INDEX));
105 assertTrue(mMatrixCursor.isNull(COLUMN2_INDEX))
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalue.cpp 277 bool QScriptValue::isNull() const
279 return d_ptr->isNull();
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue_generated_istype.cpp 402 void tst_QScriptValue::isNull()
406 QCOMPARE(value.isNull(), expected);
407 QCOMPARE(value.isNull(), expected);
  /external/webkit/Source/JavaScriptCore/runtime/
JSValueInlineMethods.h 269 inline bool JSValue::isNull() const
276 return isUndefined() || isNull();
420 inline bool JSValue::isNull() const
UString.h 60 bool isNull() const { return !m_impl; }
WriteBarrier.h 136 bool isNull() const { return get().isNull(); }
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.h 93 bool isNull() const { return m_string.isNull(); }
  /external/webkit/Source/WebCore/dom/
Position.h 118 bool isNull() const { return !m_anchorNode; }
  /external/webkit/Source/WebCore/platform/network/
ResourceResponseBase.h 56 bool isNull() const { return m_isNull; }
  /external/webkit/Source/WebKit/chromium/public/
WebNode.h 68 bool isNull() const { return m_private.isNull(); }
  /external/webkit/Source/WebKit/qt/Api/
qwebplugindatabase.cpp 168 bool QWebPluginInfo::isNull() const
  /frameworks/base/core/java/android/database/
AbstractWindowedCursor.java 91 public boolean isNull(int columnIndex) {
MatrixCursor.java 286 public boolean isNull(int column) {
MergeCursor.java 137 public boolean isNull(int column)
139 return mCursor.isNull(column);
  /libcore/luni/src/test/java/tests/api/javax/security/auth/
X500PrincipalTest.java 75 InputStream isNull = null;
87 X500Principal xpr = new X500Principal(isNull);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
ExtendedCursor.java 117 public boolean isNull(int column) {
121 return mCursor.isNull(column);
  /external/clang/include/clang/AST/
TemplateName.h 219 bool isNull() const { return Storage.isNull(); }
  /external/clang/lib/CodeGen/
CGCall.h 219 bool isNull() const { return !getValue(); }
  /external/easymock/src/org/easymock/
EasyMock.java     [all...]
  /external/guava/src/com/google/common/base/
Predicates.java 71 public static <T> Predicate<T> isNull() {
177 ? Predicates.<T>isNull()
403 /** @see Predicates#isNull() */
412 return "IsNull";
  /external/llvm/include/llvm/ADT/
Twine.h 184 /// isNull - Check for the null twine.
185 bool isNull() const {
196 return isNull() || isEmpty();
470 if (isNull() || Suffix.isNull())

Completed in 3406 milliseconds

1 23 4 5 6