Searched refs:isNull (Results 151 - 175 of 965) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_dom_feature_extractor.cc152 if (cur_document_.isNull()) {
160 for (; !cur_document_.isNull(); cur_document_ = GetNextDocument()) {
179 for (; !cur_element.isNull();
350 DCHECK(cur_document_.isNull());
352 !cur_document_.isNull()) {
380 DCHECK(!cur_document_.isNull());
392 DCHECK(!cur_document_.isNull());
398 if (!frame->document().isNull()) {
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationTimeline.h84 double currentTime(bool& isNull);
86 double currentTimeInternal(bool& isNull);
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);
H A DKeyframeEffectModel.cpp61 ASSERT(!isNull(fraction));
76 if (!isNull(offset)) {
89 if (isNull(result.last()->offset()))
92 if (result.size() > 1 && isNull(result[0]->offset()))
99 if (!isNull(offset)) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DSpaceSplitString.h46 bool isNull() const { return !m_data; } function in class:blink::SpaceSplitString
72 bool isUnique() const { return m_keyString.isNull(); }
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLKeygenElement.cpp93 if (!keyType.isNull() && !equalIgnoringCase(keyType, "rsa"))
96 if (value.isNull())
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DBackgroundHTMLInputStream.cpp83 ASSERT(!checkpoint.isNull());
90 ASSERT(!m_segments[i].isNull());
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebHitTestResult.cpp117 bool WebHitTestResult::isNull() const function in class:blink::WebHitTestResult
124 if (info.isNull())
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.h80 if (!m_length && !m_buffer && !other.m_string.isNull()) {
126 if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
142 if (m_buffer && m_length < m_buffer->length() && m_string.isNull()) {
180 if (m_string.isNull())
189 if (!m_string.isNull())
206 if (!m_string.isNull())
246 if (!m_string.isNull())
257 if (!m_string.isNull())
/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 DWebURL.h99 bool isNull() const function in class:blink::WebURL
126 return isNull() ? GURL() : GURL(m_string.utf8(), m_parsed, m_isValid);
/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 DWebHistoryItem.h74 bool isNull() const { return m_private.isNull(); } function in class:blink::WebHistoryItem
/external/chromium_org/ui/gfx/image/
H A Dimage_skia_operations.cc437 if (first.isNull() || second.isNull())
447 if (first.isNull() || second.isNull())
456 if (image.isNull())
465 if (rgb.isNull() || alpha.isNull())
475 if (source.isNull())
486 if (image.isNull())
496 if (image.isNull() || mas
[all...]
H A Dimage_skia.cc328 if (isNull())
340 if (!copy->isNull())
357 if (isNull()) {
368 if (isNull())
380 if (isNull())
389 if (isNull())
422 return isNull() ? 0 : storage_->size().width();
430 return isNull() ? 0 : storage_->size().height();
434 if (isNull())
476 if (isNull()) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoader.cpp139 ASSERT(!request.isNull());
149 ASSERT(!m_request.isNull());
150 ASSERT(m_deferredRequest.isNull());
192 if (!defers && !m_deferredRequest.isNull()) {
266 ResourceError nonNullError = error.isNull() ? ResourceError::cancelledError(m_request.url()) : error;
301 ASSERT(!request.isNull());
303 ASSERT(!redirectResponse.isNull());
314 if (request.isNull() || m_state == Terminated)
319 ASSERT(!request.isNull());
346 ASSERT(!response.isNull());
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleMac.mm183 if (!m_dateFormat.isNull())
191 if (!m_monthFormat.isNull())
201 if (!m_shortMonthFormat.isNull())
209 if (!m_timeFormatWithSeconds.isNull())
217 if (!m_timeFormatWithoutSeconds.isNull())
225 if (!m_dateTimeFormatWithSeconds.isNull())
233 if (!m_dateTimeFormatWithoutSeconds.isNull())
/external/llvm/include/llvm/ADT/
H A DTinyPtrVector.h101 if (Val.isNull())
111 if (Val.isNull()) return true;
137 return begin() + (Val.isNull() ? 0 : 1);
151 assert(!Val.isNull() && "can't index into an empty vector");
180 if (Val.isNull()) {
251 assert(!Val.isNull() && "Null value with non-end insert iterator.");
271 if (Val.isNull()) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DSQLiteCursorTest.java302 assertThat(cursor.isNull(cursor.getColumnIndex("id")), equalTo(false));
303 assertThat(cursor.isNull(cursor.getColumnIndex("name")), equalTo(false));
305 assertThat(cursor.isNull(cursor.getColumnIndex("long_value")), equalTo(true));
306 assertThat(cursor.isNull(cursor.getColumnIndex("float_value")), equalTo(true));
307 assertThat(cursor.isNull(cursor.getColumnIndex("double_value")), equalTo(true));
315 assertThat(cursor.isNull(i), equalTo(false));
324 assertThat(cursor.isNull(5), equalTo(true));
/external/skia/tests/
H A DCachedDecodingPixelRefTest.cpp59 REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
62 REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
63 if (b1.isNull() || b1.empty()) {
100 REPORTER_ASSERT(reporter, !original.isNull());
101 if (original.empty() || original.isNull()) {
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.cpp50 if (!radius.isNull())
53 if (!centerX.isNull() || !centerY.isNull()) {
54 if (!radius.isNull())
154 if (!radiusX.isNull()) {
158 if (!radiusY.isNull()) {
165 if (!centerX.isNull() || !centerY.isNull()) {
334 bool showLeftArg = !left.isNull() && left != right;
335 bool showBottomArg = !bottom.isNull()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertListCommand.cpp169 if (endOfSelection.isNull() || endOfSelection.isOrphan() || startOfLastParagraph.isNull() || startOfLastParagraph.isOrphan()) {
174 if (endOfSelection.isNull())
185 if (endOfSelection.isNull() || endOfSelection.isOrphan()) {
187 if (endOfSelection.isNull())
190 if (startOfSelection.isNull() || startOfSelection.isOrphan()) {
192 if (startOfSelection.isNull())
348 if (start.isNull() || end.isNull())
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_user_media_client.cc46 DCHECK(!result_.isNull());
141 DCHECK(!stream_request.isNull());
144 if (request.ownerDocument().isNull() || !request.ownerDocument().frame()) {
152 if (!constraints.isNull() &&
159 if (!constraints.isNull() &&
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8StringResource.h49 ASSERT(!string.isNull());
60 ASSERT(!string.isNull());
70 if (m_plainString.impl() != m_atomicString.impl() && !m_atomicString.isNull())
82 if (m_atomicString.isNull()) {
84 ASSERT(!m_atomicString.isNull());
H A DV8ThrowException.cpp92 return v8::Exception::Error(v8String(isolate, message.isNull() ? "Error" : message));
103 return v8::Exception::TypeError(v8String(isolate, message.isNull() ? "Type error" : message));
114 return v8::Exception::RangeError(v8String(isolate, message.isNull() ? "Range error" : message));
125 return v8::Exception::SyntaxError(v8String(isolate, message.isNull() ? "Syntax error" : message));
136 return v8::Exception::ReferenceError(v8String(isolate, message.isNull() ? "Reference error" : message));

Completed in 694 milliseconds

1234567891011>>