/external/nist-sip/java/gov/nist/javax/sip/header/ |
CallIdentifier.java | 76 * @throws IllegalArgumentException if cid is null or is not a token, 93 if (host != null) { 106 if (other == null ) return false; 116 if ((this.host == null && that.host != null) 117 || (this.host != null && that.host == null)) 127 if (this.localId == null ) { 157 * @throws IllegalArgumentException if cid is null or is not a token or 161 if (cid == null) [all...] |
To.java | 94 if (address != null) { 118 if (address == null) 119 return null; 129 if (address == null) 130 return null; 140 if (parameters == null) 141 return null; 152 if (parameters == null) 162 if (parameters != null) 183 if (address == null) [all...] |
/external/smali/smalidea/src/test/java/org/jf/smalidea/ |
SmaliPositionManagerTest.java | 143 @Override public List<ReferenceType> allClasses() { return null; } 149 @Override public DebugProcess getDebugProcess() { return null; } 150 @Override public List<ReferenceType> nestedTypes(ReferenceType refType) { return null; } 155 @Override public <T> T getUserData(Key<T> key) { return null; } 157 @Override public RequestManager getRequestsManager() { return null; } 158 @Override public PositionManager getPositionManager() { return null; } 164 @Override public ExecutionResult getExecutionResult() { return null; } 165 @Override public DebuggerManagerThread getManagerThread() { return null; } 166 @Override public Value invokeMethod(EvaluationContext evaluationContext, ObjectReference objRef, Method method, List args) throws EvaluateException { return null; } 167 @Override public Value invokeMethod(EvaluationContext evaluationContext, ClassType classType, Method method, List args) throws EvaluateException { return null; } [all...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 43 * the same result from the decoder as if null were passed. 115 * If set to true, the decoder will return null (no bitmap), but 134 * If this is non-null, the decoder will try to decode into this 135 * internal configuration. If it is null, or the request cannot be met, 146 * <p>If this is non-null, the decoder will try to decode into this 147 * color space. If it is null, or the request cannot be met, 167 * specified color space returns null.</p> 172 public ColorSpace inPreferredColorSpace = null; 381 * If not known, or there is an error, it is set to null. 387 * If not known, or there is an error, it is set to null [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiCountryCode.java | 38 private String mDefaultCountryCode = null; 39 private String mTelephonyCountryCode = null; 40 private String mCurrentCountryCode = null; 87 mTelephonyCountryCode = null; 101 mTelephonyCountryCode = null; 104 mTelephonyCountryCode = null; 137 mTelephonyCountryCode = null; 154 * If wpa_supplicant was never started, this may be null even if a SIM reported a valid 156 * Returns null if no Country Code was sent to driver. 167 * Returns null when there is no Country Code available [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/spi/ |
AsynchronousChannelProvider.java | 56 if (sm != null) 58 return null; 83 if (p != null) 86 if (p != null) 94 if (cn == null) 95 return null; 101 throw new ServiceConfigurationError(null, x); 103 throw new ServiceConfigurationError(null, x); 105 throw new ServiceConfigurationError(null, x); 107 throw new ServiceConfigurationError(null, x) [all...] |
/packages/apps/Contacts/src/com/android/contacts/preference/ |
DefaultAccountPreference.java | 50 if (mListAdapter != null) { 51 mListAdapter.setAccounts(accounts, null); 65 if (mAccounts != null) { 66 mListAdapter.setAccounts(mAccounts, null); 78 if (defaultAccount == null || mAccounts == null || 80 return null; 90 builder.setNegativeButton(null, null); 91 builder.setPositiveButton(null, null) [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/ |
Device.java | 34 private static String sDeviceId = null; 44 if (sDeviceId == null) { 51 if (context == null) { 55 BufferedReader rdr = null; 62 if (id == null) { 63 // It's very bad if we read a null device id; let's delete that file 66 "Can't delete null deviceName file; try overwrite."); 81 if (consistentDeviceId != null) { 93 * @return Device's unique ID if available. null if the device has no unique ID. 100 if (tm == null) { [all...] |
/tools/loganalysis/src/com/android/loganalysis/parser/ |
BatteryDischargeStatsInfoParser.java | 44 Integer minPercent = null; 45 Integer maxPercent = null; 46 Integer minProjectionPercent = null; 47 Integer maxProjectionPercent = null; 55 if (minPercent == null || percent < minPercent) { 59 if (maxPercent == null || maxPercent < percent) { 77 if (minProjectionPercent == null || percent < minProjectionPercent) { 81 if (maxProjectionPercent == null || maxProjectionPercent < percent) { 89 if (minPercent == null) { 90 return null; [all...] |
/libcore/ojluni/src/main/java/java/util/ |
HashMap.java | 41 * <tt>null</tt> values and the <tt>null</tt> key. (The <tt>HashMap</tt> 338 return (key == null) ? 0 : (h = key.hashCode()) ^ (h >>> 16); 343 * Comparable<C>", else null. 350 if ((ts = c.getGenericInterfaces()) != null) { 355 (as = p.getActualTypeArguments()) != null && 361 return null; 370 return (x == null || x.getClass() != kc ? 0 : 485 * @throws NullPointerException if the specified map is null 502 if (table == null) { // pre-siz 1458 removeNode(hash(key), key, null, false, false); local [all...] |
/frameworks/base/core/java/android/app/ |
PendingIntent.java | 128 * already exist, then simply return null instead of creating it. 216 if (handler == null && ActivityThread.isSystem()) { 219 if (sDefaultSystemHandler == null) { 233 if (mHandler == null) { 267 * @param listener The listener, null to clear. 298 * parameters. May return null only if {@link #FLAG_NO_CREATE} has been 303 return getActivity(context, requestCode, intent, flags, null); 328 * May be null if there are no options. 331 * parameters. May return null only if {@link #FLAG_NO_CREATE} has been 337 String resolvedType = intent != null ? intent.resolveTypeIfNeeded [all...] |
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/ |
ThermalService.java | 98 private ThermalManager.PlatformInfo mPlatformInfo = null; 99 private ThermalSensor mCurrSensor = null; 100 private ThermalZone mCurrZone = null; 101 private ArrayList<ThermalSensorAttrib> mCurrSensorAttribList = null; 102 private ThermalSensorAttrib mCurrSensorAttrib = null; 103 private ArrayList<ThermalZone> mThermalZones = null; 104 private ArrayList<Integer> mPollDelayList = null; 105 private ArrayList<Integer> mMovingAvgWindowList = null; 106 private ArrayList<Integer> mWeightList = null; 107 private ArrayList<Integer> mOrderList = 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...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
Stylesheet.java | 93 if (null != parent) 242 if (null == m_ExtensionElementURIs) 256 return (null != m_ExtensionElementURIs) 271 if (null == m_ExtensionElementURIs) 320 if (null == m_ExcludeResultPrefixs) 334 return (null != m_ExcludeResultPrefixs) 343 * @param prefix non-null reference to prefix that might be excluded. 351 if (null == m_ExcludeResultPrefixs || uri == null ) 458 if (null == m_imports [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationsDirectoryItem.java | 43 /** {@code null-ok;} the class-level annotations, if any */ 46 /** {@code null-ok;} the annotated fields, if any */ 49 /** {@code null-ok;} the annotated methods, if any */ 52 /** {@code null-ok;} the annotated parameters, if any */ 61 classAnnotations = null; 62 fieldAnnotations = null; 63 methodAnnotations = null; 64 parameterAnnotations = null; 80 return (classAnnotations == null) && 81 (fieldAnnotations == null) & [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationsDirectoryItem.java | 43 /** {@code null-ok;} the class-level annotations, if any */ 46 /** {@code null-ok;} the annotated fields, if any */ 49 /** {@code null-ok;} the annotated methods, if any */ 52 /** {@code null-ok;} the annotated parameters, if any */ 61 classAnnotations = null; 62 fieldAnnotations = null; 63 methodAnnotations = null; 64 parameterAnnotations = null; 80 return (classAnnotations == null) && 81 (fieldAnnotations == null) & [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
RegionTest.java | 34 { "001", "001", null , "WORLD", null }, 35 { "002", "002", "001", "CONTINENT", null }, 36 { "003", "003", null, "GROUPING", null }, 38 { "009", "009", "001", "CONTINENT", null}, 45 { "019", "019", "001", "CONTINENT", null }, 56 { "142", "142", "001", "CONTINENT", null }, 59 { "150", "150", "001", "CONTINENT", null }, 63 { "419", "419", null, "GROUPING" , null} [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
RegionTest.java | 33 { "001", "001", null , "WORLD", null }, 34 { "002", "002", "001", "CONTINENT", null }, 35 { "003", "003", null, "GROUPING", null }, 37 { "009", "009", "001", "CONTINENT", null}, 44 { "019", "019", "001", "CONTINENT", null }, 55 { "142", "142", "001", "CONTINENT", null }, 58 { "150", "150", "001", "CONTINENT", null }, 62 { "419", "419", null, "GROUPING" , null} [all...] |
/frameworks/base/media/java/android/media/ |
MediaSync.java | 56 * }, null); 74 * sync = null; 186 private Handler mCallbackHandler = null; 187 private MediaSync.Callback mCallback = null; 190 private Handler mOnErrorListenerHandler = null; 191 private MediaSync.OnErrorListener mOnErrorListener = null; 193 private Thread mAudioThread = null; 196 private Handler mAudioHandler = null; 197 private Looper mAudioLooper = null; 200 private AudioTrack mAudioTrack = null; [all...] |
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
ExifData.java | 56 * Gets the compressed thumbnail. Returns null if there is no compressed 76 return mThumbnail != null; 87 mStripBytes.add(null); 125 * exists or null. 131 return null; 148 if (ifdData == null) { 157 * Otherwise returns null. 161 return (ifdData == null) ? null : ifdData.getTag(tag); 166 * with the same TID or null if none exist [all...] |
/libcore/ojluni/src/main/java/java/beans/ |
PropertyChangeSupport.java | 90 if (sourceBean == null) { 101 * If <code>listener</code> is null, no exception is thrown and no action 107 if (listener == null) { 117 this.map.add(null, listener); 127 * If <code>listener</code> is null, or was never added, no exception is 133 if (listener == null) { 143 this.map.remove(null, listener); 189 * If <code>propertyName</code> or <code>listener</code> is null, no 198 if (listener == null || propertyName == null) { [all...] |
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
ExifData.java | 56 * Gets the compressed thumbnail. Returns null if there is no compressed 76 return mThumbnail != null; 87 mStripBytes.add(null); 125 * exists or null. 131 return null; 148 if (ifdData == null) { 157 * Otherwise returns null. 161 return (ifdData == null) ? null : ifdData.getTag(tag); 166 * with the same TID or null if none exist [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/exif/ |
ExifData.java | 57 * Gets the compressed thumbnail. Returns null if there is no compressed 77 return mThumbnail != null; 88 mStripBytes.add(null); 126 * exists or null. 132 return null; 149 if (ifdData == null) { 158 * Otherwise returns null. 162 return (ifdData == null) ? null : ifdData.getTag(tag); 167 * with the same TID or null if none exist [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/descriptors/ |
ValuesDescriptors.java | 92 null /* nsUri */, 99 null, // no child nodes 109 null /* nsUri */, 116 null, // no child nodes 122 null, // TODO find javadoc 123 null, // TODO find link to javadoc 126 null /* nsUri */, 130 null /* nsUri */, 136 null /* nsUri */, 155 null, // no child node [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/pm/ |
StubPackageManager.java | 26 return null; 38 return null; 47 return null; 52 return null; 57 return null; 61 return null; 66 return null; 71 return null; 76 return null; 81 return null; [all...] |