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

<<21222324252627282930>>

  /cts/tests/tests/widget/src/android/widget/cts/
ImageButtonTest.java 42 new ImageButton(null);
48 new ImageButton(null, null);
54 new ImageButton(null, null, -1);
  /cts/tools/dasm/src/java_cup/
symbol_part.java 25 if (sym == null)
27 "Attempt to construct a symbol_part with a null symbol");
38 this(sym,null);
63 return other != null && super.equals(other) &&
84 (the_symbol()==null ? 0 : the_symbol().hashCode());
92 if (the_symbol() != null)
  /cts/tools/vm-tests-tf/src/dot/junit/
DxAbstractMain.java 39 if (expected == null && actual == null)
41 if (expected != null && expected.equals(actual))
55 if (object == null) throw new RuntimeException("AssertionFailedError: object was null");
59 if (object != null) throw new RuntimeException("AssertionFailedError: object was not null");
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyInstrumentationEvent.java 42 if (cn == null || mTestCaseName == null)
48 iam.startInstrumentation(cn, null, 0, args, null, null, 0);
  /external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/
Os.java 195 return isOs(family, null, null, null);
207 return isOs(null, name, null, null);
219 return isOs(null, null, arch, null);
231 return isOs(null, null, null, version)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestExecutor.java 108 if (request == null) {
109 throw new IllegalArgumentException("HTTP request may not be null");
111 if (conn == null) {
112 throw new IllegalArgumentException("Client connection may not be null");
114 if (context == null) {
115 throw new IllegalArgumentException("HTTP context may not be null");
120 if (response == null) {
151 if (request == null) {
152 throw new IllegalArgumentException("HTTP request may not be null");
154 if (processor == null) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeList.java 73 if (dtmIterator != null) {
101 * the list, this returns <code>null</code>.
104 * <code>NodeList</code>, or <code>null</code> if that is not a valid
109 if (m_iter != null) {
111 if (handle == DTM.NULL) {
112 return null;
116 return null;
125 return (m_iter != null) ? m_iter.getLength() : 0;
  /external/chromium/third_party/libevent/test/
test.sh 13 if ./test-init 2>/dev/null ;
22 if ./test-eof >/dev/null ;
29 if ./test-weof >/dev/null ;
36 if ./test-time >/dev/null ;
43 if ./regress >/dev/null ;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DeviceUtils.java 22 private static Boolean sIsTv = null;
23 private static Boolean sIsTablet = null;
30 if (sIsTablet == null) {
51 if (sIsTv == null) {
53 if (manager != null) {
  /external/chromium_org/third_party/libevent/test/
test.sh 13 if ./test-init 2>/dev/null ;
22 if ./test-eof >/dev/null ;
29 if ./test-weof >/dev/null ;
36 if ./test-time >/dev/null ;
43 if ./regress >/dev/null ;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTooltipTextProvider.java 36 String header = null;
37 String content = null;
46 if (header == null || content == null) {
47 return null;
  /external/jdiff/src/jdiff/
DiffOutput.java 15 public String pkgName_ = null;
17 /** The class name for this difference, may be null. */
18 public String className_ = null;
21 public String id_ = null;
24 public String title_ = null;
27 public String text_ = null;
  /external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
ResourceLoaderAdaptor.java 52 if (csFileLoader != null) {
53 if (hdf.getData() == null) {
59 if (file == null) {
69 if (reader == null) {
74 if (loadPaths == null || loadPaths.isEmpty()) {
98 * @return a File object corresponding to the existing file or {@code null} if it does not exist.
104 return file.exists() ? file : null;
106 File file = null;
107 // loadPathCache is null when load path caching is disabled at the
110 if (loadPathCache != null) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 115 if (this.authority != null) {
117 if (userInfo != null)
166 if (a.getUser()==null ^ b.getUser()==null) return false;
167 if (a.getUserPassword()==null ^ b.getUserPassword()==null) return false;
169 if (a.getUser()!=null && !RFC2396UrlDecoder.decode(a.getUser()).equals(RFC2396UrlDecoder.decode(b.getUser()))) return false;
170 if (a.getUserPassword()!=null && !RFC2396UrlDecoder.decode(a.getUserPassword()).equals(RFC2396UrlDecoder.decode(b.getUserPassword()))) return false;
171 if (a.getHost() == null ^ b.getHost() == null) return false
    [all...]
  /external/openssh/
fixprogs 47 open (STDIN, "</dev/null");
48 open (STDOUT, ">/dev/null");
49 open (STDERR, ">/dev/null");
65 ($null, $null, $rate) = split(/,/, $ent[0]);
  /external/proguard/src/proguard/classfile/visitor/
VariableMemberVisitor.java 39 this(null);
64 if (memberVisitor != null)
73 if (memberVisitor != null)
82 if (memberVisitor != null)
91 if (memberVisitor != null)
  /external/smack/src/org/apache/harmony/javax/security/auth/callback/
PasswordCallback.java 40 if (prompt == null || prompt.length() == 0) {
90 if (password == null) {
108 if (inputPassword != null) {
113 return null;
120 if (inputPassword != null) {
  /external/smack/src/org/jivesoftware/smackx/pubsub/
OptionsExtension.java 30 this(subscriptionJid, null, null);
35 this(subscriptionJid, nodeId, null);
62 if (getNode() != null)
65 if (id != null)
UnsubscribeExtension.java 31 this(subscriptionJid, null, null);
36 this(subscriptionJid, nodeId, null);
63 if (getNode() != null)
66 if (id != null)
  /frameworks/base/core/java/android/widget/
DoubleDigitManager.java 49 if (intermediateDigit == null) {
54 if (intermediateDigit != null) {
56 intermediateDigit = null;
66 intermediateDigit = null;
70 intermediateDigit = null;
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
ArrayUtilsTest.java 34 assertTrue(ArrayUtils.contains(new Object[] { A, null, C }, null));
36 assertFalse(ArrayUtils.contains(new Object[] { A, B, C }, null));
37 assertFalse(ArrayUtils.contains(new Object[] { }, null));
38 assertFalse(ArrayUtils.contains(new Object[] { null }, A));
52 assertEquals(-1, ArrayUtils.indexOf(new Object[] { A, B, C }, null));
54 assertEquals(-1, ArrayUtils.indexOf(new Object[] { }, null));
56 assertEquals(0, ArrayUtils.indexOf(new Object[] { null, null }, null));
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityContainer.java 14 this(null, null, 0);
28 return null;
33 if (flipper != null) {
40 if (flipper != null) {
  /frameworks/base/tests/permission/src/com/android/framework/permission/tests/
WindowManagerPermissionTests.java 46 mWm.pauseKeyDispatching(null);
56 mWm.resumeKeyDispatching(null);
76 mWm.addWindowToken(null, 0);
86 mWm.removeWindowToken(null);
96 mWm.addAppToken(0, null, 0, 0, 0, false, false, 0, 0);
106 mWm.setAppGroupId(null, 0);
116 mWm.updateOrientationFromAppTokens(new Configuration(), null);
126 mWm.setAppOrientation(null, 0);
127 mWm.addWindowToken(null, 0);
137 mWm.setFocusedApp(null, false)
    [all...]
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
MediaPlayerDataSource.java 44 mPath = null;
48 mContext = null;
49 mUri = null;
54 if (mContext != null) {
62 if (mContext != null) {
  /frameworks/opt/net/voip/src/java/android/net/rtp/
AudioStream.java 36 * AudioGroup by calling {@link #join(AudioGroup)} with {@code null} and put it
68 return mGroup != null;
81 * by calling this method with {@code null}.
83 * @param group The AudioGroup to join or {@code null} to leave.
92 if (mGroup != null) {
94 mGroup = null;
96 if (group != null) {
104 * Returns the {@link AudioCodec}, or {@code null} if it is not set.
161 if (mCodec != null && type == mCodec.type) {

Completed in 1071 milliseconds

<<21222324252627282930>>