Searched refs:isNull (Results 476 - 500 of 965) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebURLResponse.h77 BLINK_PLATFORM_EXPORT bool isNull() const;
/external/chromium_org/ui/views/controls/button/
H A Dcheckbox.cc118 images_[checked_index][focused_index][for_state].isNull())
/external/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h95 bool isNull() const { return !Value; } function in class:clang::ast_matchers::dynamic::VariantMatcher
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp51 if (!PointeeT.isNull()) {
/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
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp369 if (ret_type.isNull())
395 if (arg_type.isNull())
426 if (target_type.isNull())
436 if (target_type.isNull())
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp222 EnableNullFPSuppression = State->isNull(*RetLoc).isConstrainedTrue();
282 if (!State->isNull(V).isConstrainedTrue()) {
371 if (!State->isNull(*ArgV).isConstrainedTrue())
726 return N->getState()->isNull(Constraint).isUnderconstrained();
796 assert(N->getState()->isNull(V).isConstrainedTrue() &&
820 if (Succ->getState()->isNull(V).isConstrainedTrue())
827 if (!Pred->getState()->isNull(V).isConstrainedTrue()) {
830 assert(Succ->getState()->isNull(V).isConstrainedTrue());
967 if (LVState->isNull(LVal).isConstrainedTrue()) {
1005 LVState->isNull(*D
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_action.cc177 CHECK(!bitmap.isNull());
317 if (!icon.isNull())
/external/chromium_org/content/renderer/
H A Dresource_fetcher_browsertest.cc203 EXPECT_TRUE(delegate->response().isNull());
225 EXPECT_TRUE(delegate->response().isNull());
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8CustomElementLifecycleCallbacks.cpp225 oldValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, oldValue)),
226 newValue.isNull() ? v8::Handle<v8::Value>(v8::Null(isolate)) : v8::Handle<v8::Value>(v8String(isolate, newValue))
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPSourceList.cpp76 return !nonce.isNull() && m_nonces.contains(nonce);
169 if (!nonce.isNull()) {
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAnchorElement.cpp194 setIsLink(!value.isNull());
318 if (pingValue.isNull() || !document().settings() || !document().settings()->hyperlinkAuditingEnabled())
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DEmailInputType.cpp193 return !findInvalidAddress(value).isNull();
204 ASSERT(!invalidAddress.isNull());
/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/platform/text/
H A DLocaleWin.cpp412 if (m_dateFormat.isNull())
424 if (m_monthFormat.isNull())
431 if (m_shortMonthFormat.isNull())
438 if (m_timeFormatWithSeconds.isNull())
445 if (!m_timeFormatWithoutSeconds.isNull())
464 if (!m_dateTimeFormatWithSeconds.isNull())
476 if (!m_dateTimeFormatWithoutSeconds.isNull())
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DSecurityOrigin.cpp120 : m_protocol(url.protocol().isNull() ? "" : url.protocol().lower())
121 , m_host(url.host().isNull() ? "" : url.host().lower())
/external/chromium_org/third_party/skia/src/utils/
H A DSkCanvasStateUtils.cpp228 if (bitmap.empty() || bitmap.isNull() || !bitmap.lockPixelsAreWritable()) {
312 SkASSERT(!bitmap.isNull());
/external/clang/include/clang/AST/
H A DTemplateName.h220 bool isNull() const { return Storage.isNull(); } function in class:clang::TemplateName
/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/Analysis/
H A DLazyCallGraph.h129 while (I != E && I->isNull())
140 } while (I != E && I->isNull());
/external/proguard/src/proguard/evaluation/value/
H A DReferenceValue.java82 public int isNull() method in class:ReferenceValue
444 return -isNull();
/external/skia/src/utils/
H A DSkCanvasStateUtils.cpp223 if (bitmap.empty() || bitmap.isNull() || !bitmap.lockPixelsAreWritable()) {
307 SkASSERT(!bitmap.isNull());
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResource.cpp145 ASSERT(url().isNull() || memoryCache()->resourceForURL(KURL(ParsedURLString, url())) != this);
190 if (!m_fragmentIdentifierForRequest.isNull()) {
251 if (!m_error.isNull() && (m_error.isCancellation() || !isPreloaded()))
332 if (response.isNull())
394 if (!encoding.isNull())
506 if (!m_response.isNull() && !m_proxyResource && !shouldSendCachedDataSynchronouslyForType(type()) && !m_needsSynchronousCacheHit) {
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp31 if (T.isNull())
318 if (!ObjectType.isNull()) {
430 if (!ObjectType.isNull()) {
458 if (!ObjectType.isNull() && Found.empty()) {
573 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope &&
855 if (T.isNull())
H A DSemaTemplateVariadic.cpp124 if ((!T.isNull() && T->containsUnexpandedParameterPack()) || InLambda)
133 if ((!TL.getType().isNull() &&
341 if (Template.isNull() || !Template.containsUnexpandedParameterPack())
353 if (Arg.getArgument().isNull() ||
465 if (Result.isNull())
698 if (!T.isNull() && T->containsUnexpandedParameterPack())

Completed in 1430 milliseconds

<<11121314151617181920>>