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

<<61626364656667686970>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
TestAttributeInfo.java 33 this(name, null, null, null, null, null);
49 return null;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
VersionLoader.java 41 Socket socket = null;
42 BufferedReader in = null;
43 BufferedWriter out = null;
62 if (out != null) {
65 if (in != null) {
68 if (socket != null) {
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 140 * For non-Iterator NodeSets, this will be null.
144 return null;
199 * @return null, which is slightly misleading. True, there is no
207 return null;
236 * <code>null</code> if there are no more members in that set.
253 return null;
260 * or<code>null</code> if there are no more members in that set.
272 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NODESET_CANNOT_ITERATE, null)); //"This NodeSet can not iterate to a previous node!");
281 return null;
327 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NODESET_CANNOT_INDEX, null)); //"This NodeSet can not do indexing or counting functions!")
    [all...]
  /frameworks/base/core/java/android/content/
Intent.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 58 private static MasterImage sMasterImage = null;
62 private ImageFilter mCurrentFilter = null;
63 private ImagePreset mPreset = null;
64 private ImagePreset mLoadedPreset = null;
65 private ImagePreset mGeometryOnlyPreset = null;
66 private ImagePreset mFiltersOnlyPreset = null;
71 private Bitmap mOriginalBitmapSmall = null;
72 private Bitmap mOriginalBitmapLarge = null;
73 private Bitmap mOriginalBitmapHighres = null;
74 private Bitmap mTemporaryThumbnail = null;
    [all...]
  /libcore/libart/src/main/java/java/lang/
Class.java 126 /** defining class loader, or NULL for the "bootstrap" system loader. */
131 * this will be String[][]). NULL for non-array classes.
135 * DexCache of resolved constant pool entries. Will be null for certain VM-generated classes
157 * indirectly via a superinterface. This will be null if neither we nor our superclass
175 /** The superclass, or NULL if this is java.lang.Object, an interface or primitive type. */
294 if (classLoader == null) {
329 for (Class<?> c = this; c != null; c = c.superClass) {
356 * method returns {@code null}.
360 return null;
368 if (name != null) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 103 if (visible && mFileNameTextField != null) {
142 /** Returns the UI name for the resource type. Unique. Never null. */
147 /** Returns the tooltip for the resource type. Can be null. */
154 * Never null but not necessarily unique,
163 * Never null but not necessarily unique,
173 * a {@link DocumentDescriptor} or null.
181 * null.
183 * @param project the associated project, or null if not known
191 * This can be an empty ArrayList but not null.
202 * to {@link SdkConstants#NS_RESOURCES}. When it is null, no XMLNS is generated
649 assert res != null; \/\/ Eclipse incorrectly thinks res could be null, so tell it no local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 44 * non-null node is called "nil".
78 if (Children == null)
88 return null;
145 if (children == null || i >= children.Count)
146 return null;
157 return null;
171 if (t == null) {
172 return; // do nothing upon addChild(null)
177 if (childTree != null && this.children != null && this.children == childTree.children)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 45 * non-null node is called "nil".
92 if ( Children == null )
104 return null;
174 if ( Children == null || i >= Children.Count )
175 return null;
188 return null;
203 if ( t == null )
205 return; // do nothing upon addChild(null)
211 if ( childTree != null && this.Children != null && this.Children == childTree.Children
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null;
96 return (nv != null);
106 if (m_cache != null) {
120 if (nv != null) {
183 if(null != nodeVector)
209 * Create a new NodeSequence in an invalid (null) state.
223 if(null != mgr)
228 return null;
245 if(null != m_iter
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 343 clone.mipMapSizes = mipMapSizes != null ? mipMapSizes.clone() : null;
344 clone.data = data != null ? new ArrayList<ByteBuffer>(data) : null;
375 * the array of mipmap sizes, or null for no mipmaps.
382 if (mipMapSizes != null && mipMapSizes.length <= 1) {
383 mipMapSizes = null;
407 * the array of mipmap sizes, or null for no mipmaps.
414 if (mipMapSizes != null && mipMapSizes.length <= 1) {
415 mipMapSizes = null;
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentValues.java 98 values.put(key, null);
129 return value != null ? value.toString() : null;
136 return value != null ? ((Number) value).longValue() : null;
143 return null;
147 return null;
156 return value != null ? ((Number) value).intValue() : null;
163 return null;
    [all...]
  /frameworks/base/core/java/android/app/
SearchManager.java 172 * suggestion. It will be null if the search was launched by typing "enter", touched the the
218 * Column name for suggestions cursor. <i>Unused - can be null or column can be omitted.</i>
237 * color. If this column is absent, or has the value {@code null},
289 * is provided, the Intent's data field will be null. Note: If your data is
297 * forming the suggestion's intent. If not provided, the Intent's extra data field will be null.
445 /* package */ OnDismissListener mDismissListener = null;
446 /* package */ OnCancelListener mCancelListener = null;
477 * is typically null or empty.
487 * searches. This data will be returned with SEARCH intent(s). Null if
503 appSearchData, globalSearch, null);
    [all...]
  /frameworks/base/media/java/android/media/
RingtoneManager.java 105 * {@link #EXTRA_RINGTONE_PICKED_URI} will be null.
171 * <li> null if the "Silent" item was picked.
259 if (mCursor != null) {
313 if (mPreviousRingtone != null) {
361 if (mCursor != null && mCursor.requery()) {
380 if (mStopPreviousRingtone && mPreviousRingtone != null) {
397 if (mCursor == null || !mCursor.moveToPosition(position)) {
398 return null;
417 if (ringtoneUri == null) return -1;
427 Uri currentUri = null;
    [all...]
  /frameworks/base/services/java/com/android/server/
WallpaperManagerService.java 131 if (path == null) {
144 if (mWallpaper.wallpaperComponent == null || event != CLOSE_WRITE
150 false, mWallpaper, null);
249 mService = null;
250 mEngine = null;
258 clearWallpaperLocked(true, mWallpaper.userId, null);
282 if (mReply != null) {
285 mReply.sendResult(null);
289 mReply = null;
300 return null;
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/interactions/
PhoneNumberInteractionTest.java 93 .returnRow(1, "123", 0, null, null, Phone.TYPE_HOME, null,
97 mContext, ContactDisplayUtils.INTERACTION_SMS, null);
112 .returnRow(1, "987", 0, null, null, Phone.TYPE_HOME, null,
116 mContext, ContactDisplayUtils.INTERACTION_SMS, null);
131 .returnRow(1, "123", 0, null, null, Phone.TYPE_HOME, null
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetDatabaseHelper.java 96 super(context, DATABASE_NAME, null, DATABASE_VERSION);
114 null, null, null, null, null);
115 if (cursor == null) return;
130 null, null, null, null, null)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_MediaTest.java 41 Cursor c = null;
43 Media.getContentUri(MediaStoreAudioTestHelper.INTERNAL_VOLUME_NAME), null, null,
44 null, null));
47 Media.getContentUri(MediaStoreAudioTestHelper.EXTERNAL_VOLUME_NAME), null, null,
48 null, null));
53 assertNull(mContentResolver.query(Media.getContentUri(volume), null, null, null, null)) local
    [all...]
ContactsTest.java 95 value.put(PeopleColumns.CUSTOM_RINGTONE, (String) null);
101 new String[] {insertPeopleName}, null, null);
121 mProvider.update(uri, value, null, null);
123 "people._id" + " = " + id, null, null, null);
136 mProvider.delete(uri, null, null);
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
CursorAdapterTest.java 69 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null);
74 mCursor = mDatabase.query("test", NUMBER_PROJECTION, null, null, null, null, null);
78 mParent = (ViewGroup) inflater.inflate(R.layout.cursoradapter_host, null);
84 if (null != mCursor) {
86 mCursor = null;
96 new MockCursorAdapter(null, null)
    [all...]
  /external/javassist/src/main/javassist/
ClassPool.java 85 return null;
145 private Hashtable cflow = null; // should be synchronous.
155 this(null);
168 this(null);
177 * class pool, this parameter must be <code>null</code>.
184 if (parent == null) {
190 this.cflow = null;
220 if (defaultPool == null) {
221 defaultPool = new ClassPool(null);
228 private static ClassPool defaultPool = null;
    [all...]
  /frameworks/base/keystore/java/android/security/
AndroidKeyStore.java 81 return null;
96 if (alias == null) {
97 throw new NullPointerException("alias == null");
101 if (leaf == null) {
102 return null;
108 if (caBytes != null) {
129 if (alias == null) {
130 throw new NullPointerException("alias == null");
134 if (certificate != null) {
139 if (certificate != null) {
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 72 return null;
126 * If the person's photo isn't present returns null.
130 * @param options the decoding options, can be set to null
135 if (cursor == null) {
136 return null;
148 * @param options the decoding options, can be set to null
154 return null;
162 Cursor photoCursor = null;
163 Bitmap photoBm = null;
169 null, null, null)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduParser.java 62 private ByteArrayInputStream mPduDataStream = null;
67 private PduHeaders mHeaders = null;
72 private PduBody mBody = null;
77 private static byte[] mTypeParam = null;
82 private static byte[] mStartParam = null;
104 * null if parsing error happened or mandatory fields are not set.
107 if (mPduDataStream == null) {
108 return null;
113 if (null == mHeaders) {
115 return null;
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnection.java 176 if (mPool != null && mConnectionPtr != 0) {
229 if (mCloseGuard != null) {
237 final int cookie = mRecentOperations.beginOperation("close", null, null);
251 long value = executeForLong("PRAGMA page_size", null, null);
253 execute("PRAGMA page_size=" + newValue, null, null);
261 long value = executeForLong("PRAGMA wal_autocheckpoint", null, null);
    [all...]

Completed in 1260 milliseconds

<<61626364656667686970>>