HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 351 - 375 of 19496) sorted by null

<<11121314151617181920>>

  /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/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/Phone/src/com/android/phone/
CarrierLogo.java 30 private static Map<String, Integer> sLogoMap = null;
33 if (sLogoMap == null) {
49 if (res != 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/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeySpecParserTests.java 102 "a", null, ICON_UNDEFINED, 'a');
104 PAIR1, null, ICON_UNDEFINED, CODE1);
106 "|", null, ICON_UNDEFINED, '|');
108 "\\", null, ICON_UNDEFINED, '\\');
110 ",", null, ICON_UNDEFINED, ',');
112 ",", null, ICON_UNDEFINED, ',');
114 "a", null, ICON_UNDEFINED, 'a');
116 PAIR2, null, ICON_UNDEFINED, CODE2);
118 "!", null, ICON_UNDEFINED, '!');
120 "!", null, ICON_UNDEFINED, '!')
    [all...]
  /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...]
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageComposeTests.java 171 ContentUris.withAppendedId(Account.CONTENT_URI, mCreatedAccountId), null, null); local
189 int sigLength = (mSignature == null) ? 0 : (1 + mSignature.length());
213 a.setInitialComposeText(null, null);
214 checkFields(SENDER + ", ", null, null, "Re: " + SUBJECT, null, null);
219 message.mFrom = null;
    [all...]
  /build/tools/droiddoc/test/generics/src/com/android/generics/
Foo.java 24 return null;
FooBar.java 29 super(null);
34 return null;
38 return null;
42 return null;
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_NameValueTableTest.java 35 Cursor c = cr.query(uri, null, null, null, null);
42 c = cr.query(uri, null, null, null, null);
49 c = cr.query(uri, null, selection, null, null)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_object/d/
T_aget_object_8.java 22 return null;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/filled_new_array/d/
T_filled_new_array_1.java 21 return null;
T_filled_new_array_2.java 21 return null;
T_filled_new_array_9.java 21 return null;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/filled_new_array_range/d/
T_filled_new_array_range_1.java 21 return null;
T_filled_new_array_range_2.java 21 return null;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_eqz/d/
T_if_eqz_2.java 6 return o == null ? 1 : 1234;
T_if_eqz_4.java 6 return o == null ? 1 : 1234;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/if_nez/d/
T_if_nez_2.java 6 return o != null ? 1 : 1234;

Completed in 460 milliseconds

<<11121314151617181920>>