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

12

/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java120 if (plmnColumn != -1 && !cursor.isNull(plmnColumn)) {
128 if (lacColumn != -1 && !cursor.isNull(lacColumn)) {
136 if (cidColumn != -1 && !cursor.isNull(cidColumn)) {
147 if (etwsWarningTypeColumn != -1 && !cursor.isNull(etwsWarningTypeColumn)) {
157 if (cmasMessageClassColumn != -1 && !cursor.isNull(cmasMessageClassColumn)) {
163 if (cmasCategoryColumn != -1 && !cursor.isNull(cmasCategoryColumn)) {
172 if (cmasResponseTypeColumn != -1 && !cursor.isNull(cmasResponseTypeColumn)) {
181 if (cmasSeverityColumn != -1 && !cursor.isNull(cmasSeverityColumn)) {
190 if (cmasUrgencyColumn != -1 && !cursor.isNull(cmasUrgencyColumn)) {
199 if (cmasCertaintyColumn != -1 && !cursor.isNull(cmasCertaintyColum
[all...]
/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.java133 public boolean isNull(int column) { method in class:FilteringCursorWrapper
134 return mCursor.isNull(column);
H A DSortingCursorWrapper.java161 public boolean isNull(int column) { method in class:SortingCursorWrapper
162 return mCursor.isNull(column);
/frameworks/compile/mclinker/lib/LD/
H A DLDSymbol.cpp94 bool LDSymbol::isNull() const function in class:LDSymbol
101 return !m_pFragRef->isNull();
H A DResolveInfo.cpp139 bool ResolveInfo::isNull() const function in class:ResolveInfo
262 if (pInfo->isNull())
/frameworks/base/core/java/android/database/
H A DCursorWrapper.java149 public boolean isNull(int columnIndex) { method in class:CursorWrapper
150 return mCursor.isNull(columnIndex);
H A DCursor.java343 boolean isNull(int columnIndex); method in interface:Cursor
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.java636 if (!cursor.isNull(colIndex)) {
666 if (!cursor.isNull(colIndex)) {
697 if (!cursor.isNull(colIndex)) {
889 if (index != -1 && !cursor.isNull(index)) {
905 if (index != -1 && !cursor.isNull(index)) {
921 if (index != -1 && !cursor.isNull(index)) {
937 if (index != -1 && !cursor.isNull(index)) {
953 if (index != -1 && !cursor.isNull(index)) {
969 if (index != -1 && !cursor.isNull(index)) {
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp31 bool SectionMap::NamePair::isNull() const function in class:SectionMap::NamePair
80 if (!result.isNull()) {
H A DObjectBuilder.cpp44 std::string output_name = (pair.isNull())?pName:pair.to;
56 std::string output_name = (pair.isNull())?pInputSection.name():pair.to;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DTaskDescription.java67 public boolean isNull() { method in class:TaskDescription
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h68 bool isNull() const { return (this == Null()); } function in class:mcld::FragmentRef
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h37 bool isNull() const;
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java64 public boolean isNull(int columnIndex) { method in class:MockCursor
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h55 bool isNull() const;
H A DResolveInfo.h146 bool isNull() const;
/frameworks/compile/slang/
H A Dslang_rs_export_var.cpp112 if (!QT.isNull()) {
H A Dslang_rs_export_func.cpp108 slangAssert(!T.isNull());
/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.java128 if (cursor.isNull(InboundSmsHandler.DESTINATION_PORT_COLUMN)) {
147 if (cursor.isNull(InboundSmsHandler.COUNT_COLUMN)) {
/frameworks/base/services/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 589 milliseconds

12