Searched refs:isNull (Results 1 - 25 of 58) sorted by relevance

123

/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DArrayUtilsTest.java29 java.util.function.Predicate<Object> isNull = new java.util.function.Predicate<Object>() {
41 assertEquals(0, ArrayUtils.unstableRemoveIf(collection, isNull));
44 assertEquals(0, ArrayUtils.unstableRemoveIf(collection, isNull));
47 assertEquals(0, ArrayUtils.unstableRemoveIf(collection, isNull));
52 assertEquals(1, ArrayUtils.unstableRemoveIf(collection, isNull));
56 assertEquals(0, ArrayUtils.unstableRemoveIf(collection, isNull));
62 assertEquals(1, ArrayUtils.unstableRemoveIf(collection, isNull));
67 assertEquals(1, ArrayUtils.unstableRemoveIf(collection, isNull));
72 assertEquals(2, ArrayUtils.unstableRemoveIf(collection, isNull));
76 assertEquals(0, ArrayUtils.unstableRemoveIf(collection, isNull));
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DLDSymbol.cpp85 bool LDSymbol::isNull() const { function in class:mcld::LDSymbol
90 return !m_pFragRef->isNull();
H A DResolveInfo.cpp130 bool ResolveInfo::isNull() const { function in class:mcld::ResolveInfo
251 if (pInfo->isNull())
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootCursorWrapper.java134 public boolean isNull(int column) { method in class:RootCursorWrapper
135 return mCursor.isNull(column);
H A DFilteringCursorWrapper.java136 public boolean isNull(int column) { method in class:FilteringCursorWrapper
137 return mCursor.isNull(column);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DKCode.kt46 fun isNull(kcode : KCode?) = kcode == null || (kcode.nodes.isEmpty() && (kcode.s == null || kcode.s.trim() == ""))
67 if (c == null || isNull(c)) {
75 if (c == null || isNull(c)) {
92 if (isNull(c)) {
/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java147 if (plmnColumn != -1 && !cursor.isNull(plmnColumn)) {
155 if (lacColumn != -1 && !cursor.isNull(lacColumn)) {
163 if (cidColumn != -1 && !cursor.isNull(cidColumn)) {
174 if (etwsWarningTypeColumn != -1 && !cursor.isNull(etwsWarningTypeColumn)) {
184 if (cmasMessageClassColumn != -1 && !cursor.isNull(cmasMessageClassColumn)) {
190 if (cmasCategoryColumn != -1 && !cursor.isNull(cmasCategoryColumn)) {
199 if (cmasResponseTypeColumn != -1 && !cursor.isNull(cmasResponseTypeColumn)) {
208 if (cmasSeverityColumn != -1 && !cursor.isNull(cmasSeverityColumn)) {
217 if (cmasUrgencyColumn != -1 && !cursor.isNull(cmasUrgencyColumn)) {
226 if (cmasCertaintyColumn != -1 && !cursor.isNull(cmasCertaintyColum
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DImsSMSDispatcherTest.java24 import static org.mockito.Matchers.isNull;
144 verify(mSimulatedCommandsVerifier).sendImsGsmSms((String)isNull(), (String)isNull(), eq(0),
H A DWapPushOverSmsTest.java25 import static org.mockito.Mockito.isNull;
93 isNull(BroadcastReceiver.class),
/frameworks/base/core/java/android/database/
H A DCursor.java343 boolean isNull(int columnIndex); method in interface:Cursor
H A DCursorWrapper.java181 public boolean isNull(int columnIndex) { method in class:CursorWrapper
182 return mCursor.isNull(columnIndex);
H A DMergeCursor.java137 public boolean isNull(int column) method in class:MergeCursor
139 return mCursor.isNull(column);
H A DAbstractWindowedCursor.java91 public boolean isNull(int columnIndex) { method in class:AbstractWindowedCursor
H A DDatabaseUtils.java656 if (!cursor.isNull(colIndex)) {
686 if (!cursor.isNull(colIndex)) {
717 if (!cursor.isNull(colIndex)) {
909 if (index != -1 && !cursor.isNull(index)) {
925 if (index != -1 && !cursor.isNull(index)) {
941 if (index != -1 && !cursor.isNull(index)) {
957 if (index != -1 && !cursor.isNull(index)) {
973 if (index != -1 && !cursor.isNull(index)) {
989 if (index != -1 && !cursor.isNull(index)) {
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h64 bool isNull() const { return (this == Null()); } function in class:mcld::FragmentRef
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DMtpDatabaseTest.java74 private static boolean isNull(Cursor cursor, String columnName) { method in class:MtpDatabaseTest
75 return cursor.isNull(cursor.getColumnIndex(columnName));
99 assertTrue(isNull(cursor, COLUMN_OBJECT_HANDLE));
103 assertTrue(isNull(cursor, COLUMN_SUMMARY));
104 assertTrue(isNull(cursor, COLUMN_LAST_MODIFIED));
135 assertTrue(isNull(cursor, Root.COLUMN_SUMMARY));
162 assertTrue(isNull(cursor, COLUMN_OBJECT_HANDLE));
165 assertTrue(isNull(cursor, COLUMN_SUMMARY));
166 assertTrue(isNull(cursor, COLUMN_LAST_MODIFIED));
215 assertTrue(isNull(curso
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h56 bool isNull() const;
/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp99 if (!QT.isNull()) {
H A Dslang_rs_export_func.cpp105 slangAssert(!T.isNull());
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java72 public boolean isNull(int columnIndex) { method in class:MockCursor
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DAggregatorRecordStorage.java104 if (!cursor.isNull(columnIndex)) {
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java226 public boolean isNull(int column) method in class:SortCursor
228 return mCursor.isNull(column);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsTracker.java134 if (cursor.isNull(InboundSmsHandler.DESTINATION_PORT_COLUMN)) {
154 if (cursor.isNull(InboundSmsHandler.COUNT_COLUMN)) {
/frameworks/support/v4/kitkat/android/support/v4/provider/
H A DDocumentsContractApi19.java149 if (c.moveToFirst() && !c.isNull(0)) {
174 if (c.moveToFirst() && !c.isNull(0)) {
/frameworks/base/services/core/java/com/android/server/firewall/
H A DStringFilter.java35 private static final String ATTR_IS_NULL = "isNull";
69 // if there are no string filter attributes, we default to isNull="false" so that an
219 public IsNullFilter(ValueProvider valueProvider, boolean isNull) { argument
221 mIsNull = isNull;

Completed in 1152 milliseconds

123