/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
CommonNicknameCache.java | 73 null, null, null, null, null); 88 * Returns nickname cluster IDs or null. Maintains cache. 91 if (mNicknameBloomFilter == null) { 97 return null; 101 String[] clusters = null; 105 if (ref == null) { [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
NoExecutePermissionTest.java | 36 String heapPermissions = null; 37 String stackPermissions = null; 39 Scanner scanner = null; 48 if (fields != null && fields.length >= 1) { 61 if (scanner != null) { 66 if (heapPermissions != null) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
CompositeGrammarTree.java | 38 /** Who is the parent node of this node; if null, implies node is root */ 47 if ( t==null ) { 48 return; // do nothing upon addChild(null) 50 if ( children==null ) { 62 for (int i = 0; r==null && children!=null && i < children.size(); i++) { 71 if ( grammar.tool!=null && key!=null && key.equals("language") && 72 grammar.tool.forcedLanguageOption!=null ) { 76 if ( o!=null ) { [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
TypeNotPresentExceptionTest.java | 27 TypeNotPresentException e = new TypeNotPresentException(null, null); 32 e = new TypeNotPresentException(getClass().getName(), null); 47 TypeNotPresentException e = new TypeNotPresentException(null, null); 50 e = new TypeNotPresentException(getClass().getName(), null);
|
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/ |
HttpsURLConnection_ImplTest.java | 38 if (ver.verify("localhost", null)) { 45 HttpsURLConnection con = new MyHttpsURLConnection(null); 50 if (ver.verify("localhost", null)) { 67 return null; 75 return null; 84 return null;
|
/external/apache-http/src/org/apache/http/auth/ |
AuthState.java | 65 this.authScheme = null; 66 this.authScope = null; 67 this.credentials = null; 71 return this.authScheme != null; 80 if (authScheme == null) { 100 * @return user credentials if available, <code>null</code otherwise 120 * @return actual authentication scope if available, <code>null</code otherwise 142 buffer.append(this.credentials != null ? "true" : "false");
|
/external/apache-http/src/org/apache/http/util/ |
LangUtils.java | 60 return hashCode(seed, obj != null ? obj.hashCode() : 0); 64 return obj1 == null ? obj2 == null : obj1.equals(obj2); 68 if (a1 == null) { 69 if (a2 == null) { 75 if (a2 != null && a1.length == a2.length) {
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemElement.java | 57 protected AVT m_name_avt = null; 92 protected AVT m_namespace_avt = null; 134 if(null != m_name_avt) 136 if(null != m_namespace_avt) 177 // if (null != prefix && prefix.length() == 0) 182 // if (null == foundPrefix) 196 * @param transformer non-null reference to the the current transform-time state. 210 String nodeName = m_name_avt == null ? null : m_name_avt.evaluate(xctxt, sourceNode, this); 212 String prefix = null; [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
keystone_promote_postflight.sh | 45 chown -Rh "${OWNER_GROUP}" "${APP}" >& /dev/null 48 chmod -R "${CHMOD_MODE}" "${APP}" >& /dev/null 53 find "${APP}" -type l -exec chmod -h "${CHMOD_MODE}" {} + >& /dev/null
|
/external/easymock/src/org/easymock/internal/matchers/ |
Equals.java | 34 if (this.expected == null) {
35 return actual == null;
50 if (o == null || !this.getClass().equals(o.getClass()))
53 return this.expected == null && other.expected == null
54 || this.expected != null
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
IntQueue.java | 33 if (tail != null) 37 if (head == null) 42 return head == null; 46 if (head == null) 51 if (head == null) 52 tail = null;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
Join.java | 10 String asString = obj == null ? null : obj.toString(); 11 if (obj != null && asString.length() > 0) { 23 String asString = obj == null ? null : obj.toString(); 24 if (asString != null && asString.length() > 0) {
|
/external/smack/src/org/jivesoftware/smack/util/collections/ |
AbstractMapEntry.java | 36 * @param key the key for the entry, may be null 37 * @param value the value for the entry, may be null 75 return (getKey() == null ? other.getKey() == null : getKey().equals(other.getKey())) && (getValue() == null ? other.getValue() == null : getValue().equals(other.getValue())); 86 return (getKey() == null ? 0 : getKey().hashCode()) ^ (getValue() == null ? 0 : getValue().hashCode());
|
/external/valgrind/main/none/tests/ |
fdleak_dup.stderr.exp | 4 Open file descriptor ...: /dev/null 7 Open file descriptor ...: /dev/null 16 Open file descriptor ...: /dev/null
|
fdleak_fcntl.stderr.exp | 4 Open file descriptor ...: /dev/null 7 Open file descriptor ...: /dev/null 16 Open file descriptor ...: /dev/null
|
/frameworks/base/core/java/com/android/internal/os/ |
SomeArgs.java | 59 args.mNext = null; 85 arg1 = null; 86 arg2 = null; 87 arg3 = null; 88 arg4 = null; 89 arg5 = null;
|
/frameworks/base/tests/permission/src/com/android/framework/permission/tests/ |
SmsManagerPermissionTest.java | 43 SmsManager.getDefault().sendTextMessage(SRC_NUMBER, DEST_NUMBER, MSG_CONTENTS, null, 44 null); 60 MSG_CONTENTS.getBytes(), null, null); 79 null, null);
|
/libcore/luni/src/main/java/java/io/ |
PipedOutputStream.java | 67 if (stream != null) { 69 target = null; 83 if (stream == null) { 84 throw new NullPointerException("stream == null"); 87 if (this.target != null) { 108 if (stream == null) { 173 if (stream == null) {
|
/libcore/luni/src/main/java/java/security/spec/ |
ECPoint.java | 38 affineX = null; 39 affineY = null; 52 if (this.affineX == null) { 53 throw new NullPointerException("affineX == null"); 56 if (this.affineY == null) { 57 throw new NullPointerException("affineY == null"); 64 * @return the x-coordinate, or {@code null} for the infinite point. 73 * @return the y-coordinate, or {@code null} fot the infinite point. 93 if (this.affineX != null) { 95 // no need to check for null in this cas [all...] |
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/ |
KeyManagerFactorySpiImpl.java | 20 if (ks == null && password == null) { 24 if (ks == null) { 28 if (password == null) { 37 if (spec == null) { 47 return null;
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
AssetFileAddress.java | 39 * Makes an AssetFileAddress. This may return null. 42 * @return the address, or null if the file does not exist or the parameters are not valid. 45 if (null == filename) return null; 47 if (!f.isFile()) return null; 52 * Makes an AssetFileAddress. This may return null. 57 * @return the address, or null if the file does not exist or the parameters are not valid. 61 if (null == filename) return null; 63 if (!f.isFile()) return null; [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
AssetFileAddress.java | 39 if (!file.isFile()) return null; 44 if (null == filename) return null; 50 if (null == filename) return null; 52 if (!f.isFile()) return null;
|
/frameworks/base/core/java/android/net/ |
RouteInfo.java | 68 * If destination is null, then gateway must be specified and the 74 * destination and gateway may not both be null. 81 if (destination == null) { 82 if (gateway != null) { 94 if (gateway == null) { 112 this(destination, gateway, null); 116 this(null, gateway, null); 120 this(host, null, null); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
ConstraintType.java | 56 null /* sourceX */, BOTTOM, null /* targetX */, TOP, 60 LAYOUT_BELOW(ATTR_LAYOUT_BELOW, null, TOP, null, BOTTOM, false, true, false, true), 61 ALIGN_TOP(ATTR_LAYOUT_ALIGN_TOP, null, TOP, null, TOP, false, true, false, false), 62 ALIGN_BOTTOM(ATTR_LAYOUT_ALIGN_BOTTOM, null, BOTTOM, null, BOTTOM, false, true, false, false), 63 ALIGN_LEFT(ATTR_LAYOUT_ALIGN_LEFT, LEFT, null, LEFT, null, false, false, true, false) [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStoreTest.java | 41 Cursor c = mContentResolver.query(mScannerUri, PROJECTION, null, null, null); 42 if (c != null) { 52 if (mVolumnBackup != null) { 68 selection, selectionArgs, null)); 77 selection, selectionArgs, null); 84 assertEquals(1, mContentResolver.delete(mScannerUri, null, null)); 85 assertNull(mContentResolver.query(mScannerUri, PROJECTION, null, null, null)) [all...] |