Searched defs:isNull (Results 51 - 75 of 155) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DSpatialNavigation.h113 bool isNull() const { return !visibleNode; } function in struct:blink::FocusCandidate
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCryptoAlgorithm.cpp256 bool WebCryptoAlgorithm::isNull() const function in class:blink::WebCryptoAlgorithm
258 return m_private.isNull();
263 ASSERT(!isNull());
269 ASSERT(!isNull());
277 ASSERT(!isNull());
285 ASSERT(!isNull());
293 ASSERT(!isNull());
301 ASSERT(!isNull());
309 ASSERT(!isNull());
317 ASSERT(!isNull());
[all...]
H A DWebCryptoKeyAlgorithm.cpp91 bool WebCryptoKeyAlgorithm::isNull() const function in class:blink::WebCryptoKeyAlgorithm
93 return m_private.isNull();
98 ASSERT(!isNull());
104 ASSERT(!isNull());
112 ASSERT(!isNull());
120 ASSERT(!isNull());
128 ASSERT(!isNull());
136 ASSERT(!isNull());
H A DWebImageSkia.cpp142 bool WebImage::isNull() const function in class:blink::WebImage
144 return m_bitmap.isNull();
H A DWebPrerender.cpp80 bool WebPrerender::isNull() const function in class:blink::WebPrerender
82 return m_private.isNull();
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceError.h65 bool isNull() const { return m_isNull; } function in class:blink::ResourceError
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCString.h90 bool isNull() const { return m_private.isNull(); } function in class:blink::WebCString
H A DWebDragData.h97 bool isNull() const { return m_private.isNull(); } function in class:blink::WebDragData
H A DWebHTTPBody.h76 bool isNull() const { return !m_private; } function in class:blink::WebHTTPBody
H A DWebMediaStreamSource.h88 bool isNull() const { return m_private.isNull(); } function in class:blink::WebMediaStreamSource
H A DWebString.h90 bool isNull() const { return m_private.isNull(); } function in class:blink::WebString
166 return base::NullableString16(operator base::string16(), m_private.isNull());
H A DWebURL.h99 bool isNull() const function in class:blink::WebURL
126 return isNull() ? GURL() : GURL(m_string.utf8(), m_parsed, m_isValid);
H A DWebPrivatePtr.h208 bool isNull() const { return !m_storage; } function in class:blink::WebPrivatePtr
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDOMEvent.h68 bool isNull() const { return m_private.isNull(); } function in class:blink::WebDOMEvent
H A DWebNode.h74 bool isNull() const { return m_private.isNull(); } function in class:blink::WebNode
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dlocalpointer.h83 UBool isNull() const { return ptr==NULL; } function in class:LocalPointerBase
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DConstraintManager.h124 ConditionTruthVal isNull(ProgramStateRef State, SymbolRef Sym) { function in class:clang::ento::ConstraintManager
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java87 public static void isNull(Object object) { method in class:Assert
88 isNull(object, ""); //$NON-NLS-1$
101 public static void isNull(Object object, String message) { method in class:Assert
121 public static void isNull(Object object, String errorFormat, Object... args) { method in class:Assert
/external/icu/icu4c/source/common/unicode/
H A Dlocalpointer.h83 UBool isNull() const { return ptr==NULL; } function in class:LocalPointerBase
/external/mockito/src/org/mockito/internal/util/reflection/
H A DInstanceField.java59 public boolean isNull() { method in class:InstanceField
60 return reader().isNull();
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProviderSuggestionsCursor.java89 public boolean isNull(int c) { method in class:ChromeBrowserProviderSuggestionsCursor
90 return mCursor.isNull(c);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationTimelineTest.cpp176 bool isNull; local
180 EXPECT_EQ(100, timeline->currentTimeInternal(isNull));
181 EXPECT_FALSE(isNull);
185 EXPECT_EQ(200, timeline->currentTimeInternal(isNull));
186 EXPECT_FALSE(isNull);
/external/clang/include/clang/AST/
H A DDeclContextInternals.h67 bool isNull() const { return Data.isNull(); } function in struct:clang::StoredDeclsList
106 assert(!isNull() && "removing from empty list");
126 if (isNull()) {
144 if (isNull())
150 assert(!isNull() && "Empty list isn't allowed");
193 assert(!isNull() && "don't AddSubsequentDecl when we have no decls");
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h95 bool isNull() const { return !Value; } function in class:clang::ast_matchers::dynamic::VariantMatcher
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAlignedBox.h56 inline bool isNull() const { return (m_min.cwise() > m_max).any(); } function in class:Eigen::AlignedBox

Completed in 9358 milliseconds

1234567