Searched defs:isNull (Results 101 - 125 of 155) sorted by relevance

1234567

/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp151 inline bool isNull() const { return SrcArgs.empty(); } function in struct:__anon18192::GenericTaintChecker::TaintPropagationRule
227 if (!Rule.isNull())
251 if (Rule.isNull()) {
306 if (!Rule.isNull()) {
491 if ((!PType.isNull() && !PType.isConstQualified())
/external/easymock/src/org/easymock/
H A DEasyMock.java1295 public static <T> T isNull() { method in class:EasyMock
/external/eigen/Eigen/src/Geometry/
H A DAlignedBox.h85 inline bool isNull() const { return isEmpty(); } function in class:Eigen::AlignedBox
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONObject.java708 public boolean isNull(String key) { method in class:JSONObject
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLResponse.cpp106 bool WebURLResponse::isNull() const function in class:blink::WebURLResponse
108 return !m_private || m_private->m_resourceResponse->isNull();
254 if (name.isNull() || value.isNull())
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceResponse.h63 bool isNull() const { return m_isNull; } function in class:blink::ResourceResponse
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h136 bool isNull() const { return !m_impl; } function in class:WTF::String
478 inline bool operator!(const String& str) { return str.isNull(); }
/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h117 bool isNull() const { return NULL == fPixelRef; } function in class:SkBitmap
121 bool drawsNothing() const { return this->empty() || this->isNull(); }
/external/clang/include/clang/AST/
H A DCanonicalType.h83 LLVM_EXPLICIT operator bool() const { return !isNull(); }
85 bool isNull() const { function in class:clang::CanQual
86 return Stored.isNull();
692 assert((Other.isNull() || Other.isCanonical()) && "Type is not canonical!");
693 assert((Other.isNull() || isa<T>(Other.getTypePtr())) &&
706 if (Stored.isNull())
721 assert(!Stored.isNull() && isa<U>(Stored.getTypePtr()));
H A DTemplateBase.h220 bool isNull() const { return getKind() == Null; } function in class:clang::TemplateArgument
H A DTypeLoc.h95 bool isNull() const { return !Ty; } function in class:clang::TypeLoc
/external/skia/include/core/
H A DSkBitmap.h143 bool isNull() const { return NULL == fPixelRef; } function in class:SkBitmap
147 bool drawsNothing() const { return this->empty() || this->isNull(); }
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/
H A Dbase.js901 goog.isNull = function(val) {
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKURL.cpp192 if (!url.isNull())
301 bool KURL::isNull() const function in class:blink::KURL
303 return m_string.isNull();
339 ASSERT(!m_string.isNull());
380 ASSERT(!m_string.isNull());
591 if (fragment.isNull() && !m_parsed.ref.is_valid())
597 if (fragment.isNull())
615 if (query.isNull()) {
694 if (m_string.isNull() || !m_parsed.scheme.is_nonempty())
756 if (m_string.isNull())
[all...]
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp1019 if ( isNull() || isArray() || isObject() )
1029 return isNull();
1386 Value::isNull() const function in class:Json::Value
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp258 if (!T.isNull()) {
321 if (indexTy.isNull())
350 ConditionTruthVal ProgramState::isNull(SVal V) const { function in class:ProgramState
361 return getStateManager().ConstraintMgr->isNull(this, Sym);
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp1013 if ( isNull() || isArray() || isObject() )
1023 return isNull();
1380 Value::isNull() const function in class:Json::Value
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp1009 if ( isNull() || isArray() || isObject() )
1019 return isNull();
1376 Value::isNull() const function in class:Json::Value
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h369 inline bool isNull(StringRef S) { function in namespace:llvm::yaml
393 if (isNull(S))
/external/llvm/lib/IR/
H A DConstantFold.cpp1977 bool isNull = true; local
1980 isNull = false;
1983 if (isNull) {
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Djson-20090211.jarMETA-INF/ META-INF/MANIFEST.MF org/json/CDL.class CDL.java package org ...
/external/chromium_org/v8/src/
H A Dd8.js1516 if (!value.isUndefined() && !value.isNull()) {
1807 return this.isUndefined() || this.isNull() || this.isBoolean() ||
1834 ProtocolValue.prototype.isNull = function() {
/external/clang/include/clang/Basic/
H A DDiagnostic.h71 bool isNull() const { function in class:clang::FixItHint
1097 if (!Hint.isNull())
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp185 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
1276 llvm::Value *isNull = Builder.CreateIsNull(allocation, "new.isnull"); local
1277 Builder.CreateCondBr(isNull, contBB, notNullBB);
/external/llvm/include/llvm/Object/
H A DELF.h284 bool isNull() const { return getPointer() == nullptr; } function in class:llvm::object::ELFFile::VersionMapEntry
285 bool isVerdef() const { return !isNull() && getInt() == 0; }
286 bool isVernaux() const { return !isNull() && getInt() == 1; }
973 if (version_index >= VersionMap.size() || VersionMap[version_index].isNull())

Completed in 8467 milliseconds

1234567