Searched refs:isNull (Results 101 - 125 of 965) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionEvent.cpp96 double DeviceMotionEvent::interval(bool& isNull) const
101 isNull = true;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamEvent.cpp75 MediaStream* MediaStreamEvent::stream(bool& isNull) const
77 isNull = !m_stream;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebPrerender.cpp80 bool WebPrerender::isNull() const function in class:blink::WebPrerender
82 return m_private.isNull();
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebArrayBuffer.h67 bool isNull() const { return m_private.isNull(); } function in class:blink::WebArrayBuffer
H A DWebData.h79 bool isNull() const { return m_private.isNull(); } function in class:blink::WebData
H A DWebDragData.h97 bool isNull() const { return m_private.isNull(); } function in class:blink::WebDragData
H A DWebMediaStream.h63 bool isNull() const { return m_private.isNull(); } function in class:blink::WebMediaStream
H A DWebMediaStreamSource.h88 bool isNull() const { return m_private.isNull(); } function in class:blink::WebMediaStreamSource
H A DWebMediaStreamTrack.h72 bool isNull() const { return m_private.isNull(); } function in class:blink::WebMediaStreamTrack
H A DWebURLLoadTiming.h58 bool isNull() const { return m_private.isNull(); } function in class:blink::WebURLLoadTiming
/external/chromium_org/third_party/WebKit/public/web/
H A DWebBlob.h75 bool isNull() const { return m_private.isNull(); } function in class:blink::WebBlob
H A DWebDOMFileSystem.h102 bool isNull() const { return m_private.isNull(); } function in class:blink::WebDOMFileSystem
H A DWebSerializedScriptValue.h70 bool isNull() const { return m_private.isNull(); } function in class:blink::WebSerializedScriptValue
H A DWebUserMediaRequest.h61 bool isNull() const { return m_private.isNull(); } function in class:blink::WebUserMediaRequest
/external/clang/lib/StaticAnalyzer/Checkers/
H A DSelectorExtras.h50 if (!Sel.isNull())
60 if (!Sel.isNull())
H A DReturnUndefChecker.cpp58 if (!RT.isNull() && RT->isVoidType())
64 if (RT.isNull() && isa<BlockDecl>(SFC->getDecl()) &&
72 if (RT.isNull())
/external/mockito/src/org/mockito/internal/util/reflection/
H A DInstanceField.java59 public boolean isNull() { method in class:InstanceField
60 return reader().isNull();
/external/guava/guava-tests/test/com/google/common/base/
H A DEquivalenceTest.java120 Predicate<Object> isNull = Equivalences.equals().equivalentTo(null);
121 assertFalse(isNull.apply("1"));
122 assertFalse(isNull.apply("2"));
123 assertTrue(isNull.apply(null));
127 .addEqualityGroup(isNull)
/external/chromium_org/third_party/WebKit/Source/core/animation/
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/ui/gfx/image/
H A Dimage_unittest_util.cc101 if (bmp1.isNull() && bmp2.isNull())
131 return bitmap.isNull();
139 EXPECT_FALSE(bitmap.isNull());
151 if (image_skia.isNull() ||
174 return bmp.isNull() ||
250 return !image.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/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dnode_breadcrumb.js80 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.TOUCHED_TAG))) {
99 goog.isNull(node.getAttribute(cvox.NodeBreadcrumb.NEEDED_TAG_))) {
134 !goog.isNull(child.getAttribute(cvox.NodeBreadcrumb.NEEDED_TAG_))) {
/external/chromium_org/chrome/renderer/extensions/
H A Denterprise_platform_keys_natives.cc41 DCHECK(!algorithm.isNull());
61 DCHECK(!hash.isNull());
107 if (!algorithm.isNull())
/external/chromium_org/components/autofill/content/renderer/
H A Dpage_click_tracker.cc38 // Returns an empty (isNull()) WebInputElement if |node| is not a text field.
52 // Returns an empty (isNull()) WebTextAreaElement if |node| is not a
108 if (focused_node.isNull())
115 if (!input_element.isNull()) {
123 if (!textarea_element.isNull()) {
/external/chromium_org/content/renderer/accessibility/
H A Drenderer_accessibility_focus_only.cc65 if (document.isNull())
77 node_has_focus = !node.isNull();
114 if (!node.isNull() && node.isElementNode()) {

Completed in 1011 milliseconds

1234567891011>>