/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
ElementDescriptor.java | 73 * @param tooltip An optional tooltip. Can be null or empty. 74 * @param sdk_url An optional SKD URL. Can be null or empty. 75 * @param attributes The list of allowed attributes. Can be null or empty. 76 * @param children The list of allowed children. Can be null or empty. 89 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null; 90 mSdkUrl = (sdk_url != null && sdk_url.length() > 0) ? sdk_url : null; 91 setAttributes(attributes != null ? attributes : new AttributeDescriptor[]{}); 92 mChildren = children != null ? children : new ElementDescriptor[]{} [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatService.java | 78 private CatCmdMessage mCurrntCmd = null; 79 private CatCmdMessage mMenuCmd = null; 81 private RilMessageDecoder mMsgDecoder = null; 108 if (ci == null || ca == null || ir == null || context == null || fh == null 109 || ic == null) { 111 "Service: Input parameters must not be null"); [all...] |
/frameworks/base/core/tests/coretests/src/android/database/ |
DatabaseGeneralTest.java | 63 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null); 105 assertEquals(1, mDatabase.update("test", values, "_id=1", null)); 106 Cursor c = mDatabase.query("test", null, "_id=1", null, null, null, null); 124 c = mDatabase.query("phones", null, 125 "PHONE_NUMBERS_EQUAL(num, '504-555-7683')", null, null, null, null) [all...] |
/art/runtime/ |
runtime_test.cc | 30 void* null = reinterpret_cast<void*>(NULL); local 39 options.push_back(std::make_pair(boot_class_path.c_str(), null)); 40 options.push_back(std::make_pair("-classpath", null)); 41 options.push_back(std::make_pair(lib_core.c_str(), null)); 42 options.push_back(std::make_pair("-cp", null)); 43 options.push_back(std::make_pair(lib_core.c_str(), null)); 44 options.push_back(std::make_pair("-Ximage:boot_image", null)); 45 options.push_back(std::make_pair("-Xcheck:jni", null)); 46 options.push_back(std::make_pair("-Xms2048", null)); [all...] |
/art/test/100-reflect2/src/ |
Main.java | 34 System.out.println(f.getBoolean(null)); 36 System.out.println(f.getByte(null)); 38 System.out.println(f.getChar(null)); 40 System.out.println(f.getDouble(null)); 42 System.out.println(f.getFloat(null)); 44 System.out.println(f.getInt(null)); 46 System.out.println(f.getLong(null)); 48 System.out.println(f.getShort(null)); 51 f.setBoolean(null, false); 53 f.setByte(null, (byte) 7) [all...] |
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
NotesDbAdapter.java | 52 + "title text not null, body text not null);"; 63 super(context, DATABASE_NAME, null, DATABASE_VERSION); 125 return mDb.insert(DATABASE_TABLE, null, initialValues); 136 return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0; 147 KEY_BODY}, null, null, null, null, null); [all...] |
/external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/ |
GSSManagerTest.java | 46 Security.setProperty(GSSManager.MANAGER, (oldProvider == null) ? "" 70 Security.setProperty(GSSManager.MANAGER, (oldProvider == null) ? "" 89 return null; 95 return null; 102 return null; 109 return null; 116 return null; 121 return null; 127 return null; 133 return null; [all...] |
/external/emma/core/java12/com/vladium/util/exception/ |
AbstractException.java | 94 * Constructs an exception with null message and null cause. 98 m_cause = null; 99 m_arguments = null; 103 * Constructs an exception with given error message/code and null cause. 105 * @param message the detail message [can be null] 110 m_cause = null; 111 m_arguments = null; 115 * Constructs an exception with given error message/code and null cause. 117 * @param message the detail message [can be null] [all...] |
AbstractRuntimeException.java | 94 * Constructs an exception with null message and null cause. 98 m_cause = null; 99 m_arguments = null; 103 * Constructs an exception with given error message/code and null cause. 105 * @param message the detail message [can be null] 110 m_cause = null; 111 m_arguments = null; 115 * Constructs an exception with given error message/code and null cause. 117 * @param message the detail message [can be null] [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
NestedMapData.java | 49 private Map<String, NestedMapData> children = null; 53 private NestedMapData firstChild = null; 55 private NestedMapData lastChild = null; 60 private Iterable<NestedMapData> iterableChildren = null; 63 private Map<String, String> attributeList = null; 65 private String value = null; 69 private NestedMapData prevSibling = null; 70 private NestedMapData nextSibling = null; 73 name = null; 74 parent = null; [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
AAltCommand.java | 54 if(this._position_ != null) 56 this._position_.parent(null); 59 if(node != null) 61 if(node.parent() != null) 79 if(this._expression_ != null) 81 this._expression_.parent(null); 84 if(node != null) 86 if(node.parent() != null) 104 if(this._command_ != null) 106 this._command_.parent(null); [all...] |
AAutoescapeCommand.java | 54 if(this._position_ != null) 56 this._position_.parent(null); 59 if(node != null) 61 if(node.parent() != null) 79 if(this._expression_ != null) 81 this._expression_.parent(null); 84 if(node != null) 86 if(node.parent() != null) 104 if(this._command_ != null) 106 this._command_.parent(null); [all...] |
AEscapeCommand.java | 54 if(this._position_ != null) 56 this._position_.parent(null); 59 if(node != null) 61 if(node.parent() != null) 79 if(this._expression_ != null) 81 this._expression_.parent(null); 84 if(node != null) 86 if(node.parent() != null) 104 if(this._command_ != null) 106 this._command_.parent(null); [all...] |
ASetCommand.java | 54 if(this._position_ != null) 56 this._position_.parent(null); 59 if(node != null) 61 if(node.parent() != null) 79 if(this._variable_ != null) 81 this._variable_.parent(null); 84 if(node != null) 86 if(node.parent() != null) 104 if(this._expression_ != null) 106 this._expression_.parent(null); [all...] |
/external/okhttp/src/test/java/com/squareup/okhttp/internal/http/ |
URLEncodingTest.java | 62 testUrlToUriMapping("#", null, null, null, "%23"); 73 testUrlToUriMapping("/", null, "/", "/", "/"); 74 testUrlToUriMapping(":", null, ":", ":", ":"); 79 testUrlToUriMapping("?", null, null, "?", "?"); 81 testUrlToUriMapping("[", null, "%5B", null, "%5B"); 83 testUrlToUriMapping("]", null, "%5D", null, "%5D") [all...] |
/external/proguard/src/proguard/optimize/evaluation/ |
StoringInvocationUnit.java | 79 if (referencedMember != null) 94 if (referencedMember != null) 110 if (referencedMember != null) 136 if (info != null) 146 return info != null ? 148 null; 155 if (info != null) 165 return info != null ? 167 null; 174 if (info != null) [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
OverrideMethod.java | 32 /** Default listener for all method not listed in sMethods. Nothing if null. */ 33 private static MethodListener sDefaultListener = null; 37 * Null means to do nothing. 49 * @param listener The new listener. Removes it if null. 52 if (listener == null) { 71 * @param caller The calling object. Null for static methods, "this" for instance methods. 75 if (i != null) { 77 } else if (sDefaultListener != null) { 88 if (i != null) { 90 } else if (sDefaultListener != null) { [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
DefaultSSLContextImpl.java | 59 super(null); 64 if (KEY_MANAGERS != null) { 69 if (keystore == null) { 70 return null; 73 char[] pwd = (keystorepwd == null) ? null : keystorepwd.toCharArray(); 76 InputStream is = null; 81 if (is != null) { 95 if (TRUST_MANAGERS != null) { 101 if (keystore == null) { [all...] |
/packages/services/Telephony/src/com/android/phone/ |
CallStateMonitor.java | 79 callManager.registerForNewRingingConnection(this, PHONE_NEW_RINGING_CONNECTION, null); 80 callManager.registerForPreciseCallStateChanged(this, PHONE_STATE_CHANGED, null); 81 callManager.registerForDisconnect(this, PHONE_DISCONNECT, null); 82 callManager.registerForUnknownConnection(this, PHONE_UNKNOWN_CONNECTION_APPEARED, null); 83 callManager.registerForIncomingRing(this, PHONE_INCOMING_RING, null); 84 callManager.registerForCdmaOtaStatusChange(this, EVENT_OTA_PROVISION_CHANGE, null); 85 callManager.registerForCallWaiting(this, PHONE_CDMA_CALL_WAITING, null); 86 callManager.registerForDisplayInfo(this, PHONE_STATE_DISPLAYINFO, null); 87 callManager.registerForSignalInfo(this, PHONE_STATE_SIGNALINFO, null); 88 callManager.registerForInCallVoicePrivacyOn(this, PHONE_ENHANCED_VP_ON, null); [all...] |
/libcore/luni/src/main/java/java/security/cert/ |
X509CertSelector.java | 86 * the certificate to match, or null to not check this criteria. 95 * @return the certificate to match, or null if this criteria is not 106 * the serial number to match, or {@code null} to not check the 116 * @return the serial number to match, or {@code null} if the serial number 127 * the issuer to match, or {@code null} if the issuer is not to 132 this.issuerName = null; 133 this.issuerBytes = null; 139 * @return the issuer that a certificate must match, or {@code null} if the 152 * the issuer in a RFC 2253 format string, or {@code null} to not 158 if (issuerName == null) { [all...] |