HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 2251 - 2275 of 19630) sorted by null

<<919293949596979899100>>

  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPMessage.java 133 * True if this is a null request.
265 * This method allows you to do pattern matching with incoming SIP messages. Null matches wild
272 if (other == null)
283 if (myHeaders == null || myHeaders.size() == 0)
339 if (myHdrs == null) {
377 if (this.messageContentObject != null) {
381 } else if (this.messageContent != null || this.messageContentBytes != null) {
383 String content = null;
385 if (messageContent != null)
    [all...]
  /cts/libs/deviceutil/src/android/cts/util/
WatchDog.java 35 private TimeoutCallback mCallback = null;
58 if (mThread == null) {
68 mThread = null;
69 mSemaphore = null;
84 if (mCallback == null) {
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
RSSurfaceViewTest.java 28 view = new RSSurfaceView(mCtx, null);
34 assertTrue(rs != null);
40 assertTrue(rs != null);
51 assertTrue(rs != null);
53 assertTrue(view.getRenderScriptGL() == null);
  /cts/tests/tests/webkit/src/android/webkit/cts/
MimeTypeMapTest.java 39 assertEquals("", MimeTypeMap.getFileExtensionFromUrl(null));
54 assertFalse(mMimeTypeMap.hasMimeType(null));
63 assertNull(mMimeTypeMap.getMimeTypeFromExtension(null));
74 assertFalse(mMimeTypeMap.hasExtension(null));
84 assertNull(mMimeTypeMap.getExtensionFromMimeType(null));
  /cts/tests/tests/widget/src/android/widget/cts/
AnalogClockTest.java 53 new AnalogClock(null);
60 new AnalogClock(null, null);
67 new AnalogClock(null, null, -1);
RadioButtonTest.java 45 new RadioButton(null);
46 fail("The constructor should throw NullPointerException when param Context is null.");
52 new RadioButton(null, attrs);
53 fail("The constructor should throw NullPointerException when param Context is null.");
56 new RadioButton(mContext, null);
60 new RadioButton(null, attrs, 0);
61 fail("The constructor should throw NullPointerException when param Context is null.");
64 new RadioButton(mContext, null, 0);
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
CtsJavaScanner.java 34 File sourceDir = null;
35 File docletPath = null;
48 if (sourceDir == null) {
53 if (docletPath == null) {
68 return null;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
AbstractXmlPullParser.java 65 String value = parser.getAttributeValue(null, name);
66 if (value != null) {
79 String stringValue = parser.getAttributeValue(null, name);
80 return stringValue != null &&
92 return parser.getAttributeValue(null, name);
  /development/samples/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 58 new String[]{People.DISPLAY_NAME}, null, null, null);
69 new String[]{Phones.NUMBER}, null, null, Phones.ISPRIMARY + " DESC");
  /development/samples/SipDemo/src/com/example/android/sip/
WalkieTalkieActivity.java 43 public String sipAddress = null;
45 public SipManager manager = null;
46 public SipProfile me = null;
47 public SipAudioCall call = null;
91 if (call != null) {
97 if (callReceiver != null) {
103 if(manager == null) {
115 if (manager == null) {
119 if (me != null) {
141 manager.open(me, pi, null);
    [all...]
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentTabsFragmentSupport.java 38 FragmentStackSupport.CountingFragment.class, null);
40 LoaderCursorSupport.CursorLoaderListFragment.class, null);
42 LoaderCustomSupport.AppListFragment.class, null);
44 LoaderThrottleSupport.ThrottledLoaderListFragment.class, null);
52 mTabHost = null;
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
MethodSourcerTest.java 43 mWriter = null;
53 null, //signature
54 null); //exception
69 null, //signature
86 null); //exception
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSyntaxMessage.java 48 this(msgID,grammar,offendingToken,null,exception);
57 super(msgID, arg, null);
66 if ( offendingToken!=null ) {
72 if (g != null) {
76 if ( arg!=null ) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 33 private OutputStream errSubstituteStream = null;
48 em.error(null, new NullPointerException(), ErrorManager.GENERIC_FAILURE);
49 em.error("An error message.", null, ErrorManager.GENERIC_FAILURE);
50 em.error(null, null, ErrorManager.GENERIC_FAILURE);
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Provider_ImplTest.java 57 "className", null, hm);
59 if (!p.implementsAlg("Type", "Algorithm", null, null) ||
60 !p.implementsAlg("MessageDigest", "SHA-1", null, null)) {
  /external/apache-harmony/x-net/src/test/java/javax/net/ssl/
TrustManagerFactorySpiTests.java 54 assertNull("Not null results", kmfSpi.engineGetTrustManagers());
55 KeyStore kStore = null;
56 ManagerFactoryParameters mfp = null;
68 assertNull("getTrustManagers() should return null object",
73 kStore.load(null, null);
79 mfp = new MyTrustManagerFactorySpi.Parameters(null);
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 54 if (username == null) {
55 throw new IllegalArgumentException("User name may not be null");
58 if (domain != null) {
61 this.domain = null;
63 if (this.domain != null && this.domain.length() > 0) {
96 if (o == null) return false;
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.java 78 if (authscope == null) {
79 throw new IllegalArgumentException("Authentication scope may not be null");
97 if (creds == null) {
101 AuthScope bestMatch = null;
109 if (bestMatch != null) {
125 if (authscope == null) {
126 throw new IllegalArgumentException("Authentication scope may not be null");
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 69 if (schreg == null) {
71 ("SchemeRegistry must not be null.");
83 if (request == null) {
85 ("Request must not be null.");
91 if (route != null)
97 if (target == null) {
99 ("Target host must not be null.");
112 if (proxy == null) {
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RefQueueWorker.java 75 if (queue == null) {
76 throw new IllegalArgumentException("Queue must not be null.");
78 if (handler == null) {
79 throw new IllegalArgumentException("Handler must not be null.");
95 if (this.workerThread == null) {
121 if (wt != null) {
122 this.workerThread = null; // indicate shutdown
WaitingThread.java 71 * or <code>null</code>
75 if (cond == null) {
76 throw new IllegalArgumentException("Condition must not be null.");
87 * @return the condition on which to wait, never <code>null</code>
99 * or <code>null</code>
110 * @return the thread which is waiting, or <code>null</code>
125 * @param deadline when to time out, or <code>null</code> for no timeout
142 if (this.waiter != null) {
156 if (deadline != null) {
165 this.waiter = null;
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicPathHandler.java 47 if (cookie == null) {
48 throw new IllegalArgumentException("Cookie may not be null");
50 if (value == null || value.trim().length() == 0) {
66 if (cookie == null) {
67 throw new IllegalArgumentException("Cookie may not be null");
69 if (origin == null) {
70 throw new IllegalArgumentException("Cookie origin may not be null");
74 if (topmostPath == null) {
  /external/apache-http/src/org/apache/http/protocol/
RequestTargetHost.java 64 if (request == null) {
65 throw new IllegalArgumentException("HTTP request may not be null");
67 if (context == null) {
68 throw new IllegalArgumentException("HTTP context may not be null");
73 if (targethost == null) {
81 if (address != null) {
85 if (targethost == null) {
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorNamespaceAlias.java 83 if(null == resultNS)
84 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, null, null);
89 if(null == resultNS)
90 handler.error(XSLTErrorResources.ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, new Object[] {prefix}, null);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SAXSourceLocator.java 74 m_locator = null;
104 * null if none is available.
109 return (null == m_locator) ? super.getPublicId() : m_locator.getPublicId();
122 * @return A string containing the system identifier, or null
128 return (null == m_locator) ? super.getSystemId() : m_locator.getSystemId();
148 return (null == m_locator) ? super.getLineNumber() : m_locator.getLineNumber();
168 return (null == m_locator) ? super.getColumnNumber() : m_locator.getColumnNumber();

Completed in 1256 milliseconds

<<919293949596979899100>>