/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...] |
/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...] |
/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...] |
/cts/tests/src/android/content/cts/ |
MockSyncAdapter.java | 31 private static MockSyncAdapter sSyncAdapter = null; 67 mAuthority = null; 68 mExtras = null; 72 mLatch = null; 86 if (null != extras && extras.getBoolean(ContentResolver.SYNC_EXTRAS_INITIALIZE)) { 96 if (null != mLatch) { 103 mAuthority = null; 104 mExtras = null; 110 if (null != mLatch) { 125 if (null != mLatch) [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ReplacementTransformationMethodTest.java | 52 CharSequence result = method.getTransformation("010101", null); 65 method.getTransformation(null, null); 66 fail("The method should check whether the char sequence is null."); 71 assertEquals("", method.getTransformation("", null).toString()); 78 assertEquals("333333", method.getTransformation("010101", null).toString()); 86 assertEquals("343434", method.getTransformation("010101", null).toString()); 97 assertEquals("414141", method.getTransformation("010101", null).toString()); 106 method.getTransformation("012012012", null); 117 method.onFocusChanged(null, null, true, 0, null) [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceRandomScript.java | 30 private MonkeySourceScript mSetupSource = null; 36 private MonkeySourceScript mCurrentSource = null; 57 if (setupFileName != null) { 83 this(null, scriptFileNames, throttle, randomizeThrottle, random, profileWaitTime, 88 * Gets the next event from the current event source. If the event source is null, a new 92 * @return The first event in the event queue or null if the end of the file 96 if (mCurrentSource == null) { 110 if (mCurrentSource != null) { 112 if (nextEvent == null) { 113 mCurrentSource = null; [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
RewriteRuleElementStream.as | 44 /** Cursor 0..n-1. If singleElement!=null, cursor is 0 until you next(), 72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) { 75 if (element != null) { 99 if ( el==null ) { 102 if ( elements!=null ) { // if in list, just add 106 if ( singleElement == null ) { // no elements yet, track w/o list 113 singleElement = null; 154 if ( singleElement!=null ) { 181 return (singleElement != null && cursor < 1) || 182 (elements!=null && cursor < elements.length) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
NFAContext.java | 41 * which will add itself to the parent. The root is NFAContext(null, null). 122 if ( invokingState!=null ) { 125 if ( parent!=null ) { 148 while ( sp.parent!=null && other.parent!=null ) { 155 if ( !(sp.parent==null && other.parent==null) ) { 210 while ( sp.parent!=null && other.parent!=null ) { [all...] |
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/ |
SecretKeyFactory_Impl1Test.java | 44 public static String defaultAlgorithm = null; 46 private static String defaultProviderName = null; 48 private static Provider defaultProvider = null; 57 DEFSupported = (defaultProvider != null); 64 DEFSupported = (defaultProvider != null); 69 defaultAlgorithm = null; 70 defaultProviderName = null; 71 defaultProvider = null; 79 return null; 91 return null; [all...] |
/external/apache-http/src/org/apache/http/conn/ |
EofSensorInputStream.java | 70 * The value changes to <code>null</code> when the wrapped stream 79 * is <code>null</code>, we're running in EOF mode. 100 * @param watcher the watcher for events, or <code>null</code> for 105 if (in == null) { 107 ("Wrapped stream may not be null."); 129 return (wrappedStream != null); 235 if ((wrappedStream != null) && (eof < 0)) { 238 if (eofWatcher != null) 243 wrappedStream = null; 262 if (wrappedStream != null) { [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
QName.java | 39 * consisting of the local part of the name and the possibly null URI reference 88 * @param namespaceURI The namespace URI if known, or null 100 * @param namespaceURI The namespace URI if known, or null 110 if (localName == null) 112 XMLErrorResources.ER_ARG_LOCALNAME_NULL, null)); //"Argument 'localName' is null"); 119 XMLErrorResources.ER_ARG_LOCALNAME_INVALID,null )); //"Argument 'localName' not a valid NCName"); 132 * @param namespaceURI The namespace URI if known, or null 133 * @param prefix The namespace prefix is known, or null 146 * @param namespaceURI The namespace URI if known, or null [all...] |