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

1 2 34 5 6

  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 82 public int isNull()
430 return -isNull();
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptvalue/
tst_qscriptvalue.cpp 61 void isNull();
233 void tst_QScriptValue::isNull()
237 value.isNull();
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 123 bool isNull() const { return !m_impl; }
387 inline bool operator!(const String& str) { return str.isNull(); }
  /external/webkit/Source/WebCore/inspector/
InspectorValues.h 70 bool isNull() const { return m_type == TypeNull; }
  /external/webkit/Source/WebCore/platform/
KURL.h 116 bool isNull() const;
337 inline bool KURL::isNull() const
339 return m_string.isNull();
  /external/webkit/Source/WebCore/platform/graphics/
Image.h 96 bool isNull() const { return size().isEmpty(); }
  /external/webkit/Source/WebCore/platform/network/
ResourceRequestBase.cpp 110 bool ResourceRequestBase::isNull() const
114 return m_url.isNull();
281 if (!encoding1.isNull())
283 if (!encoding2.isNull())
285 if (!encoding3.isNull())
  /external/webkit/Source/WebKit/chromium/src/
WebURLRequest.cpp 82 bool WebURLRequest::isNull() const
84 return !m_private || m_private->m_resourceRequest->isNull();
WebURLResponse.cpp 86 bool WebURLResponse::isNull() const
88 return !m_private || m_private->m_resourceResponse->isNull();
224 if (name.isNull() || value.isNull())
  /frameworks/base/core/java/android/database/
Cursor.java 338 boolean isNull(int columnIndex);
CursorWrapper.java 149 public boolean isNull(int columnIndex) {
150 return mCursor.isNull(columnIndex);
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 226 public boolean isNull(int column)
228 return mCursor.isNull(column);
  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 64 public boolean isNull(int columnIndex) {
  /libcore/json/src/main/java/org/json/
JSONArray.java 243 public boolean isNull(int index) {
JSONObject.java 333 public boolean isNull(String name) {
  /libcore/luni/src/main/java/java/util/
WeakHashMap.java 60 boolean isNull;
72 isNull = key == null;
73 hash = isNull ? 0 : key.hashCode();
130 if (nextEntry != null && (nextKey != null || nextEntry.isNull)) {
146 if (nextKey != null || nextEntry.isNull) {
322 if (key != null || entry.isNull) {
487 if (entry.isNull) {
510 if (entry.isNull) {
534 if ((key != null || entry.isNull)
546 if ((key != null || entry.isNull) && entry.value == null)
    [all...]
  /packages/apps/Music/src/com/android/music/
SortCursor.java 226 public boolean isNull(int column)
228 return mCursor.isNull(column);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorBackedCursor.java 170 public boolean isNull(int column) {
  /external/clang/include/clang/AST/
CanonicalType.h 84 operator bool() const { return !isNull(); }
86 bool isNull() const {
87 return Stored.isNull();
735 assert((Other.isNull() || Other.isCanonical()) && "Type is not canonical!");
736 assert((Other.isNull() || isa<T>(Other.getTypePtr())) &&
746 if (Stored.isNull())
TemplateBase.h 234 bool isNull() const { return Kind == Null; }
  /external/skia/include/core/
SkBitmap.h 101 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; }
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 246 bool isNull() { return !m_sample; }
  /packages/apps/Browser/src/com/android/browser/search/
OpenSearchSearchEngine.java 288 public boolean isNull(int column) {
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageOrderManagerTest.java 398 @Override public boolean isNull(int column) {
  /cts/tests/tests/database/src/android/database/cts/
AbstractWindowedCursorTest.java 59 method = "isNull",
67 assertTrue(mCursor.isNull(COLUMN_INDEX0));
72 assertFalse(mCursor.isNull(COLUMN_INDEX0));

Completed in 877 milliseconds

1 2 34 5 6