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

<<919293949596979899100>>

  /external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/
ChannelBindingTest.java 50 ChannelBinding cb = new ChannelBinding(null);
56 ChannelBinding cb = new ChannelBinding(addr, null, null);
71 ChannelBinding cb = new ChannelBinding(null);
77 ChannelBinding cb = new ChannelBinding(null, addr, null);
90 ChannelBinding cb = new ChannelBinding(null);
95 ChannelBinding cb = new ChannelBinding(null);
96 assertTrue((new ChannelBinding(null, null, null
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertStore1Test.java 63 public static String [] validValuesC = null;
81 LDAPSupport = (defaultProvider != null);
82 defaultProviderName = (LDAPSupport ? defaultProvider.getName() : null);
87 CollectionSupport = (defaultProviderCol != null);
88 defaultProviderColName = (CollectionSupport ? defaultProviderCol.getName() : null);
97 private Provider dProv = null;
98 private String dName = null;
99 private String dType = null;
100 private CertStoreParameters dParams = null;
119 return null;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 84 if (null != arg1Expr)
97 if (baseNode == DTM.NULL)
102 warn(xctxt, XSLTErrorResources.WG_EMPTY_SECOND_ARG, null);
113 // if (baseDoc == DTM.NULL /* || baseDoc instanceof Stylesheet -->What to do?? */)
140 assertion(null != xctxt.getNamespaceContext(), "Namespace context can not be null!");
147 ? arg.iter() : null;
148 int pos = DTM.NULL;
150 while ((null == iterator) || (DTM.NULL != (pos = iterator.nextNode()))
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMHelper.java 74 * null if we can't find a DOM implementation that permits creating
115 XMLErrorResources.ER_CREATEDOCUMENT_NOT_SUPPORTED, null)); //"createDocument() not supported in XPathContext!");
117 // return null;
128 * null if we can't find a DOM implementation that permits creating
152 // return (null == m_envSupport) ? false : m_envSupport.shouldStripSourceNode(textNode);
218 if (null != parent1)
222 // If both parents are null, ordering is not defined.
247 while (parent1 != null)
254 while (parent2 != null)
288 Node prevChild1 = null, prevChild2 = null; // so we can "back up
    [all...]
  /external/javassist/src/main/javassist/bytecode/
MethodInfo.java 39 ArrayList attribute; // may be null
61 attribute = null;
141 if (invisibleAnnotations != null) {
142 invisibleAnnotations = invisibleAnnotations.copy(cp, null);
148 if (visibleAnnotations != null) {
149 visibleAnnotations = visibleAnnotations.copy(cp, null);
155 if (parameterInvisibleAnnotations != null) {
156 parameterInvisibleAnnotations = parameterInvisibleAnnotations.copy(cp, null);
162 if (parameterVisibleAnnotations != null) {
163 parameterVisibleAnnotations = parameterVisibleAnnotations.copy(cp, null);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
HostInfo.java 67 HostInfo localhost = null;
71 if (addr == null) {
73 if (ip != null) {
93 aName = ((jmdnsName != null) && (jmdnsName.length() > 0) ? jmdnsName : addr.getHostAddress());
99 aName = ((jmdnsName != null) && (jmdnsName.length() > 0) ? jmdnsName : "computer");
110 return InetAddress.getByName(null);
112 return null;
126 if (address != null) {
147 return null;
154 return null;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPTransactionStack.java 376 // Check if we still have a timer (it may be null after shutdown)
377 if (getTimer() != null) {
379 if (threadHandle == null) {
474 timer.schedule(new PingTimer(null), 0);
517 * (null for the "any" address).
630 SIPDialog retval = null;
634 if (this.earlyDialogTable.get(dialogId) != null) {
636 if (dialog.getState() == null || dialog.getState() == DialogState.EARLY) {
664 SIPDialog retval = null;
665 if (this.earlyDialogTable.get(dialogId) != null) {
    [all...]
  /external/smack/src/org/xbill/DNS/
Master.java 20 private Record last = null;
22 private Master included = null;
34 if (origin != null && !origin.isAbsolute()) {
73 this(new File(filename), null, -1);
84 if (origin != null && !origin.isAbsolute()) {
108 this(in, null, -1);
148 else if (last != null)
202 String stepstr = null;
211 if (stepstr != null)
239 if (generators == null)
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java 69 if (classDataItem == null) {
75 directMethod.codeItem != null) {
136 if (superClass != null) {
145 if (sourceFile != null) {
154 if (interfaceList == null) {
159 if (interfaces == null || interfaces.size() == 0) {
174 if (annotationDirectory == null) {
179 if (annotationSet == null) {
189 if (classDataItem == null) {
192 //if classDataItem is not null, then classDefItem won't be null eithe
    [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java 262 if (mAm == null) {
341 mProfileFile = null;
343 Uri data = null;
344 String type = null;
347 while ((opt=nextOption()) != null) {
374 intent.putExtra(key, (String) null);
387 if (cn == null) throw new IllegalArgumentException("Bad component name: " + value);
434 if (cn == null) throw new IllegalArgumentException("Bad component name: " + str);
511 return null;
524 baseIntent = null;
    [all...]
  /frameworks/base/core/java/android/app/
Dialog.java 169 w.setWindowManager(mWindowManager, null, null);
205 * @return The ActionBar attached to the dialog or null if no ActionBar is present.
227 * created, this may return null.
250 if (mDecor != null) {
262 dispatchOnCreate(null);
268 if (mActionBar == null && mWindow.hasFeature(Window.FEATURE_ACTION_BAR)) {
298 if (mDecor != null) {
319 if (mDecor == null || !mShowing) {
331 if (mActionMode != null) {
    [all...]
  /frameworks/base/core/java/android/hardware/display/
DisplayManagerGlobal.java 84 * @return The display manager instance, may be null early in system startup
89 if (sInstance == null) {
91 if (b != null) {
103 * @return Information about the specified display, or null if it does not exist.
112 if (info != null) {
118 if (info == null) {
119 return null;
134 return null;
147 if (mDisplayIdCache != null) {
173 * @return The display object, or null if there is no display with the given id
    [all...]
  /frameworks/base/obex/javax/obex/
ServerSession.java 138 sendResponse(ResponseCodes.OBEX_HTTP_NOT_IMPLEMENTED, null);
176 sendResponse(code, null);
219 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
246 sendResponse(ResponseCodes.OBEX_HTTP_INTERNAL_ERROR, null);
258 byte[] data = null;
260 if (op == null) {
264 if (header != null) {
296 byte[] head = null;
322 if (mListener.getConnectionId() != -1 && request.mConnectionID != null) {
328 if (request.mAuthResp != null) {
    [all...]
ClientOperation.java 96 mPrivateInput = null;
97 mPrivateOutput = null;
105 if (headerList != null) {
112 if ((header).mAuthChall != null) {
118 if ((header).mAuthResp != null) {
125 if ((header).mConnectionID != null) {
154 mParent.sendRequest(ObexHelper.OBEX_OPCODE_ABORT, null, mReplyHeader, null);
160 mExceptionMessage = null;
187 * This method will always return <code>null</code
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RegisteredMediaRouteProvider.java 68 if (descriptor != null) {
84 return null;
123 if (mActiveConnection == null && shouldBind()) {
140 if (getDiscoveryRequest() != null) {
195 Messenger messenger = (service != null ? new Messenger(service) : null);
225 if (request != null) {
260 if (mActiveConnection != null) {
261 setDescriptor(null);
265 mActiveConnection = null;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 55 public Handler mHandler = null;
61 private Handler mCallback = null;
75 if (remoteDevice == null) {
76 throw new NullPointerException("Obex transport is null");
124 if (mClientSession != null) {
125 mClientSession.disconnect(null);
132 if (mClientSession != null) {
135 mClientSession = null;
141 if (mTransport != null) {
145 mTransport = null;
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 85 if (files != null) {
99 * - If the attachment does not exist, returns null
113 Cursor c = getContext().getContentResolver().query(uri, MIME_TYPE_PROJECTION, null,
114 null, null);
125 return null;
138 * TODO: The thumbnail format returns null for its failure cases, instead of throwing
182 new String[] { Columns.DATA }, null, null, null);
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
RetryScheduler.java 58 if (sInstance == null) {
68 return (ni == null ? false : ni.isConnected());
89 if (uri != null) {
112 uriBuilder.build(), null, null, null, null);
114 if (cursor != null) {
166 null, null);
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
UriImage.java 68 if ((null == context) || (null == uri)) {
103 // It's ok if mContentType is null. Eventually we'll show a toast telling the
126 uri, null, null, null, null);
128 mSrc = null;
129 if (c == null) {
131 "Query on " + uri + " returns null result.")
    [all...]
  /packages/apps/Music/src/com/android/music/
QueryBrowserActivity.java 97 String action = intent != null ? intent.getAction() : null;
135 if (focus != null) {
136 if (focus.startsWith("audio/") && title != null) {
139 if (album != null) {
141 if (artist != null) {
146 if (artist != null) {
156 if (mAdapter == null) {
161 null, // cursor
166 getQueryCursor(mAdapter.getQueryHandler(), null); local
251 getQueryCursor(mAdapter.getQueryHandler(), null); local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnn.java 49 protected CandidatesViewManager mCandidatesViewManager = null;
51 protected InputViewManager mInputViewManager = null;
53 protected WnnEngine mConverter = null;
55 protected LetterConverter mPreConverter = null;
57 protected ComposingText mComposingText = null;
59 protected InputConnection mInputConnection = null;
72 protected TextCandidatesViewManager mTextCandidatesViewManager = null;
75 protected TextCandidates1LineViewManager mTextCandidates1LineViewManager = null;
112 if (mConverter != null) { mConverter.init(); }
113 if (mComposingText != null) { mComposingText.clear();
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
GlobalSearchSupport.java 87 if (icon1 == null) {
88 if (photoUri != null) {
100 if (projection == null) {
106 list.add(intentData == null ? buildUri() : intentData); // intent data
131 list.add(intentData == null ? buildUri() : intentData);
151 photoUri = null;
152 lookupKey = null;
154 text1 = null;
155 text2 = null;
156 icon1 = null;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 54 /** Current background image. Null when there's no image. */
65 private SoftReference<BufferedImage> mAwtImage = new SoftReference<BufferedImage>(null);
106 if (mImage != null) {
108 mImage = null;
110 if (mPreScaledImage != null) {
112 mPreScaledImage = null;
120 * The image <b>can</b> be null, which is the case when we are dealing with
125 * @return The corresponding SWT image, or null.
131 if (awtImage != oldAwtImage || awtImage == null) {
133 mAwtImageStrongRef = null;
    [all...]
OutlinePage.java 254 assert mControl != null; local
260 mRootWrapper.setRoot(null);
261 if (mPropertySheet != null) {
262 mPropertySheet.selectionChanged(null, TreeSelection.EMPTY);
271 if (treeViewer != null) {
273 if (tree != null && !tree.isDisposed()) {
296 if (mControl == null) {
300 if (show && mPropertySheet == null) {
304 mPropertySheetComposite = null;
306 mPropertySheet = null;
    [all...]
  /external/chromium_org/v8/test/webkit/
Object-create.js 29 shouldThrow("Object.create(null, 'a string')");
30 shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo', enumerable:true}, property2:{value:'foo', enumerable:true}}))", '\'{"property":"foo","property2":"foo"}\'');
33 shouldBe("JSON.stringify(Object.create(null,{property:{value:'foo'}, property2:{value:'foo', enumerable:true}}))", '\'{"property2":"foo"}\'');
35 shouldBe("Object.getPrototypeOf(Object.create(null))", "null");
37 var DescriptorWithValueGetter = { foo: Object.create(null, { value: { get: valueGet }})};
38 var DescriptorWithEnumerableGetter = { foo: Object.create(null, { value: {value: true}, enumerable: { get: valueGet }})};
39 var DescriptorWithConfigurableGetter = { foo: Object.create(null, { value: {value: true}, configurable: { get: valueGet }})};
40 var DescriptorWithWritableGetter = { foo: Object.create(null, { value: {value: true}, writable: { get: valueGet }})};
41 var DescriptorWithGetGetter = { foo: Object.create(null, { get: { get: function() { return valueGet } }})}
    [all...]

Completed in 1246 milliseconds

<<919293949596979899100>>