Searched defs:isNull (Results 76 - 100 of 155) sorted by relevance

1234567

/external/proguard/src/proguard/evaluation/value/
H A DReferenceValue.java82 public int isNull() method in class:ReferenceValue
444 return -isNull();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteCursor.java190 public boolean isNull(int columnIndex) { method in class:ShadowSQLiteCursor
H A DShadowCursorWrapper.java144 public boolean isNull(int i) { method in class:ShadowCursorWrapper
145 return wrappedCursor.isNull(i);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAbstractCursorTest.java274 public boolean isNull(int columnIndex) { method in class:AbstractCursorTest.TestCursor
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DTestContentProvider.java118 public boolean isNull(int columnIndex) { method in class:TestContentProvider.ProviderStateCursor
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
H A DSQLiteCursor.java91 public boolean isNull(int column) { method in class:SQLiteCursor
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationNode.h52 static inline bool isNull(double value) function in namespace:blink
113 double localTime(bool& isNull) const { isNull = !m_player; return ensureCalculated().localTime * 1000; }
114 double currentIteration(bool& isNull) const { isNull = !ensureCalculated().isInEffect; return ensureCalculated().currentIteration; }
H A DAnimationTimeline.cpp178 double AnimationTimeline::currentTime(bool& isNull) argument
180 return currentTimeInternal(isNull) * 1000;
183 double AnimationTimeline::currentTimeInternal(bool& isNull) argument
186 isNull = true;
190 isNull = std::isnan(result);
201 bool isNull; local
202 return currentTimeInternal(isNull);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.h143 bool isNull() const { return !m_anchorNode; } function in class:blink::Position
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DTraceEventDispatcher.h90 bool isNull() const { return !m_name; } function in class:blink::TraceEventDispatcher::TraceEvent
/external/chromium_org/third_party/WebKit/Source/platform/
H A DJSONValues.h70 bool isNull() const { return m_type == TypeNull; } function in class:blink::JSONValue
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImage.h77 bool isNull() const { return size().isEmpty(); } function in class:blink::Image
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceRequest.cpp96 bool ResourceRequest::isNull() const function in class:blink::ResourceRequest
98 return m_url.isNull();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFunctional.h1035 bool isNull() const function in class:WTF::FunctionBase
1076 ASSERT(!isNull());
1095 ASSERT(!isNull());
1114 ASSERT(!isNull());
1133 ASSERT(!isNull());
1152 ASSERT(!isNull());
1171 ASSERT(!isNull());
1190 ASSERT(!isNull());
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.h135 bool isNull() const { return m_string.isNull(); } function in class:WTF::AtomicString
/external/clang/lib/CodeGen/
H A DCGCall.h165 bool isNull() const { return !getValue(); } function in class:clang::CodeGen::ReturnValueSlot
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java379 public boolean isNull(int index) { method in class:JSONArray
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java71 public static <T> Predicate<T> isNull() { method in class:Predicates
176 ? Predicates.<T>isNull()
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java68 public static <T> Predicate<T> isNull() { method in class:Predicates
173 ? Predicates.<T>isNull()
/external/llvm/include/llvm/ADT/
H A DPointerUnion.h107 /// isNull - Return true if the pointer held in the union is null,
109 bool isNull() const {
114 LLVM_EXPLICIT operator bool() const { return !isNull(); }
271 /// isNull - Return true if the pointer held in the union is null,
273 bool isNull() const { return Val.isNull(); } function in class:llvm::PointerUnion3
274 LLVM_EXPLICIT operator bool() const { return !isNull(); }
385 /// isNull - Return true if the pointer held in the union is null,
387 bool isNull() const { return Val.isNull(); } function in class:llvm::PointerUnion4
[all...]
H A DTwine.h189 /// isNull - Check for the null twine.
190 bool isNull() const { function in class:llvm::Twine
201 return isNull() || isEmpty();
475 if (isNull() || Suffix.isNull())
/external/mockito/src/org/mockito/
H A DMatchers.java641 public static Object isNull() { method in class:Matchers
654 public static <T> T isNull(Class<T> clazz) { method in class:Matchers
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DTestCursor.java138 public boolean isNull(int columnIndex) { method in class:TestCursor
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLRequest.cpp102 bool WebURLRequest::isNull() const function in class:blink::WebURLRequest
104 return !m_private || m_private->m_resourceRequest->isNull();
/external/clang/include/clang/AST/
H A DTemplateName.h220 bool isNull() const { return Storage.isNull(); } function in class:clang::TemplateName

Completed in 755 milliseconds

1234567