/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLSessionBindingEventTest.java | 53 SSLSessionBindingEvent event = new SSLSessionBindingEvent(null, "test"); 60 SSLSessionBindingEvent event = new SSLSessionBindingEvent(ses, null); 73 event = new SSLSessionBindingEvent(ses, null); 74 assertEquals("Incorrect session name", null, event.getName()); 113 return null; 127 return null; 134 return null; 164 return null; 178 return null; 185 return null; [all...] |
SSLSessionContextTest.java | 24 context.init(null, null, null); 48 context.init(null, null, null); 71 context.init(null, null, null); 75 sc.getSession(null); [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
HeaderViewListAdapterTest.java | 46 new HeaderViewListAdapter(header, footer, null); 52 HeaderViewListAdapter headerViewListAdapter = new HeaderViewListAdapter(null, null, null); 58 headerViewListAdapter = new HeaderViewListAdapter(header, null, null); 63 HeaderViewListAdapter headerViewListAdapter = new HeaderViewListAdapter(null, null, null); 69 headerViewListAdapter = new HeaderViewListAdapter(null, footer, null) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
ALoopCommand.java | 64 if(this._position_ != null) 66 this._position_.parent(null); 69 if(node != null) 71 if(node.parent() != null) 89 if(this._variable_ != null) 91 this._variable_.parent(null); 94 if(node != null) 96 if(node.parent() != null) 114 if(this._start_ != null) 116 this._start_.parent(null); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
MessageFactoryImpl.java | 126 if (requestURI == null || method == null || callId == null 127 || cSeq == null || from == null || to == null || via == null 128 || maxForwards == null || content == null 129 || contentType == null) [all...] |
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
RecurrenceSetTest.java | 40 verifyPopulateContentValues(recurrence, "FREQ=DAILY;UNTIL=20080222T000000Z", null, 41 null, "20080222T120000Z", 1203595200000L, "America/New_York", "P43200S", 0, false); 49 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null, 50 null, null, 1250812800000L, "UTC", "P1D", 1, false); 58 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null, 59 null, null, 1250812800000L, "UTC", "P2D", 1, false); 69 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU\nFREQ=MONTHLY;COUNT=3", null, 70 null, null, 1250812800000L, "UTC", "P2H", 1 /*allDay*/, false) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/descriptors/ |
MenuDescriptors.java | 40 private ElementDescriptor mDescriptor = null; 72 if (mDescriptor == null) { 76 null, // TODO SDK URL 77 null, // extraAttribute 78 null, // childrenElements, 87 null, // TODO SDK URL 88 null, // extraAttribute 89 null, // childrenElements, 95 null, // TODO SDK URL 96 null, // extraAttribut [all...] |
/frameworks/base/core/java/com/android/internal/widget/ |
ActionBarContainer.java | 48 this(context, null); 54 setBackgroundDrawable(null); 69 setWillNotDraw(mIsSplit ? mSplitBackground == null : 70 mBackground == null && mStackedBackground == null); 80 if (mBackground != null) { 81 mBackground.setCallback(null); 85 if (bg != null) { 87 if (mActionBarView != null) { 92 setWillNotDraw(mIsSplit ? mSplitBackground == null [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
SpatialTrack.java | 80 if (rotations != null)
82 if (translations != null)
84 if (scales != null) {
88 if (rotations != null)
90 if (translations != null)
92 if (scales != null) {
106 if (rotations != null)
108 if (translations != null)
110 if (scales != null) {
113 if (rotations != null)
[all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
SuggestionData.java | 94 if (mIntentAction != null) return mIntentAction; 224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode()); 225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode()); 226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode()); 227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode()); 228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode()); 229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode()); 230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode()); 231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode()); 232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode()) [all...] |
/frameworks/base/core/java/android/webkit/ |
WebViewDatabaseClassic.java | 54 private static WebViewDatabaseClassic sInstance = null; 57 private static SQLiteDatabase sDatabase = null; 117 if (sInstance == null) { 141 sDatabase = context.openOrCreateDatabase(DATABASE_FILE, 0, null); 146 null); 150 // sDatabase should not be null, 152 if (sDatabase == null) { 193 Cursor c = sDatabase.query(mTableNames[TABLE_FORMURL_ID], null, null, 194 null, null, null, null) [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ConcurrentLinkedQueue.java | 32 * does not permit the use of {@code null} elements. 92 * - There is exactly one (last) Node with a null next reference, 97 * - The elements contained in the queue are the non-null items in 99 * reference of a Node to null atomically removes it from the 128 * CASing a Node's item reference to null atomically removes the 129 * element from the queue. Iterators skip over Nodes with null 142 * non-null item. If the queue is empty, all items must of course 143 * be null. Upon creation, both head and tail refer to a dummy 144 * Node with null item. Both head and tail are only updated using 198 * - head != null [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteSession.java | 102 * session.execute("INSERT INTO ...", null, 0); 228 if (connectionPool == null) { 229 throw new IllegalArgumentException("connectionPool must not be null"); 241 return mTransactionStack != null; 250 return mTransactionStack != null && mTransactionStack.mParent != null; 259 return mConnection != null; 280 * @param transactionListener The transaction listener, or null if none. 283 * @param cancellationSignal A signal to cancel the operation in progress, or null if none. 305 if (cancellationSignal != null) { 399 assert mConnection != null; local 514 assert mConnection != null; local 902 assert mConnection != null; local [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/ |
ECFieldF2m_ImplTest.java | 74 * Exception expected with this parameters set or <code>null</code> 109 null, 110 null), 115 null, 116 null), 117 // set 2: valid m, invalid (null) rp 120 (BigInteger)null, 121 null, 127 null, 133 null, [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 111 private static Provider provider = null; 128 if (provider == null) { 136 if (provider != null) { 138 provider = null; 214 if( certs == null ) { 238 if (certs == null) { 313 private String diff = null; 334 * diff. Leave the <code>diff</code> null when no difference needed. 367 if (obj == null || !(obj instanceof TestCertificate)) { 374 if (this.diff == null) { [all...] |
/external/jdiff/src/jdiff/ |
ClassDiff.java | 23 public String inheritanceChange_ = null; 28 public String documentationChange_ = null; 35 public String modifiersChange_ = null; 38 public List ctorsAdded = null; 40 public List ctorsRemoved = null; 42 public List ctorsChanged = null; 45 public List methodsAdded = null; 47 public List methodsRemoved = null; 49 public List methodsChanged = null; 52 public List fieldsAdded = null; [all...] |
/external/proguard/src/proguard/io/ |
JarWriter.java | 57 this(dataEntryWriter, null, null); 102 currentFinisher = null; 103 currentDataEntry = null; 111 return getOutputStream(dataEntry, null); 121 return null; 157 if (currentJarOutputStream != null) 164 currentJarOutputStream = null; 165 currentParentOutputStream = null; 191 if (parentOutputStream == null) [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
FastXmlSerializer.java | 41 null, null, null, null, null, null, null, null, // 0-7 42 null, null, null, null, null, null, null, null, // 8-1 [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
JarInputStream.java | 66 if ((mEntry = getNextJarEntry()) == null) { 70 mEntry = null; // modifies behavior of getNextJarEntry() 75 mEntry = null; 80 if (manifest != null) { 87 temp.map.put("hidden", null); 93 verifier = null; 112 * JarInputStream} or {@code null} if no manifest entry exists. 122 * null} if no more entries are present. 148 if (mEntry != null) { 152 if (verStream != null && !eos) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatAttributes.java | 50 return null; 57 ? null 63 ? null 68 return (index < 0 || index >= getLength()) ? null : CDATA; 73 ? null 78 if (uri == null) { 79 throw new NullPointerException("uri == null"); 81 if (localName == null) { 82 throw new NullPointerException("localName == null"); 92 if (qName == null) { [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
MySSLContextSpi.java | 47 if (sr == null) { 49 "secureRandom is null"); 58 return null; 65 return null; 72 return null; 79 return null; 84 return null; 89 return null; 113 tmpHost = null; 129 public Runnable getDelegatedTask() { return null; } [all...] |
TestCertUtils.java | 112 private static Provider provider = null; 129 if (provider == null) { 137 if (provider != null) { 139 provider = null; 215 if( certs == null ) { 239 if (certs == null) { 314 private String diff = null; 335 * diff. Leave the <code>diff</code> null when no difference needed. 368 if (obj == null || !(obj instanceof TestCertificate)) { 375 if (this.diff == null) { [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
MySSLContextSpi.java | 45 if (sr == null) { 47 "secureRandom is null"); 56 return null; 63 return null; 70 return null; 77 return null; 82 return null; 87 return null; 111 tmpHost = null; 127 public Runnable getDelegatedTask() { return null; } [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/util/ |
CharsetUtil.java | 797 private String canonical = null;
798 private String mime = null;
799 private String[] aliases = null;
943 new Charset("Cp737", null, new String[] {}),
944 new Charset("Cp856", null, new String[] {}),
945 new Charset("Cp875", null, new String[] {}),
946 new Charset("Cp921", null, new String[] {}),
947 new Charset("Cp922", null, new String[] {}),
948 new Charset("Cp930", null, new String[] {}),
949 new Charset("Cp933", null, new String[] {}), [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
CompatUtils.java | 37 return null; 43 if (targetClass == null || TextUtils.isEmpty(name)) return null; 51 return null; 55 if (targetClass == null || TextUtils.isEmpty(name)) return null; 63 return null; 68 if (targetClass == null || types == null) return null; [all...] |