/frameworks/base/core/java/android/animation/ |
StateListAnimator.java | 52 private Tuple mLastMatch = null; 53 private Animator mRunningAnimator = null; 67 animation.setTarget(null); 69 mRunningAnimator = null; 93 * @return The currently running Animator or null if no Animator is running 104 return mViewRef == null ? null : mViewRef.get(); 116 if (current != null) { 119 if (view != null) { 128 mTuples.get(i).mAnimator.setTarget(null); [all...] |
/frameworks/base/core/java/android/view/textservice/ |
TextServicesManager.java | 84 if (sInstance == null) { 109 * @param locale the locale for the spell checker. If {@code locale} is null and 111 * returned. If {@code locale} is not null and referToSpellCheckerLanguageSettings is true, 123 if (listener == null) { 126 if (!referToSpellCheckerLanguageSettings && locale == null) { 127 throw new IllegalArgumentException("Locale should not be null if you don't refer" 132 return null; 137 sci = mService.getCurrentSpellChecker(null); 139 return null; 141 if (sci == null) { [all...] |
/frameworks/support/compat/api23/android/support/v4/hardware/fingerprint/ |
FingerprintManagerCompatApi23.java | 46 return null; 55 return (fp != null) && fp.hasEnrolledFingerprints(); 63 return (fp != null) && fp.isHardwareDetected(); 72 if (fp != null) { 80 if (cryptoObject == null) { 81 return null; 82 } else if (cryptoObject.getCipher() != null) { 84 } else if (cryptoObject.getSignature() != null) { 86 } else if (cryptoObject.getMac() != null) { 89 return null; [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
AppCompatImageView.java | 62 this(context, null); 90 if (mImageHelper != null) { 99 if (mImageHelper != null) { 107 if (mImageHelper != null) { 115 if (mImageHelper != null) { 123 if (mImageHelper != null) { 131 if (mBackgroundTintHelper != null) { 139 if (mBackgroundTintHelper != null) { 153 if (mBackgroundTintHelper != null) { 168 return mBackgroundTintHelper != null [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
IntrinsicTest.java | 57 Math.class.getMethod("abs", int.class).invoke(null, 1); 59 Math.class.getMethod("abs", long.class).invoke(null, 1L); 61 Math.class.getMethod("abs", float.class).invoke(null, 1.0f); 63 Math.class.getMethod("abs", double.class).invoke(null, 1.0); 68 StrictMath.class.getMethod("abs", int.class).invoke(null, 1); 70 StrictMath.class.getMethod("abs", long.class).invoke(null, 1L); 72 StrictMath.class.getMethod("abs", float.class).invoke(null, 1.0f); 74 StrictMath.class.getMethod("abs", double.class).invoke(null, 1.0); 79 StrictMath.class.getMethod("min", int.class, int.class).invoke(null, 1, 2); 84 StrictMath.class.getMethod("max", int.class, int.class).invoke(null, 1, 2) [all...] |
/libcore/ojluni/src/main/java/sun/net/util/ |
IPAddressUtil.java | 43 return null; 59 return null; 74 return null; 78 return null; 93 return null; 98 return null; 113 return null; 118 return null; 121 return null; 140 return null; [all...] |
/packages/apps/EmergencyInfo/src/com/android/emergency/ |
EmergencyContactManager.java | 42 String phoneNumber = null; 43 String phoneType = null; 44 String name = null; 45 Bitmap photo = null; 56 null, null, null); 66 if (photoId != null && photoId > 0) { 72 null, null, null) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
AttributesImplTest.java | 59 ai = new AttributesImpl(null); 89 assertEquals(null, multi.getURI(-1)); 90 assertEquals(null, multi.getURI(5)); 102 assertEquals(null, multi.getLocalName(-1)); 103 assertEquals(null, multi.getLocalName(5)); 115 assertEquals(null, multi.getQName(-1)); 116 assertEquals(null, multi.getQName(5)); 128 assertEquals(null, multi.getType(-1)); 129 assertEquals(null, multi.getType(5)); 141 assertEquals(null, multi.getValue(-1)) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 75 private SerializationHandler fSerializer = null;
83 private DOMErrorHandler fErrorHandler = null;
86 private LSSerializerFilter fFilter = null;
89 private LexicalHandler fLexicalHandler = null;
94 private String fNewLine = null;
97 private Properties fDOMConfigProperties = null;
103 private String fXMLVersion = null;
210 //fErrorHandler = errHandler == null ? new DOMErrorHandlerImpl() : errHandler; // Should we be using the default?
213 fLexicalHandler = null;
250 if (ownerDoc != null
[all...] |
/external/emma/core/java12/com/vladium/util/exception/ |
ExceptionCommon.java | 75 * be the calling class.</I> [the method is a no-op if this is null] 79 * [the method is a no-op if this is null or an empty string] 81 * @return ResourceBundle that corresponds to 'namespace' key or null if 92 if ((namespace != null) && (messageResourceBundleName != null) 107 ResourceBundle temprb = null; 108 String nameInNamespace = null; 116 if (loader == null) loader = ClassLoader.getSystemClassLoader (); 124 temprb = null; 127 if (temprb != null) [all...] |
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...] |
/libcore/luni/src/test/java/libcore/xml/ |
XmlPullParserFactoryTest.java | 35 XmlPullParserFactory factory = XmlPullParserFactory.newInstance(null, null); 50 TestXmlPullParserFactory tf = new TestXmlPullParserFactory(null, null); 90 new String[] { "libcore.xml.XmlPullParserFactoryTest$XmlParserThatHatesAllFeatures" }, null); 108 if (parserClassList != null) { 114 if (serializerClassList != null) { 152 return null; 171 return null; 179 return null; [all...] |
/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...] |
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
FlashingResourcesParser.java | 90 * the appropriate constraint (if any) as a prereq for being added. May be null to 105 this(deviceImgZipFile, null); 116 * the appropriate constraint (if any) as a prereq for being added. May be null to 133 this(infoReader, null); 166 // Use null to designate the global product requirements 167 return getRequiredImageVersion(imageVersionKey, null); 180 if (productReqs == null && productName != null) { 183 return getRequiredImageVersion(imageVersionKey, null); 189 if (result != 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...] |
/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/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
ClassAnalyzerTest.java | 36 analyzer = new ClassAnalyzer(0x0000, false, null, new StringPool()); 37 analyzer.visit(Opcodes.V1_5, Opcodes.ACC_PUBLIC, "Foo", null, 38 "java/lang/Object", null); 44 InstrSupport.DATAFIELD_NAME, InstrSupport.DATAFIELD_DESC, null, 45 null); 52 null, null); 58 null, null); 68 null, 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...] |