HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 551 - 575 of 19228) sorted by null

<<21222324252627282930>>

  /frameworks/base/obex/javax/obex/
HeaderSet.java 182 private String mName; // null terminated Unicode text string
184 private String mType; // null terminated ASCII text string
192 private String mDescription; // null terminated Unicode text String
204 private String[] mUnicodeUserDefined; //null terminated unicode string
240 * this interface. If <code>null</code> is passed as the
256 if (headerValue == null) {
257 mCount = null;
269 if ((headerValue != null) && (!(headerValue instanceof String))) {
275 if ((headerValue != null) && (!(headerValue instanceof String))) {
282 if (headerValue == null) {
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestMenuItem.java 57 return null;
67 return null;
72 return null;
77 return null;
88 return null;
104 return null;
109 return null;
119 return null;
129 return null;
139 return null;
    [all...]
  /frameworks/base/services/java/com/android/server/location/
LocationBasedCountryDetector.java 75 String country = null;
80 if (addresses != null && addresses.size() > 0) {
113 Location bestLocation = null;
116 if (lastKnownLocation != null) {
117 if (bestLocation == null ||
135 if (mEnabledProviders == null) {
149 if (mLocationListeners != null) {
163 if (location != null) {
187 mTimer = null;
206 if (mLocationListeners != null) {
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
BaseCursorPagerAdapter.java 69 // TODO: This shouldn't just return null - maybe it needs to wait for a cursor to be supplied?
73 if (mCursor != null && moveCursorTo(position)) {
76 return null;
81 if (mCursor != null) {
90 if (mCursor == null) {
98 rowId = null;
103 if (obj != null) {
119 if (rowId == null || mItemPosition == null) {
131 return mCursor != null;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CommandParams.java 54 if (icon != null && mTextMsg != null) {
77 if (icon != null && mConfirmMsg != null) {
98 if (icon != null && mTextMsg != null) {
119 if (icon == null) {
122 if (mConfirmMsg != null && mConfirmMsg.icon == null) {
125 } else if (mCallMsg != null && mCallMsg.icon == null)
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 64 initProperties("INFO", null, "java.util.logging.SimpleFormatter", null);
65 this.os = null;
66 this.writer = null;
91 this.os = null;
92 this.writer = null;
105 * if {@code os} or {@code formatter} is {@code null}.
109 if (os == null) {
110 throw new NullPointerException("os == null");
112 if (formatter == null) {
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
AttributeListImplTest.java 54 ai = new AttributeListImpl(null);
79 // null case
81 attrs.setAttributeList(null);
104 // null case
105 multi.addAttribute(null, null, null);
106 assertEquals(null, multi.getName(5));
107 assertEquals(null, multi.getType(5));
108 assertEquals(null, multi.getValue(5))
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
X509KeyManagerImpl.java 22 private X509Certificate[] cert = null;
93 keyTest.load(null, null);
99 //keyTest.load(null, null);
108 //keyTest.load(null, null);
117 if (s == null || s.equals("")) {
118 return null;
134 } else return null;
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/data/
SparseArrayBitmapPool.java 37 private Node mPoolNodesHead = null;
38 private Node mPoolNodesTail = null;
56 * @param nodePool Shared pool to use for recycling linked list nodes, or null.
60 if (nodePool == null) {
80 while (mPoolNodesTail != null && mSizeBytes > targetSize) {
87 if (n.prevInBucket != null) {
94 if (n.nextInBucket != null) {
100 if (n.prevInPool != null) {
107 if (n.nextInPool != null) {
116 n.nextInBucket = null;
    [all...]
  /frameworks/base/core/java/android/os/
MessageQueue.java 49 // Barriers are indicated by messages with a null target whose arg1 field carries the token.
84 if (handler == null) {
85 throw new NullPointerException("Can't add a null IdleHandler");
143 Message prevMsg = null;
145 if (msg != null && msg.target == null) {
150 } while (msg != null && !msg.isAsynchronous());
152 if (msg != null) {
159 if (prevMsg != null) {
164 msg.next = null;
    [all...]