/libcore/luni/src/main/java/java/security/ |
Policy.java | 33 public static Policy getInstance(String type, Policy.Parameters params) throws NoSuchAlgorithmException { return null; } 35 public static Policy getInstance(String type, Policy.Parameters params, String provider) throws NoSuchProviderException, NoSuchAlgorithmException { return null; } 37 public static Policy getInstance(String type, Policy.Parameters params, Provider provider) throws NoSuchAlgorithmException { return null; } 39 public Policy.Parameters getParameters() { return null; } 41 public Provider getProvider() { return null; } 43 public String getType() { return null; } 47 public PermissionCollection getPermissions(CodeSource cs) { return null; } 51 public PermissionCollection getPermissions(ProtectionDomain domain) { return null; } 55 public static Policy getPolicy() { return null; }
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
SystemId.java | 59 factory = null; 60 builder = null; 78 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, 79 null, null, null, systemId);
|
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
X509ExtendedKeyManagerTest.java | 38 if (km.chooseEngineClientAlias(null, null, null) != null) { 39 fail("non null result"); 45 if (km.chooseEngineServerAlias(null, null, null) != null) { 46 fail("non null result") [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
TablesTest.java | 48 = Tables.immutableCell(null, null, null); 49 assertEquals("(null,null)=null", nullEntry.toString()); 61 .addEqualityGroup(Tables.immutableCell(null, null, null)) 67 = Tables.immutableCell(null, null, null) [all...] |
/libcore/luni/src/main/java/javax/xml/transform/dom/ |
DOMResult.java | 48 * will be set to <code>null</code>.</p> 51 setNode(null); 52 setNextSibling(null); 53 setSystemId(null); 67 * will be set to <code>null</code>.</p> 73 setNextSibling(null); 74 setSystemId(null); 86 * <p><code>siblingNode</code> will be set to <code>null</code>.</p> 93 setNextSibling(null); 110 * If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code> [all...] |
/cts/tests/tests/ndef/src/android/ndef/cts/ |
NdefTest.java | 42 r = new NdefRecord(NdefRecord.TNF_EMPTY, null, null, null); 50 assertEquals(new NdefRecord(NdefRecord.TNF_EMPTY, null, null, null), 51 new NdefRecord(NdefRecord.TNF_EMPTY, null, null, null)); 77 new NdefRecord(NdefRecord.TNF_EMPTY, null, null, null))) [all...] |
/external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/ |
optional-event-properties.js | 1 description("Tests the optional properties of DeviceMotionEvent. Each property should be null if not set, or set to null or undefined."); 17 shouldBeTrue("event.acceleration == null"); 18 shouldBeTrue("event.accelerationIncludingGravity == null"); 19 shouldBeTrue("event.rotationRate == null"); 20 shouldBeTrue("event.interval == null"); 45 shouldBeTrue("event.acceleration.z == null"); 47 shouldBeTrue("event.accelerationIncludingGravity.y == null"); 49 shouldBeTrue("event.rotationRate.alpha == null"); 55 shouldBeTrue("event.acceleration == null"); [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountAuthenticatorActivity.java | 34 * is never set or if it is set to null then error {@link AccountManager#ERROR_CODE_CANCELED} 38 private AccountAuthenticatorResponse mAccountAuthenticatorResponse = null; 39 private Bundle mResultBundle = null; 43 * Activity to be launched. If result is null or this method is never called then 54 * @param icicle the save instance data of this Activity, may be null 62 if (mAccountAuthenticatorResponse != null) { 71 if (mAccountAuthenticatorResponse != null) { 73 if (mResultBundle != null) { 79 mAccountAuthenticatorResponse = null;
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestDFAConversion.java | 49 checkDecision(g, 1, expecting, null, null, null, null, 0); 60 checkDecision(g, 1, expecting, null, null, null, null, 0); 72 checkDecision(g, 1, expecting, null, null, null, null, 0) [all...] |
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
optional-event-properties.js | 1 description('Tests the optional properties of DeviceOrientationEvent. Each property should be null if not set, or set to null or undefined.'); 6 shouldBeTrue("event.alpha == null"); 7 shouldBeTrue("event.beta == null"); 8 shouldBeTrue("event.gamma == null"); 16 shouldBeTrue("event.alpha == null"); 17 shouldBeTrue("event.beta == null"); 18 shouldBeTrue("event.gamma == null"); 26 shouldBeTrue("event.alpha == null"); 27 shouldBeTrue("event.beta == null"); [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
LocalItem.java | 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 32 * Make a new item. If both name and signature are null, null is returned. 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 38 * @return {@code non-null;} appropriate instance. 41 if (name == null && signature == null) { 42 return null; [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
LocalItem.java | 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 32 * Make a new item. If both name and signature are null, null is returned. 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 38 * @return {@code non-null;} appropriate instance. 41 if (name == null && signature == null) { 42 return null; [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
LocalItem.java | 25 /** {@code null-ok;} local variable name */ 28 /** {@code null-ok;} local variable signature */ 32 * Make a new item. If both name and signature are null, null is returned. 36 * @param name {@code null-ok;} local variable name 37 * @param signature {@code null-ok;} local variable signature 38 * @return {@code non-null;} appropriate instance. 41 if (name == null && signature == null) { 42 return null; [all...] |
/external/mockito/src/org/mockito/internal/listeners/ |
NotifiedMethodInvocationReport.java | 57 return throwable != null;
61 return (invocation.stubInfo() == null) ? null : invocation.stubInfo().stubbedAt().toString();
67 if (o == null || getClass() != o.getClass()) return false;
71 if (invocation != null ? !invocation.equals(that.invocation) : that.invocation != null) return false;
72 if (returnedValue != null ? !returnedValue.equals(that.returnedValue) : that.returnedValue != null)
74 if (throwable != null ? !throwable.equals(that.throwable) : that.throwable != null) return false; [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Event.java | 70 if (eventType == null) 71 throw new NullPointerException(" the eventType is null"); 92 if (eventId == null) 93 throw new NullPointerException(" the eventId parameter is null"); 98 * Gets the id of the EventHeader. This method may return null if the 115 if (eventType != null) 131 if (matchTarget.eventType == null && this.eventType != null) 133 else if (matchTarget.eventType != null && this.eventType == null) [all...] |
/external/proguard/src/proguard/ |
MemberSpecification.java | 46 null, 47 null, 48 null); 61 * to apply. The name may be null to specify 64 * null to specify any class member or it 67 * descriptor may be null to specify any 90 if (object == null || 100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) && 101 (this.name == null ? other.name == null : this.name.equals(other.name) ) & [all...] |
/packages/apps/Gallery2/tests/src/com/android/gallery3d/data/ |
GalleryAppStub.java | 31 public ImageCacheService getImageCacheService() { return null; } 32 public StateManager getStateManager() { return null; } 33 public DataManager getDataManager() { return null; } 34 public DownloadUtils getDownloadService() { return null; } 35 public DecodeUtils getDecodeService() { return null; } 37 public GLRoot getGLRoot() { return null; } 39 public Context getAndroidContext() { return null; } 41 public Looper getMainLooper() { return null; } 42 public Resources getResources() { return null; } 43 public ContentResolver getContentResolver() { return null; } [all...] |
/external/webkit/LayoutTests/fast/dom/DOMImplementation/script-tests/ |
createDocumentType-err.js | 31 { args: [null, undefined], code: 5 }, 32 { args: [undefined, null], code: 5 }, 33 { args: [undefined, undefined, null], code: 5 }, 34 { args: [null, null], code: 5 }, 35 { args: [null, null, null], code: 5 }, 36 { args: [null, ""], code: 5 }, 37 { args: ["", null], code: 5 } [all...] |
/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);
|
/cts/tests/tests/permission/src/android/permission/cts/ |
ContactsProviderTest.java | 52 null, null, null, null); 71 null, null, 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/clang/utils/ABITest/ |
summarize.sh | 11 if (! make test.$i.report &> /dev/null); then
|
/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
|