/art/test/CreateMethodSignature/ |
CreateMethodSignature.java | 18 Float m1(int a, double b, long c, Object d) { return null; } 19 CreateMethodSignature m2(boolean x, short y, char z) { return null; }
|
/cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/ |
Calendarcommon2Test.java | 37 RecurrenceSet recurSet = new RecurrenceSet(null, null, null, null); 38 ICalendar.Component component = new ICalendar.Component("CTS", null); 41 assertTrue(properties == null); 43 recurSet.addPropertiesForRuleStr(component, null, null);
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiP2pService.java | 11 String instanceName = null; 12 String serviceRegistrationType = null;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
RewriteCardinalityException.java | 42 if ( elementDescription!=null ) { 45 return null;
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/interfaces/ |
RSAPrivateCrtKeyTest.java | 68 return null; 71 return null; 74 return null; 77 return null; 80 return null; 83 return null; 86 return null; 89 return null;
|
/external/chromium_org/remoting/host/installer/linux/debian/ |
postrm | 10 delgroup --quiet chrome-remote-desktop > /dev/null || true
|
/external/chromium_org/tools/git/ |
git-utils.sh | 6 TPUT=$(which tput 2>/dev/null) 7 if test -x "$TPUT" && $TPUT setaf 1 >/dev/null ; then
|
/external/clang/utils/ABITest/ |
summarize.sh | 11 if (! make test.$i.report &> /dev/null); then
|
/external/droiddriver/src/com/google/android/droiddriver/util/ |
TextUtils.java | 24 return input == null ? null : input.toString();
|
/external/dropbear/libtomcrypt/ |
testbuild.sh | 3 make clean 1>/dev/null 2>/dev/null 7 if find testok.txt -type f 1>/dev/null 2>/dev/null ; then
|
/external/elfutils/tests/ |
run-native-test.sh | 44 kill -9 $native 2> /dev/null || : 45 wait $native 2> /dev/null || : 60 $cc -o native -g native.c > /dev/null 2>&1 && 62 { ./native > /dev/null 2>&1 & native=$! ; } && 63 sleep 1 && kill -0 $native 2> /dev/null && 71 testrun "$@" -e $1 > /dev/null 75 testrun "$@" -p $$ > /dev/null 78 test $native -eq 0 || testrun "$@" -p $native > /dev/null
|
/external/javassist/src/main/javassist/ |
LoaderClassPath.java | 52 Object cl = null; 53 if (clref != null) 56 return cl == null ? "<null>" : cl.toString(); 67 if (cl == null) 68 return null; // not found 78 * @return null if the class file could not be found. 83 if (cl == null) 84 return null; // not found 93 clref = null; [all...] |
/external/replicaisland/src/com/replica/replicaisland/ |
HitPoint.java | 28 hitPoint = null; 29 hitNormal = null;
|
/external/valgrind/main/none/tests/ |
fdleak_dup2.stderr.exp | 4 Open file descriptor ...: /dev/null 7 Open file descriptor ...: /dev/null 10 Open file descriptor ...: /dev/null 19 Open file descriptor ...: /dev/null
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
InputPort.java | 32 if (mSourcePort != null) { 39 return mSourcePort != null; 44 if (mSourcePort != null && !mSourcePort.isOpen()) { 50 if (mSourcePort != null && mSourcePort.isOpen()) { 61 return mSourcePort == null ? null : mSourcePort.getFilter(); 65 return mSourcePort != null ? mSourcePort.getPortFormat() : getPortFormat(); 69 return null;
|
/frameworks/base/services/java/com/android/server/am/ |
ThumbnailHolder.java | 26 lastThumbnail = null; 27 lastDescription = null;
|
/libcore/crypto/src/main/java/org/conscrypt/ |
ServerSessionContext.java | 57 if (session != null) { 62 if (persistentCache != null) { 64 if (data != null) { 65 session = toSession(data, null, -1); 66 if (session != null && session.isValid()) { 73 return null; 81 if (persistentCache != null) { 83 if (data != null) {
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLParameters.java | 33 * protocols are initialized to null and client authentication 44 * use within the SSLParameters, or null. 56 * use within the SSLParameters, or null. 58 * use within the SSLParameters, or null. 67 * Returns a copy of the cipher suites, or null if none have been 71 if (cipherSuites == null) { 72 return null; 78 * Sets the cipher suites to a copy of the input, or null 81 this.cipherSuites = ((cipherSuites == null) 82 ? null [all...] |
SSLServerSocketFactory.java | 43 if (defaultServerSocketFactory != null) { 46 if (defaultName == null) { 48 if (defaultName != null) { 50 if (cl == null) { 60 if (defaultServerSocketFactory == null) { 65 context = null; 67 if (context != null) { 71 if (defaultServerSocketFactory == null) {
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
JoinContactLoader.java | 63 super(context, null, null, null, null, null); 81 .query(mSuggestionUri, mProjection, null, null, null);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
DictAndKeyboard.java | 36 if (keyboardLayoutSet == null) { 37 mKeyboard = null; 38 mManualShiftedKeyboard = null; 47 if (mKeyboard == null) { 48 return null; 50 return mKeyboard.getKey(codePoint) != null ? mKeyboard : mManualShiftedKeyboard; 54 return mKeyboard == null ? null : mKeyboard.getProximityInfo();
|
/libcore/luni/src/main/java/java/security/cert/ |
TrustAnchor.java | 60 * null} if none. 65 if (trustedCert == null) { 66 throw new NullPointerException("trustedCert == null"); 69 // copy nameConstraints if not null 70 if (nameConstraints != null) { 76 this.nameConstraints = null; 78 this.caName = null; 79 this.caPrincipal = null; 80 this.caPublicKey = null; 97 * null} if none [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/ |
ResourceNameValidatorTest.java | 36 assertTrue(validator.isValid("foo") == null); 37 assertTrue(validator.isValid("foo.xml") == null); 38 assertTrue(validator.isValid("Foo123_$") == null); 39 assertTrue(validator.isValid("foo.xm") == null); // For non-file types, . => _ 42 assertTrue(validator.isValid("") != null); 43 assertTrue(validator.isValid(" ") != null); 44 assertTrue(validator.isValid("foo bar") != null); 45 assertTrue(validator.isValid("1foo") != null); 46 assertTrue(validator.isValid("foo%bar") != null); 48 ResourceType.STRING).isValid("foo") != null); [all...] |
/art/test/097-duplicate-method/src/ |
Main.java | 24 if (Test.run() != null) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_class/d/ |
T_const_class_1.java | 22 return null;
|