/external/jmonkeyengine/engine/src/core/com/jme3/shader/ |
ShaderKey.java | 60 return "V="+name + " F=" + fragName + (defines != null ? defines : ""); 65 if (obj == null){ 75 if (defines != null && other.defines != null) 77 else if (defines != null || other.defines != null) 90 hash = 41 * hash + (defines != null ? defines.getCompiled().hashCode() : 0); 114 oc.write(fragName, "fragment_name", null); 115 oc.write(language, "language", null); 122 fragName = ic.readString("fragment_name", null); [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Accept.java | 70 if (mediaRange == null) 82 if (mediaRange == null) { 96 if (mediaRange != null) 98 if (parameters != null && !parameters.isEmpty()) { 116 if (mediaRange == null) 117 return null; 126 if (mediaRange == null) 127 return null; 160 if (mediaRange == null) 169 if (mediaRange == null) [all...] |
CallIdentifier.java | 76 * @throws IllegalArgumentException if cid is null or is not a token, 93 if (host != null) { 106 if (other == null ) return false; 116 if ((this.host == null && that.host != null) 117 || (this.host != null && that.host == null)) 127 if (this.localId == null ) { 157 * @throws IllegalArgumentException if cid is null or is not a token or 161 if (cid == null) [all...] |
To.java | 94 if (address != null) { 118 if (address == null) 119 return null; 129 if (address == null) 130 return null; 140 if (parameters == null) 141 return null; 152 if (parameters == null) 162 if (parameters != null) 183 if (address == null) [all...] |
/external/smack/src/org/jivesoftware/smackx/ |
MultipleRecipientManager.java | 61 * @param to the list of JIDs to include in the TO list or <tt>null</tt> if no TO 63 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC 65 * @param bcc the list of JIDs to include in the BCC list or <tt>null</tt> if no BCC 72 send(connection, packet, to, cc, bcc, null, null, false); 84 * @param to the list of JIDs to include in the TO list or <tt>null</tt> if no TO 86 * @param cc the list of JIDs to include in the CC list or <tt>null</tt> if no CC 88 * @param bcc the list of JIDs to include in the BCC list or <tt>null</tt> if no BCC 90 * @param replyTo address to which all replies are requested to be sent or <tt>null</tt> 92 * @param replyRoom JID of a MUC room to which responses should be sent or <tt>null</tt [all...] |
/external/webkit/LayoutTests/fast/dom/HTMLFontElement/script-tests/ |
size-attribute.js | 14 return result === "100px" ? null : result; 17 shouldBe('fontSizeAttributeEffect("")', 'null'); 40 shouldBe('fontSizeAttributeEffect("x6")', 'null'); 45 shouldBe('fontSizeAttributeEffect("\\u20086")', 'null'); 47 shouldBe('fontSizeAttributeEffect("x-6")', 'null'); 52 shouldBe('fontSizeAttributeEffect("\\u2008-6")', 'null'); 54 shouldBe('fontSizeAttributeEffect("x+6")', 'null'); 59 shouldBe('fontSizeAttributeEffect("\\u2008+6")', 'null'); 61 shouldBe('fontSizeAttributeEffect("x+x6")', 'null'); 62 shouldBe('fontSizeAttributeEffect(" + 6")', 'null'); [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
BaseCommand.java | 44 mCurArgData = null; 87 * starts with '-'. If the next argument is not an option, null is returned. 90 if (mCurArgData != null) { 95 return null; 99 return null; 103 return null; 110 mCurArgData = null; 114 mCurArgData = null; 120 * no arguments left, return null. 123 if (mCurArgData != null) { [all...] |
/libcore/luni/src/main/java/java/net/ |
URL.java | 113 if (streamHandlerFactory != null) { 127 this((URL) null, spec, null); 133 * @param context the URL to which {@code spec} is relative, or null for 139 this(context, spec, null); 145 * @param context the URL to which {@code spec} is relative, or null for 147 * @param handler the stream handler for this URL, or null for the 153 if (spec == null) { 156 if (handler != null) { 162 int schemeSpecificPartStart = protocol != null ? (protocol.length() + 1) : 0 [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CRLEntryImpl.java | 63 * If specified issuer is null, it is supposed that issuer 82 if (encoding == null) { 119 return (extensions != null) && (extensions.size() != 0); 139 if (extensions == null) { 140 return null; 150 if (extensions == null) { 151 return null; 161 if (extensions == null) { 162 return null; 165 return (ext == null) ? null : ext.getRawExtnValue() [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
Device.java | 34 private static String sDeviceId = null; 44 if (sDeviceId == null) { 51 if (context == null) { 55 BufferedReader rdr = null; 62 if (id == null) { 63 // It's very bad if we read a null device id; let's delete that file 65 Log.e(Logging.LOG_TAG, "Can't delete null deviceName file; try overwrite."); 80 if (consistentDeviceId != null) { 92 * @return Device's unique ID if available. null if the device has no unique ID. 99 if (tm == null) { [all...] |
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
DictionaryMaker.java | 89 if (null == mInputUnigramXml && null == mInputBinary && null == mInputCombined) { 91 } else if ((null != mInputUnigramXml && null != mInputBinary) 92 || (null != mInputUnigramXml && null != mInputCombined) 93 || (null != mInputBinary && null != mInputCombined)) { 95 } else if ((null != mInputBinary || null != mInputCombined [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatService.java | 77 private CatCmdMessage mCurrntCmd = null; 78 private CatCmdMessage mMenuCmd = null; 80 private RilMessageDecoder mMsgDecoder = null; 105 if (ci == null || ca == null || ir == null || context == null || fh == null 106 || ic == null) { 108 "Service: Input parameters must not be null"); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
Stylesheet.java | 93 if (null != parent) 242 if (null == m_ExtensionElementURIs) 256 return (null != m_ExtensionElementURIs) 271 if (null == m_ExtensionElementURIs) 320 if (null == m_ExcludeResultPrefixs) 334 return (null != m_ExcludeResultPrefixs) 343 * @param prefix non-null reference to prefix that might be excluded. 351 if (null == m_ExcludeResultPrefixs || uri == null ) 458 if (null == m_imports [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationsDirectoryItem.java | 43 /** {@code null-ok;} the class-level annotations, if any */ 46 /** {@code null-ok;} the annotated fields, if any */ 49 /** {@code null-ok;} the annotated methods, if any */ 52 /** {@code null-ok;} the annotated parameters, if any */ 61 classAnnotations = null; 62 fieldAnnotations = null; 63 methodAnnotations = null; 64 parameterAnnotations = null; 80 return (classAnnotations == null) && 81 (fieldAnnotations == null) & [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationsDirectoryItem.java | 43 /** {@code null-ok;} the class-level annotations, if any */ 46 /** {@code null-ok;} the annotated fields, if any */ 49 /** {@code null-ok;} the annotated methods, if any */ 52 /** {@code null-ok;} the annotated parameters, if any */ 61 classAnnotations = null; 62 fieldAnnotations = null; 63 methodAnnotations = null; 64 parameterAnnotations = null; 80 return (classAnnotations == null) && 81 (fieldAnnotations == null) & [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationsDirectoryItem.java | 43 /** {@code null-ok;} the class-level annotations, if any */ 46 /** {@code null-ok;} the annotated fields, if any */ 49 /** {@code null-ok;} the annotated methods, if any */ 52 /** {@code null-ok;} the annotated parameters, if any */ 61 classAnnotations = null; 62 fieldAnnotations = null; 63 methodAnnotations = null; 64 parameterAnnotations = null; 80 return (classAnnotations == null) && 81 (fieldAnnotations == null) & [all...] |
/libcore/luni/src/main/java/java/security/cert/ |
PKIXParameters.java | 81 if (trustAnchors == null) { 82 throw new NullPointerException("trustAnchors == null"); 103 if (keyStore == null) { 104 throw new NullPointerException("keyStore == null"); 111 // keyStore is not null and loaded 122 trustAnchors.add(new TrustAnchor((X509Certificate)c, null)); 148 if (trustAnchors == null) { 149 throw new NullPointerException("trustAnchors == null"); 187 if (certPathCheckers == null) { 212 * null} to clear the checkers [all...] |
X509CRLSelector.java | 69 * null} if any issuer distinguished name will do. 72 if (issuers == null) { 73 issuerNames = null; 74 issuerPrincipals = null; 99 * null} if any issuer distinguished name will do. 104 if (names == null) { 105 issuerNames = null; 106 issuerPrincipals = null; 138 if (issuer == null) { 139 throw new NullPointerException("issuer == null"); [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
ExifData.java | 56 * Gets the compressed thumbnail. Returns null if there is no compressed 76 return mThumbnail != null; 87 mStripBytes.add(null); 125 * exists or null. 131 return null; 148 if (ifdData == null) { 157 * Otherwise returns null. 161 return (ifdData == null) ? null : ifdData.getTag(tag); 166 * with the same TID or null if none exist [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/ |
ValuesDescriptors.java | 92 null /* nsUri */, 99 null, // no child nodes 109 null /* nsUri */, 116 null, // no child nodes 122 null, // TODO find javadoc 123 null, // TODO find link to javadoc 126 null /* nsUri */, 130 null /* nsUri */, 136 null /* nsUri */, 155 null, // no child node [all...] |
/frameworks/base/core/java/android/widget/ |
QuickContactBadge.java | 54 private Bundle mExtras = null; 56 protected String[] mExcludeMimes = null; 80 this(context, null); 102 if (mOverlay != null && mOverlay.isStateful()) { 122 if (mOverlay == null || mOverlay.getIntrinsicWidth() == 0 || 143 return mContactUri != null || mContactEmail != null || mContactPhone != null; 150 if (mDefaultAvatar == null) { 167 mContactEmail = null; [all...] |
/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...] |