/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/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
SharedBuffer.java | 25 private volatile Buffer mProducer = null; 26 private volatile Buffer mConsumer = null; 27 private volatile Buffer mIntermediate = null; 33 if (mProducer != null 36 mProducer = null; 38 if (mProducer == 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;
|
/pdk/apps/CameraITS/build/ |
envsetup.sh | 23 command -v adb >/dev/null 2>&1 || \ 26 command -v python >/dev/null 2>&1 || \ 32 python -c 'import numpy, PIL, Image, matplotlib, pylab' >/dev/null 2>&1 || \
|
/external/chromium_org/v8/test/webkit/ |
function-toString-object-literals.js | 39 shouldBe("compileAndSerialize('a = { 1: null }')", "'a = { 1: null }'"); 40 shouldBe("compileAndSerialize('a = { 0: null }')", "'a = { 0: null }'"); 41 shouldBe("compileAndSerialize('a = { 1.0: null }')", "'a = { 1.0: null }'"); 42 shouldBe("compileAndSerialize('a = { \"1.0\": null }')", "'a = { \"1.0\": null }'"); 43 shouldBe("compileAndSerialize('a = { 1e-500: null }')", "'a = { 1e-500: null }'"); [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
KeySpecParserTests.java | 63 return null; 113 "a", null, ICON_UNDEFINED, 'a'); 115 PAIR1, null, ICON_UNDEFINED, CODE1); 117 "|", null, ICON_UNDEFINED, '|'); 119 "\\", null, ICON_UNDEFINED, '\\'); 121 ",", null, ICON_UNDEFINED, ','); 123 ",", null, ICON_UNDEFINED, ','); 125 "a", null, ICON_UNDEFINED, 'a'); 127 PAIR2, null, ICON_UNDEFINED, CODE2); 129 "!", null, ICON_UNDEFINED, '!') [all...] |
/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...] |
/frameworks/base/services/java/com/android/server/ |
PreferredComponent.java | 67 mParseError = null; 68 if (set != null) { 75 if (cn == null) { 76 mSetPackages = null; 77 mSetClasses = null; 78 mSetComponents = null; 89 mSetPackages = null; 90 mSetClasses = null; 91 mSetComponents = null; 98 mShortComponent = parser.getAttributeValue(null, ATTR_NAME) [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...] |
/art/test/003-omnibus-opcodes/src/ |
Monitor.java | 28 obj = null; // does NOT cause a failure on exit 29 Main.assertTrue(obj == null); 37 Object obj = null;
|
/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...] |
/developers/build/prebuilts/gradle/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|
/developers/build/prebuilts/gradle/AdvancedImmersiveMode/AdvancedImmersiveModeSample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|
/developers/build/prebuilts/gradle/BasicAccessibility/BasicAccessibilitySample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|
/developers/build/prebuilts/gradle/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|
/developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|
/developers/build/prebuilts/gradle/BasicGestureDetect/BasicGestureDetectSample/src/main/java/com/example/android/common/logger/ |
MessageOnlyLogFilter.java | 41 if (mNext != null) { 42 getNext().println(Log.NONE, null, msg, null);
|