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

<<21222324252627282930>>

  /libcore/luni/src/test/java/tests/api/java/util/
SampleBundleClass.java 32 if (singleton != null) {
40 bundle = null;
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLSocketFactoryImpl.java 19 if (socket == null) {
25 if (s == null || s.equals("")) {
39 return null;
43 return null;
52 return null;
61 return null;
70 return null;
79 return null;
  /packages/apps/Dialer/tests/src/com/android/dialer/list/
PhoneFavoritesTileAdapterTest.java 11 mAdapter = new PhoneFavoritesTileAdapter(getContext(), null, null, 3, 1);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QsbApplicationWrapper.java 28 if (mApp != null) {
36 if (mApp == null) {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/
TempDirectory.java 28 private static File sTempDirectory = null;
35 if (sTempDirectory == null) {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
MessageDateComparator.java 25 if (o1.getSentDate() == null) {
27 } else if (o2.getSentDate() == null) {
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOExceptionWithCause.java 47 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
62 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
65 super(cause == null ? null : cause.toString());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SettingsSecureCompatUtils.java 35 null /* receiver */, null /* defaultValue */, FIELD_ACCESSIBILITY_SPEAK_PASSWORD);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SkbPool.java 27 private static SkbPool mInstance = null;
36 if (null == mInstance) mInstance = new SkbPool();
52 if (null != context) {
55 if (null != t) {
60 return null;
75 if (null != context) {
78 if (skb != null) {
86 return null;
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
IntEditor.java 25 return str == null ? null : Integer.parseInt(str);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLSchema.java 250 attribute("a", "hreflang", "NMTOKEN", null);
252 attribute("a", "tabindex", "NMTOKEN", null);
253 attribute("applet", "align", "NMTOKEN", null);
254 attribute("area", "nohref", "BOOLEAN", null);
256 attribute("area", "tabindex", "NMTOKEN", null);
258 attribute("button", "disabled", "BOOLEAN", null);
259 attribute("button", "tabindex", "NMTOKEN", null);
261 attribute("caption", "align", "NMTOKEN", null);
262 attribute("col", "align", "NMTOKEN", null);
264 attribute("col", "valign", "NMTOKEN", null);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 68 throw new RuntimeException(XMLMessages.createXMLMessage(msg, null));
90 * @return null
99 return null;
131 * @return null
138 return null;
144 * @return null
151 return null;
157 * @return null
164 return null;
170 * @return null
    [all...]
  /libcore/luni/src/main/java/java/net/
URI.java 98 * have a non-null path, though that path may be the empty string.
210 * @param scheme the URI scheme, or null for a non-absolute URI.
215 if (scheme != null) {
219 if (schemeSpecificPart != null) {
222 if (fragment != null) {
233 * @param scheme the URI scheme, or null for a non-absolute URI.
237 if (scheme == null && userInfo == null && host == null && path == null
    [all...]
  /cts/tools/dasm/src/java_cup/
lr_item_core.java 35 symbol after_dot = null;
38 if (prod == null)
40 "Attempt to create an lr_item_core with a null production");
104 protected symbol _symbol_after_dot = null;
117 * we return null. */
127 * (return null or the non terminal).
137 if (sym != null && sym.is_non_term())
140 return null;
164 return other != null &&
211 if (_the_production.lhs() != null &&
    [all...]
  /external/apache-http/src/org/apache/http/client/utils/
URIUtils.java 82 if (host != null) {
83 if (scheme != null) {
93 if (path == null || !path.startsWith("/")) {
96 if (path != null) {
99 if (query != null) {
103 if (fragment != null) {
130 if (uri == null) {
131 throw new IllegalArgumentException("URI may nor be null");
133 if (target != null) {
140 dropFragment ? null : uri.getRawFragment())
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 67 this(null, false);
71 if (this.strict == null) {
78 if (this.compat == null) {
85 if (this.netscape == null) {
87 if (patterns == null) {
98 if (header == null) {
99 throw new IllegalArgumentException("Header may not be null");
101 if (origin == null) {
102 throw new IllegalArgumentException("Cookie origin may not be null");
108 if (helem.getParameterByName("version") != null) {
    [all...]
  /external/mockito/src/org/mockito/internal/progress/
MockingProgressImpl.java 27 private Location stubbingInProgress = null;
36 iOngoingStubbing = null;
50 iOngoingStubbing = null;
54 if (verificationMode == null) {
55 return null;
59 verificationMode = null;
72 if (stubbingInProgress != null) {
74 stubbingInProgress = null;
84 if (verificationMode != null) {
86 verificationMode = null;
    [all...]
  /frameworks/base/core/java/android/net/http/
IdleCache.java 50 private IdleReaper mThread = null;
79 if (entry.mHost == null) {
86 if (mThread == null) {
98 Connection ret = null;
104 if (eHost != null && eHost.equals(host)) {
106 entry.mHost = null;
107 entry.mConnection = null;
120 if (entry.mHost != null) {
121 entry.mHost = null;
123 entry.mConnection = null;
    [all...]
  /frameworks/base/keystore/tests/src/android/security/
KeyPairGeneratorSpecTest.java 43 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1,
92 new KeyPairGeneratorSpec(null, TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1, SERIAL_1, NOW,
94 fail("Should throw IllegalArgumentException when context is null");
101 new KeyPairGeneratorSpec(getContext(), null, "RSA", 1024, null, TEST_DN_1, SERIAL_1, NOW, local
103 fail("Should throw IllegalArgumentException when keystoreAlias is null");
110 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, null, SERIAL_1, NOW, local
112 fail("Should throw IllegalArgumentException when subjectDN is null");
119 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1, null, NOW, local
128 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1, SERIAL_1, local
129 null, NOW_PLUS_10_YEARS, 0); local
137 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1, SERIAL_1, local
138 NOW, null, 0); local
146 new KeyPairGeneratorSpec(getContext(), TEST_ALIAS_1, "RSA", 1024, null, TEST_DN_1, SERIAL_1, local
    [all...]
  /frameworks/base/services/java/com/android/server/am/
UriPermissionOwner.java 48 if (externalToken == null) {
58 return null;
68 && readUriPermissions != null) {
73 readUriPermissions = null;
76 && writeUriPermissions != null) {
81 writeUriPermissions = null;
87 && readUriPermissions != null) {
98 readUriPermissions = null;
102 && writeUriPermissions != null) {
113 writeUriPermissions = null;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
ConversionUtilities.java 42 if (newText == null) {
45 else if (sb == null) {
77 StringBuffer sbHtml = null;
78 StringBuffer sbText = null;
79 StringBuffer sbHtmlReply = null;
80 StringBuffer sbTextReply = null;
81 StringBuffer sbIntroText = null;
86 String replyTag = null;
87 if (replyTags != null && replyTags.length > 0) {
93 if (replyTag != null) {
    [all...]
  /external/pixman/pixman/
pixman-arm-simd.c 178 PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, a8r8g8b8, armv6_composite_src_8888_8888),
179 PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, a8b8g8r8, armv6_composite_src_8888_8888),
180 PIXMAN_STD_FAST_PATH (SRC, a8r8g8b8, null, x8r8g8b8, armv6_composite_src_8888_8888),
181 PIXMAN_STD_FAST_PATH (SRC, a8b8g8r8, null, x8b8g8r8, armv6_composite_src_8888_8888),
182 PIXMAN_STD_FAST_PATH (SRC, x8r8g8b8, null, x8r8g8b8, armv6_composite_src_8888_8888),
183 PIXMAN_STD_FAST_PATH (SRC, x8b8g8r8, null, x8b8g8r8, armv6_composite_src_8888_8888),
185 PIXMAN_STD_FAST_PATH (SRC, x8b8g8r8, null, a8b8g8r8, armv6_composite_src_x888_8888),
186 PIXMAN_STD_FAST_PATH (SRC, x8r8g8b8, null, a8r8g8b8, armv6_composite_src_x888_8888),
188 PIXMAN_STD_FAST_PATH (SRC, r5g6b5, null, r5g6b5, armv6_composite_src_0565_0565),
189 PIXMAN_STD_FAST_PATH (SRC, b5g6r5, null, b5g6r5, armv6_composite_src_0565_0565)
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 40 mDatabase = getContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
90 Cursor cursor = null;
93 new String[]{"foo"}, null, null, null);
98 if (cursor != null) {
104 new String[]{"foo", "bar"}, null, null, null);
109 if (cursor != null) {
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ButtonTest.java 40 new Button(null, null, -1);
47 new Button(null, null);
54 new Button(null);
CheckBoxTest.java 39 new CheckBox(null, null, -1);
46 new CheckBox(null, null);
53 new CheckBox(null);

Completed in 2258 milliseconds

<<21222324252627282930>>