/external/apache-http/src/org/apache/http/params/ |
HttpConnectionParams.java | 64 if (params == null) { 65 throw new IllegalArgumentException("HTTP parameters may not be null"); 79 if (params == null) { 80 throw new IllegalArgumentException("HTTP parameters may not be null"); 93 if (params == null) { 94 throw new IllegalArgumentException("HTTP parameters may not be null"); 111 if (params == null) { 112 throw new IllegalArgumentException("HTTP parameters may not be null"); 118 if (params == null) { 119 throw new IllegalArgumentException("HTTP parameters may not be null"); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemSort.java | 54 private XPath m_selectExpression = null; 76 error(XSLTErrorResources.ER_NO_CURLYBRACE, null); 102 private AVT m_lang_avt = null; 135 private AVT m_dataType_avt = null; 216 private AVT m_order_avt = null; 249 private AVT m_caseorder_avt = null; 323 return null; 338 if(null != m_caseorder_avt) 340 if(null != m_dataType_avt) 342 if(null != m_lang_avt [all...] |
/external/proguard/src/proguard/classfile/visitor/ |
VariableClassVisitor.java | 39 this(null); 64 if (classVisitor != null) 73 if (classVisitor != null)
|
/external/proguard/src/proguard/evaluation/value/ |
TopValue.java | 46 return this.getClass() == other.getClass() ? this : null; 56 return null; 64 return object != null &&
|
/external/replicaisland/src/com/replica/replicaisland/ |
TiledBackgroundVertexGrid.java | 23 super(null, 0, 0); 29 mGrid = null; 38 if (mGrid != null) {
|
VibrationSystem.java | 36 if (params != null && params.context != null) { 38 if (vibrator != null) {
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
NullDatabaseMap.java | 17 return null; 22 return null; 27 return null;
|
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeProvider.java | 49 * if (mAccessibilityNodeProvider == null) { 59 * return null; 64 * return null; 96 return null; 133 return null; 143 * @return The node info of the focused view or null. 148 return null;
|
/frameworks/base/core/tests/coretests/src/com/android/internal/util/ |
PredicatesTest.java | 39 assertTrue(Predicates.and(newArrayList(TRUE)).apply(null)); 40 assertTrue(Predicates.and(newArrayList(TRUE, TRUE)).apply(null)); 44 assertFalse(Predicates.and(newArrayList(FALSE, TRUE, TRUE)).apply(null)); 45 assertFalse(Predicates.and(newArrayList(TRUE, FALSE, TRUE)).apply(null)); 46 assertFalse(Predicates.and(newArrayList(TRUE, TRUE, FALSE)).apply(null)); 50 assertTrue(Predicates.or(newArrayList(TRUE, TRUE, TRUE)).apply(null)); 54 assertFalse(Predicates.or(newArrayList(FALSE, FALSE, FALSE)).apply(null)); 58 assertTrue(Predicates.or(newArrayList(TRUE, FALSE, FALSE)).apply(null)); 59 assertTrue(Predicates.or(newArrayList(FALSE, TRUE, FALSE)).apply(null)); 60 assertTrue(Predicates.or(newArrayList(FALSE, FALSE, TRUE)).apply(null)); [all...] |
/frameworks/base/graphics/java/android/graphics/ |
TemporaryBuffer.java | 30 sTemp = null; 33 if (buf == null || buf.length < len) { 48 private static char[] sTemp = null;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/ |
MediaNames.java | 111 "Test ID3V2 Album", "Test ID3V2 Artist", null, "Test ID3V2 Composer", 112 null, "(1)Classic Rock", "Test ID3V2 Title ", null, "77640", "1", null}, 114 "Test ID3V2 Album", "Test ID3V2 Artist", null, "Test ID3V2 Composer", 115 null, "(74)Acid Jazz", "Test ID3V2 Tag", null, "77640", "1", null}, 117 "Test ID3V1 Album", "Test ID3V1 Artist", null, null, null, "(15)" [all...] |
/frameworks/opt/net/voip/src/java/android/net/rtp/ |
AudioCodec.java | 56 public static final AudioCodec PCMU = new AudioCodec(0, "PCMU/8000", null); 61 public static final AudioCodec PCMA = new AudioCodec(8, "PCMA/8000", null); 67 public static final AudioCodec GSM = new AudioCodec(3, "GSM/8000", null); 73 public static final AudioCodec GSM_EFR = new AudioCodec(96, "GSM-EFR/8000", null); 80 public static final AudioCodec AMR = new AudioCodec(97, "AMR/8000", null); 102 * attribute, or null if it is not available. 104 * attribute, or null if it is not available. 105 * @return The configured AudioCodec or {@code null} if it is not supported. 109 return null; 112 AudioCodec hint = null; [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
BaseMenuWrapper.java | 37 if (frameworkItem != null) { 38 // Instantiate HashMap if null 39 if (mMenuItems == null) { 45 if (null == compatItem) { 52 return null; 56 if (frameworkSubMenu != null) { 57 // Instantiate HashMap if null 58 if (mSubMenus == null) { 64 if (null == compatSubMenu) { 70 return null; [all...] |
/libcore/harmony-tests/src/test/java/tests/api/java/nio/charset/ |
ISOCharsetDecoderTest.java | 48 return null; 54 return null; 58 return null;
|
/libcore/luni/src/main/java/java/security/ |
CodeSource.java | 32 public final Certificate[] getCertificates() { return null; } 34 public final CodeSigner[] getCodeSigners() { return null; } 36 public final URL getLocation() { return null; }
|
/libcore/luni/src/main/java/java/security/spec/ |
RSAMultiPrimePrivateCrtKeySpec.java | 68 * the information for the additional primes or {@code null} if 71 * if {@code otherPrimeInfo} is not null but empty. 87 if (modulus == null) { 88 throw new NullPointerException("modulus == null"); 90 if (privateExponent == null) { 91 throw new NullPointerException("privateExponent == null"); 93 if (publicExponent == null) { 94 throw new NullPointerException("publicExponent == null"); 96 if (primeP == null) { 97 throw new NullPointerException("primeP == null"); [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyPairTest.java | 48 return null; 61 return null; 71 * parameters (both <code>null</code>) 74 Object kp = new KeyPair(null, null); 77 kp = new KeyPair(null, TestKeyPair.getPrivate()); 79 kp = new KeyPair(TestKeyPair.getPublic(), null); 96 * Assertion: returns private key (<code>null</code> in this case) 99 KeyPair kp = new KeyPair(null, null); [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
PrivateKeyStub.java | 35 String algorithm = null; 36 String format = null; 37 byte [] encoded = null;
|
PublicKeyStub.java | 38 String algorithm = null; 39 String format = null; 40 byte [] encoded = null;
|
tmpCallbackHandler.java | 39 if (callback == null) { 40 throw new UnsupportedCallbackException(null, "callback is null"); 43 throw new UnsupportedCallbackException(null, "callback is empty");
|
/packages/apps/Browser/src/com/android/browser/ |
NfcHandler.java | 47 if (adapter == null) { 50 NfcHandler handler = null; 51 if (controller != null) { 59 // Passing a null controller causes us to disable 61 register(activity, null); 81 if ((mCurrentTab != null) && (mCurrentTab.getWebView() != null)) { 89 return null; 93 if ((mCurrentTab == null) || mIsPrivate) { 94 return null; [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
AttachmentCommandHandler.java | 34 startUpdate(0, null, uri, params, null, null);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/ |
SuggestionsInfoCompatUtils.java | 29 (Integer) CompatUtils.getFieldValue(null /* receiver */, null /* defaultValue */, 32 OBJ_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS != null
|
/packages/services/Telephony/src/com/android/phone/ |
CarrierLogo.java | 30 private static Map<String, Integer> sLogoMap = null; 33 if (sLogoMap == null) { 49 if (res != null) {
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
XSLTSchema.java | 82 XSLTAttributeDef hrefAttr = new XSLTAttributeDef(null, "href", 86 XSLTAttributeDef elementsAttr = new XSLTAttributeDef(null, "elements", 94 XSLTAttributeDef methodAttr = new XSLTAttributeDef(null, "method", 96 XSLTAttributeDef versionAttr = new XSLTAttributeDef(null, "version", 98 XSLTAttributeDef encodingAttr = new XSLTAttributeDef(null, "encoding", 100 XSLTAttributeDef omitXmlDeclarationAttr = new XSLTAttributeDef(null, 104 XSLTAttributeDef standaloneAttr = new XSLTAttributeDef(null, 107 XSLTAttributeDef doctypePublicAttr = new XSLTAttributeDef(null, 110 XSLTAttributeDef doctypeSystemAttr = new XSLTAttributeDef(null, 113 XSLTAttributeDef cdataSectionElementsAttr = new XSLTAttributeDef(null, [all...] |