/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/ |
BackgroundAction.java | 24 if (worker != null) {
|
/sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/ |
App.java | 15 if (tv != null) { 22 if (input == null) { 26 BufferedReader reader = null; 33 if (reader != null) {
|
/sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/ |
Lib1.java | 15 if (tv != null) { 22 if (input == null) { 26 BufferedReader reader = null; 33 if (reader != null) {
|
/sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/ |
Lib2.java | 15 if (tv != null) { 22 if (input == null) { 26 BufferedReader reader = null; 33 if (reader != null) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
HceEmulatorTestActivity.java | 47 new Intent(this, DefaultRouteEmulatorActivity.class), null)); 51 new Intent(this, ProtocolParamsEmulatorActivity.class), null)); 55 new Intent(this, SinglePaymentEmulatorActivity.class), null)); 59 new Intent(this, DualPaymentEmulatorActivity.class), null)); 63 new Intent(this, ChangeDefaultEmulatorActivity.class), null)); 68 new Intent(this, SingleNonPaymentEmulatorActivity.class), null)); 72 new Intent(this, DualNonPaymentEmulatorActivity.class), null)); 76 new Intent(this, ConflictingNonPaymentEmulatorActivity.class), null)); 80 new Intent(this, ThroughputEmulatorActivity.class), null)); 84 new Intent(this, TapTestEmulatorActivity.class), null)); [all...] |
HceReaderTestActivity.java | 45 DefaultRouteEmulatorActivity.buildReaderIntent(this), null)); 50 new Intent(this, ProtocolParamsReaderActivity.class), null)); 54 SinglePaymentEmulatorActivity.buildReaderIntent(this), null)); 58 DualPaymentEmulatorActivity.buildReaderIntent(this), null)); 62 ChangeDefaultEmulatorActivity.buildReaderIntent(this), null)); 66 SingleNonPaymentEmulatorActivity.buildReaderIntent(this), null)); 70 DualNonPaymentEmulatorActivity.buildReaderIntent(this), null)); 74 ConflictingNonPaymentEmulatorActivity.buildReaderIntent(this), null)); 78 ThroughputEmulatorActivity.buildReaderIntent(this), null)); 82 TapTestEmulatorActivity.buildReaderIntent(this), null)); [all...] |
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
RawContactUtil.java | 39 resolver.update(uri, values, null, null); 67 Cursor cursor = resolver.query(uri, projection, null, null, null); 79 Cursor cursor = resolver.query(uri, projection, null, null, null); 89 resolver.delete(uri, null, null); [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
RemotePlayer.java | 62 if (mCallback != null) { 76 logStatus("onSessionStatusChanged", sessionId, sessionStatus, null, null); 77 if (mCallback != null) { 132 mClient.play(item.getUri(), "video/mp4", null, 0, null, new ItemActionCallback() { local 144 if (mCallback != null) { 163 if (!mClient.hasSession() || item.getRemoteItemId() == null) { 172 mClient.getStatus(item.getRemoteItemId(), null, new ItemActionCallback() { local 186 if (update && mCallback != null) { 371 mClient.enqueue(item.getUri(), "video\/mp4", null, 0, null, new ItemActionCallback() { local 411 mClient.seek(item.getRemoteItemId(), item.getPosition(), null, new ItemActionCallback() { local [all...] |
/development/samples/Vault/tests/src/com/example/android/vault/ |
VaultProviderTest.java | 72 c = mProvider.queryChildDocuments(DEFAULT_DOCUMENT_ID, null, null); 74 c = mProvider.queryChildDocuments(dir, null, null); 80 c = mProvider.queryChildDocuments(DEFAULT_DOCUMENT_ID, null, null); 83 mProvider.queryDocument(file, null); 85 try { mProvider.queryDocument(dir, null); } catch (Exception expected) { } 86 try { mProvider.queryDocument(dirfile, null); } catch (Exception expected) { } 87 try { mProvider.queryDocument(dirdir, null); } catch (Exception expected) { [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonTree.cs | 59 /** <summary>Who is the parent node of this node; if null, implies node is root</summary> */ 70 if (node == null) 85 if (token == null || token.CharPositionInLine == -1) { 107 return token == null; 112 if (token == null || token.Line == 0) { 134 if (token == null) 135 return null; 152 if (startIndex == -1 && token != null) { 163 if (stopIndex == -1 && token != null) { 174 if (token == null) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTree.java | 47 /** Who is the parent node of this node; if null, implies node is root */ 75 return token==null; 79 if ( token==null ) { 86 if ( token==null ) { 87 return null; 93 if ( token==null || token.getLine()==0 ) { 103 if ( token==null || token.getCharPositionInLine()==-1 ) { 113 if ( startIndex==-1 && token!=null ) { 124 if ( stopIndex==-1 && token!=null ) { 139 if ( children==null ) { [all...] |
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
AttributedStringTest.java | 61 return null; 64 return null; 67 return null; 88 return null; 124 assertEquals("non-null value limit", 2, it 128 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null, 131 assertEquals("null value limit", 4, it 137 null, -1, 3); 146 as.addAttribute(null, new TreeSet(), 0, 1); 153 as.addAttribute(null, new TreeSet(), -1, 1) [all...] |
/external/apache-http/src/org/apache/http/message/ |
BasicHttpResponse.java | 68 * <code>null</code> to disable automatic 71 * <code>null</code> for the system locale 77 if (statusline == null) { 78 throw new IllegalArgumentException("Status line may not be null."); 82 this.locale = (locale != null) ? locale : Locale.getDefault(); 93 this(statusline, null, null); 104 * <code>null</code> 109 this(new BasicStatusLine(ver, code, reason), null, null); [all...] |
/external/apache-http/src/org/apache/http/util/ |
EntityUtils.java | 61 if (entity == null) { 62 throw new IllegalArgumentException("HTTP entity may not be null"); 65 if (instream == null) { 91 if (entity == null) { 92 throw new IllegalArgumentException("HTTP entity may not be null"); 94 String charset = null; 95 if (entity.getContentType() != null) { 99 if (param != null) { 109 if (entity == null) { 110 throw new IllegalArgumentException("HTTP entity may not be null"); [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwPdfExporter.java | 43 if (fd == null) { 44 throw new IllegalArgumentException("fd cannot be null"); 46 if (resultCallback == null) { 47 throw new IllegalArgumentException("resultCallback cannot be null"); 49 if (mResultCallback != null) { 52 if (attributes.getMediaSize() == null) { 55 if (attributes.getResolution() == null) { 58 if (attributes.getMinMargins() == null) { 76 if (nativePdfExporter == 0 && mResultCallback != null) { 78 mResultCallback = null; [all...] |
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
SimplexCollisionShape.java | 56 capsule.write(vector1, "simplexPoint1", null); 57 capsule.write(vector2, "simplexPoint2", null); 58 capsule.write(vector3, "simplexPoint3", null); 59 capsule.write(vector4, "simplexPoint4", null); 65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", null); 66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); 67 vector3 = (Vector3f) capsule.readSavable("simplexPoint3", null); 68 vector4 = (Vector3f) capsule.readSavable("simplexPoint4", null); 73 if (vector4 != null) { 76 } else if (vector3 != null) { [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/ |
SimplexCollisionShape.java | 56 capsule.write(vector1, "simplexPoint1", null); 57 capsule.write(vector2, "simplexPoint2", null); 58 capsule.write(vector3, "simplexPoint3", null); 59 capsule.write(vector4, "simplexPoint4", null); 65 vector1 = (Vector3f) capsule.readSavable("simplexPoint1", null); 66 vector2 = (Vector3f) capsule.readSavable("simplexPoint2", null); 67 vector3 = (Vector3f) capsule.readSavable("simplexPoint3", null); 68 vector4 = (Vector3f) capsule.readSavable("simplexPoint4", null); 73 if (vector4 != null) { 75 } else if (vector3 != null) { [all...] |
/external/nist-sip/java/gov/nist/javax/sip/header/ |
RequestLine.java | 77 if (method != null) { 81 if (uri != null) { 144 if (sipVersion == null) 145 return null; 146 String major = null; 152 if (major == null) 167 if (sipVersion == null) 168 return null; 169 String minor = null; 173 if (minor == null) [all...] |
/external/proguard/src/proguard/obfuscate/ |
MappingKeeper.java | 67 if (clazz != null) 73 if (warningPrinter != null) 76 if (currentNewName != null && 105 if (clazz != null) 112 if (field != null) 116 if (warningPrinter != null) 119 if (currentNewName != null && 146 if (clazz != null) 153 if (method != null) 157 if (warningPrinter != null) [all...] |
/frameworks/base/core/java/android/content/ |
ContentQueryMap.java | 40 private Handler mHandlerForUpdateNotifications = null; 43 private Map<String, ContentValues> mValues = null; 58 * notifications of changes (if requested). Normally you pass null here, but if 92 mContentObserver = null; 94 if (mHandlerForUpdateNotifications == null) { 97 if (mContentObserver == null) { 122 * @return the ContentValues for the row, or null if the row wasn't present in the cursor 132 if (cursor == null) { 133 // If mCursor is null then it means there was a requery() in flight 150 int capacity = mValues != null ? mValues.size() : 0 [all...] |
/frameworks/base/core/java/android/content/pm/ |
LabeledIntent.java | 48 mNonLocalizedLabel = null; 81 mNonLocalizedLabel = null; 131 * not have a label, null will be returned, in which case you will probably 135 if (mNonLocalizedLabel != null) { 138 if (mLabelRes != 0 && mSourcePackage != null) { 139 CharSequence label = pm.getText(mSourcePackage, mLabelRes, null); 140 if (label != null) { 144 return null; 149 * not have a icon, null will be returned, in which case you will probably 153 if (mIcon != 0 && mSourcePackage != null) { [all...] |
/frameworks/base/core/java/android/nfc/ |
NfcAdapter.java | 304 * NfcAdapter used with a null context. This ctor was deprecated but we have 306 * might throw when called on the null-context NfcAdapter. 372 * @return NDEF message to push, or null to not provide a message 391 if (pm == null) { 417 if (sService == null) { 437 if (context == null) { 438 if (sNullContextNfcAdapter == null) { 439 sNullContextNfcAdapter = new NfcAdapter(null); 444 if (adapter == null) { 455 if (b == null) { [all...] |
/frameworks/base/core/tests/coretests/src/android/app/ |
SearchManagerTest.java | 132 searchManager.startSearch(null, false, SEARCHABLE_ACTIVITY, null, false); 133 searchManager.startSearch(null, false, SEARCHABLE_ACTIVITY, null, false); 147 searchManager.startSearch(null, false, SEARCHABLE_ACTIVITY, null, false); 162 searchManager.startSearch(null, false, SEARCHABLE_ACTIVITY, null, false); 165 searchManager.startSearch("", false, SEARCHABLE_ACTIVITY, null, false); 168 searchManager.startSearch("test search string", false, SEARCHABLE_ACTIVITY, null, false) [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabasePerformanceTests.java | 91 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null); 92 Assert.assertTrue(mDatabase != null); 162 mCursor = c.getContentResolver().query(People.CONTENT_URI, PEOPLE_PROJECTION, null, 163 null, People.DEFAULT_SORT_ORDER); 295 .query("t1", COLUMNS, where[i], null, null, null, null); 333 .query("t1", COLUMNS, where[i], null, null, null, null) [all...] |
/frameworks/base/obex/javax/obex/ |
ObexSession.java | 63 if (mAuthenticator == null) { 80 String realm = null; 81 if (description != null) { 111 if (option != null) { 121 PasswordAuthentication result = null; 122 header.mAuthChall = null; 134 if (result == null) { 139 if (password == null) { 153 if (userName != null) { 191 if (mAuthenticator == null) { [all...] |