Searched refs:isNull (Results 101 - 125 of 965) sorted by last modified time

1234567891011>>

/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DHTTP.java153 !s.equals("Request-URI") && !o.isNull(s)) {
H A DJSONArray.java379 public boolean isNull(int index) { method in class:JSONArray
H A DJSONObject.java708 public boolean isNull(String key) { method in class:JSONObject
H A DTest.java310 System.out.println("isNull: " + j.isNull("nix"));
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
H A DPageSiteComposite.java85 Assert.isNull(m_page);
/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/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/eigen/Eigen/src/Geometry/
H A DAlignedBox.h85 inline bool isNull() const { return isEmpty(); } function in class:Eigen::AlignedBox
/external/eigen/unsupported/test/
H A DBVH.cpp60 bool intersectVolumeVolume(const BoxType &r1, const BoxType &r2) { ++calls; return !(r1.intersection(r2)).isNull(); }
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/easymock/src/org/easymock/
H A DEasyMock.java1295 public static <T> T isNull() { method in class:EasyMock
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/clang/lib/Sema/
H A DSemaExpr.cpp442 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
561 assert(!T.isNull() && "r-value conversion on typeless expression?");
681 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
705 if (!PTy.isNull()) {
724 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
1261 if (!LHSBitfieldPromoteTy.isNull())
1961 if (!ThisType.isNull())
1974 if (!ThisType.isNull()) {
2823 if (!CapturedType.isNull())
3242 if (Ty.isNull()
[all...]
H A DSemaExprCXX.cpp202 if (SearchType.isNull() || SearchType->isDependentType() ||
210 if (!SearchType.isNull())
229 if (MemberOfType.isNull())
232 if (MemberOfType.isNull())
475 if (T.isNull())
549 if (T.isNull())
739 if (ThisTy.isNull()) {
866 if (ThisTy.isNull()) return Diag(Loc, diag::err_invalid_this_use);
875 if (CXXThisTypeOverride.isNull())
1217 if (DeducedType.isNull())
[all...]
H A DSemaExprMember.cpp98 bool isStaticContext = SemaRef.CXXThisTypeOverride.isNull() &&
797 if (ThisTy.isNull()) {
1524 if (ret.isNull())
1739 assert(!ThisTy.isNull() && "didn't correctly pre-flight capture of 'this'");
H A DSemaExprObjC.cpp93 if (!Ty.isNull()) {
131 if (Ty.isNull()) {
840 if (QIDNSCopying.isNull()) {
851 if (!QIDNSCopying.isNull())
1110 if (Ty.isNull())
1983 if (!ReceiverType.isNull())
2189 if (ReceiverType.isNull())
2307 !Context.getObjCIdType().isNull() &&
2726 if (RespondsToSelectorSel.isNull()) {
H A DSemaInit.cpp4754 if (!SourceType.isNull() && SourceType->isRecordType()) {
H A DSemaLambda.cpp618 assert(CSI.ReturnType.isNull() || !CSI.ReturnType->isUndeducedType());
644 if (CSI.ReturnType.isNull())
651 assert(!CSI.ReturnType.isNull() && "We should have a tentative return type.");
715 assert(!DeductType.isNull() && "can't build reference to auto");
751 << (DeduceInit->getType().isNull() ? TSI->getType()
757 << (DeduceInit->getType().isNull() ? TSI->getType()
761 if (DeducedType.isNull())
947 (getCurrentThisType().isNull() ||
986 if (ThisCaptureType.isNull()) {
1013 if (C->InitCaptureType.get().isNull())
[all...]
H A DSemaLookup.cpp1715 if (SubobjectType.isNull()) {
H A DSemaOverload.cpp1960 if (!ToType.isNull())
2521 if (FromType.isNull() || ToType.isNull()) {
4502 if (!X.isNull()) {
5388 if (ToType.isNull())
5410 if (ToType.isNull()) {
5494 if (T1->isDependentType() || (!T2.isNull() && T2->isDependentType()))
5497 if (T1->isRecordType() || (!T2.isNull() && T2->isRecordType()))
5513 if (!T2.isNull() && T2->isEnumeralType()) {
5878 if (Method->isStatic() || ObjectType.isNull())
[all...]
H A DSemaPseudoObject.cpp1090 if (ContainerT.isNull())
1132 if (ResultType.isNull()) {
1242 if (ResultType.isNull()) {
H A DSemaStmt.cpp71 if (DG.isNull()) return StmtError();
81 if (DG.isNull() || !DG.isSingleDecl())
1758 if (FirstType.isNull()) {
1814 if (InitType.isNull()) {
2466 if (!ReturnType.isNull() && !ReturnType->isDependentType()) {
2597 if (CurCap->ReturnType.isNull())
2636 if (CurCap->ReturnType.isNull())
2639 assert(!FnRetType.isNull());
2782 if (Deduced.isNull())
2974 QualType RetType = RelatedRetType.isNull()
[all...]

Completed in 4242 milliseconds

1234567891011>>