/frameworks/base/core/java/android/widget/ |
SuggestionsAdapter.java | 102 null, // no initial cursor 131 if (constraint == null) return 0; 178 String query = (constraint == null) ? "" : constraint.toString(); 183 Cursor cursor = null; 186 return null; 193 if (cursor != null) { 200 // If cursor is null or an exception was thrown, stop the spinner and return null. 201 // changeCursor doesn't get called if cursor is null 203 return null; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidClasspathContainerInitializer.java | 68 public static final String NULL_API_URL = "<null>"; //$NON-NLS-1$ 112 if (container != null) { 161 String markerMessage = null; 163 IAndroidTarget target = null; 167 if (plugin == null) { // This is totally weird, but I've seen it happen! 168 return null; 176 if (state == null) { 182 // this might be null if the sdk is not yet loaded. 185 // if we are loaded and the target is non null, we create a valid 187 if (sdkIsLoaded && target != null) { [all...] |
/libcore/luni/src/main/java/java/util/ |
TreeMap.java | 43 * this map. In this case {@link #comparator} will return null. 57 * // The Map API specifies that the next line should print "null" because 83 * comparable and non-null. 93 * non-null. 114 * be null if {@code comparator} permits. 116 * @param comparator the comparator to order elements with, or {@code null} to use the natural 119 @SuppressWarnings("unchecked") // unsafe! if comparator is null, this assumes K is comparable 121 if (comparator != null) { 130 * copyFrom}. This map's keys may only be null if the {@code copyFrom}'s 145 if (sourceComparator != null) { [all...] |
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
PictureDrawableTest.java | 30 assertNull((new PictureDrawable(null)).getPicture()); 35 PictureDrawable pictureDrawable = new PictureDrawable(null); 61 PictureDrawable pictureDrawable = new PictureDrawable(null); 62 // Test with null Picture object 75 PictureDrawable pictureDrawable = new PictureDrawable(null); 80 PictureDrawable pictureDrawable = new PictureDrawable(null); 85 PictureDrawable pictureDrawable = new PictureDrawable(null); 92 PictureDrawable pictureDrawable = new PictureDrawable(null); 97 PictureDrawable pictureDrawable = new PictureDrawable(null); 102 PictureDrawable pictureDrawable = new PictureDrawable(null); [all...] |
/cts/tools/vm-tests-tf/src/util/build/ |
BuildStep.java | 52 if (obj == null) return false; 63 if (inputFile == null) { 64 throw new NullPointerException("inputFile is null"); 66 if (outputFile == null) { 67 throw new NullPointerException("outputFile is null"); 79 if (children != null) { 91 if (obj == null) return false; 100 if (children == null) { 114 if (inChannel != null) inChannel.close(); 115 if (outChannel != null) outChannel.close() [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RopMethod.java | 27 /** {@code non-null;} basic block list of the method */ 34 * {@code null-ok;} array of predecessors for each block, indexed by block 40 * {@code null-ok;} the predecessors for the implicit "exit" block, that is 48 * @param blocks {@code non-null;} basic block list of the method 52 if (blocks == null) { 53 throw new NullPointerException("blocks == null"); 63 this.predecessors = null; 64 this.exitPredecessors = null; 70 * @return {@code non-null;} the list 91 * @return {@code non-null;} the predecessors of that bloc [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RopMethod.java | 26 /** {@code non-null;} basic block list of the method */ 33 * {@code null-ok;} array of predecessors for each block, indexed by block 39 * {@code null-ok;} the predecessors for the implicit "exit" block, that is 47 * @param blocks {@code non-null;} basic block list of the method 51 if (blocks == null) { 52 throw new NullPointerException("blocks == null"); 62 this.predecessors = null; 63 this.exitPredecessors = null; 69 * @return {@code non-null;} the list 90 * @return {@code non-null;} the predecessors of that bloc [all...] |
/developers/build/prebuilts/gradle/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/AdvancedImmersiveMode/AdvancedImmersiveModeSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicAccessibility/BasicAccessibilitySample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicGestureDetect/BasicGestureDetectSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicImmersiveMode/BasicImmersiveModeSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicMediaRouter/BasicMediaRouterSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicNetworking/BasicNetworkingSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/BorderlessButtons/BorderlessButtonsSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/CardEmulation/CardEmulationSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/CardReader/CardReaderSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/CustomChoiceList/CustomChoiceListSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/ImmersiveMode/ImmersiveModeSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |
/developers/build/prebuilts/gradle/NetworkConnect/NetworkConnectSample/src/main/java/com/example/android/common/logger/ |
Log.java | 65 if (mLogNode != null) { 79 println(priority, tag, msg, null); 101 v(tag, msg, null); 124 d(tag, msg, null); 146 i(tag, msg, null); 168 w(tag, msg, null); 179 w(tag, null, tr); 201 e(tag, msg, null); 223 wtf(tag, msg, null); 234 wtf(tag, null, tr) [all...] |