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

12 3 4 5 6

  /cts/tests/tests/database/src/android/database/cts/
MatrixCursor_RowBuilderTest.java 49 assertTrue(cursor.isNull(COLUMN0_INDEX));
50 assertTrue(cursor.isNull(COLUMN1_INDEX));
51 assertTrue(cursor.isNull(COLUMN2_INDEX));
54 assertFalse(cursor.isNull(COLUMN0_INDEX));
56 assertTrue(cursor.isNull(COLUMN1_INDEX));
57 assertTrue(cursor.isNull(COLUMN2_INDEX));
60 assertFalse(cursor.isNull(COLUMN0_INDEX));
62 assertFalse(cursor.isNull(COLUMN1_INDEX));
64 assertTrue(cursor.isNull(COLUMN2_INDEX));
67 assertFalse(cursor.isNull(COLUMN0_INDEX))
    [all...]
  /external/clang/include/clang/Sema/
SemaFixItUtils.h 85 bool isNull() {
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptprogram_p.h 46 inline bool isNull() const;
85 if (!isNull()) {
91 bool QScriptProgramPrivate::isNull() const
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 67 bool isNull() const { return m_string.isNull(); }
SymbolTable.h 62 bool isNull() const
  /external/webkit/Source/WebCore/bindings/v8/
ScriptValue.h 113 bool isNull() const
115 return m_value->IsNull();
  /external/webkit/Source/WebCore/editing/
VisiblePosition.h 60 bool isNull() const { return m_deepPosition.isNull(); }
  /external/webkit/Source/WebKit/chromium/public/
WebBlobData.h 66 bool isNull() const { return !m_private; }
WebDOMEvent.h 66 bool isNull() const { return !m_private; }
WebDeviceOrientation.h 51 bool isNull() { return m_isNull; }
WebString.h 82 bool isNull() const { return !m_private; }
WebHTTPBody.h 74 bool isNull() const { return !m_private; }
WebURL.h 104 bool isNull() const
131 return isNull() ? GURL() : GURL(m_spec.data(), m_spec.length(), m_parsed, m_isValid);
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.h 58 bool isNull() const { return m_handle.isNull(); }
WebString.h 58 bool isNull() const { return m_string.isNull(); }
  /external/clang/include/clang/AST/
DeclContextInternals.h 63 bool isNull() const { return Data.isNull(); }
83 assert(!isNull() && "removing from empty list");
103 if (isNull())
109 assert(!isNull() && "Empty list isn't allowed");
  /external/icu4c/common/unicode/
localpointer.h 83 UBool isNull() const { return ptr==NULL; }
  /external/webkit/Source/WebCore/bindings/js/
ScriptValue.cpp 76 bool ScriptValue::isNull() const
80 return m_value.get().isNull();
120 if (value.isNull() || value.isUndefined())
  /external/webkit/Source/WebCore/dom/
Attribute.h 68 bool isNull() const { return m_value.isNull(); }
  /external/webkit/Source/WebCore/page/
SpatialNavigation.h 118 bool isNull() const { return !visibleNode; }
  /external/webkit/Source/WebCore/platform/network/
ResourceErrorBase.h 42 bool isNull() const { return m_isNull; }
  /external/webkit/Source/WebKit2/Platform/mac/
SharedMemoryMac.cpp 52 bool SharedMemory::Handle::isNull() const
136 if (handle.isNull())
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 60 if (!isNull())
64 bool SharedMemory::Handle::isNull() const
71 ASSERT(!isNull());
79 ASSERT_ARG(handle, handle.isNull());
91 ASSERT(!isNull());
101 ASSERT(isNull());
170 ASSERT(!handle.isNull());
206 ASSERT_ARG(handle, handle.isNull());
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 49 bool SharedMemory::Handle::isNull() const
  /packages/apps/Contacts/src/com/android/contacts/util/
DataStatus.java 56 final boolean hasStatus = !isNull(cursor, Data.STATUS);
57 final boolean hasTimestamp = !isNull(cursor, Data.STATUS_TIMESTAMP);
154 return cursor.isNull(columnIndex) ? missingValue : cursor.getInt(columnIndex);
159 return cursor.isNull(columnIndex) ? missingValue : cursor.getLong(columnIndex);
162 private static boolean isNull(Cursor cursor, String columnName) {
163 return cursor.isNull(cursor.getColumnIndex(columnName));

Completed in 1037 milliseconds

12 3 4 5 6