HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 3026 - 3050 of 19630) sorted by null

<<121122123124125126127128129130>>

  /external/valgrind/main/none/tests/
fdleak_creat.stderr.exp 13 Open file descriptor ...: /dev/null
  /external/valgrind/main/tests/
check_makefile_consistency 74 for f in $(ls -d *.exp* *.gdb *.vgtest 2>/dev/null)
79 if ! echo "${parsed_makefile}" 2>/dev/null | grep '^ *EXTRA_DIST *=' |
87 for f in $(ls -d filter* 2>/dev/null)
89 if ! echo "${parsed_makefile}" 2>/dev/null | grep '^ *dist_noinst_SCRIPTS *=' |
  /external/wpa_supplicant_8/src/eap_peer/
Makefile 8 if ls *.so >/dev/null 2>&1; then \
  /frameworks/base/core/java/android/app/
Application.java 49 private ArrayList<OnProvideAssistDataListener> mAssistCallbacks = null;
80 super(null);
106 if (callbacks != null) {
115 if (callbacks != null) {
124 if (callbacks != null) {
160 if (mAssistCallbacks == null) {
169 if (mAssistCallbacks != null) {
187 if (callbacks != null) {
197 if (callbacks != null) {
206 if (callbacks != null) {
    [all...]
ListFragment.java 212 mList = null;
214 mEmptyView = mProgressContainer = mListContainer = null;
215 mStandardEmptyView = null;
237 boolean hadAdapter = mAdapter != null;
239 if (mList != null) {
244 setListShown(true, getView().getWindowToken() != null);
291 if (mStandardEmptyView == null) {
295 if (mEmptyText == null) {
339 if (mProgressContainer == null) {
381 if (mList != null) {
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java 74 return me.mService != null ? me : null;
140 if (mService != null) {
152 * names. Note that if there are no administrators than null may be
156 if (mService != null) {
163 return null;
172 if (mService != null) {
189 if (mService != null) {
208 if (mService != null) {
300 if (mService != null) {
    [all...]
  /frameworks/base/core/java/android/content/
BroadcastReceiver.java 144 * <p>To enforce a permission when sending, you supply a non-null
154 * <p>To enforce a permission when receiving, you supply a non-null
317 if (e == null) mResultExtras = e = new Bundle();
401 if (mResultExtras != null) {
415 if (mResultExtras != null) {
424 am.finishReceiver(mToken, 0, null, null, false);
506 mPendingResult = null;
521 IBinder binder = null;
559 return mPendingResult != null ? mPendingResult.mResultCode : 0
    [all...]
IntentSender.java 123 if (mHandler == null) {
140 * @param context The Context of the caller. This may be null if
141 * <var>intent</var> is also null.
145 * original Intent. Use null to not modify the original Intent.
147 * completed, or null for no callback.
149 * should happen. If null, the callback will happen from the thread
158 sendIntent(context, code, intent, onFinished, handler, null);
166 * @param context The Context of the caller. This may be null if
167 * <var>intent</var> is also null.
171 * original Intent. Use null to not modify the original Intent
    [all...]
  /frameworks/base/core/java/android/database/
ContentObservable.java 50 dispatchChange(selfChange, null);
64 * @param uri The Uri of the changed content, or null if unknown.
87 observer.onChange(selfChange, null);
Observable.java 32 * once and will never be null.
37 * Adds an observer to the list. The observer cannot be null and it must not already
40 * @throws IllegalArgumentException the observer is null
44 if (observer == null) {
45 throw new IllegalArgumentException("The observer is null.");
56 * Removes a previously registered observer. The observer must not be null and it
59 * @throws IllegalArgumentException the observer is null
63 if (observer == null) {
64 throw new IllegalArgumentException("The observer is null.");
  /frameworks/base/core/java/android/hardware/display/
VirtualDisplay.java 58 if (mToken != null) {
60 mToken = null;
  /frameworks/base/core/java/android/preference/
ListPreference.java 65 this(context, null);
157 if (mSummary == null || entry == null) {
176 if (summary == null && mSummary != null) {
177 mSummary = null;
178 } else if (summary != null && !summary.equals(mSummary)) {
189 if (mEntryValues != null) {
207 * @return The entry corresponding to the current value, or null.
211 return index >= 0 && mEntries != null ? mEntries[index] : null
    [all...]
  /frameworks/base/core/java/android/text/util/
Rfc822Token.java 86 if (mName != null && mName.length() != 0) {
91 if (mComment != null && mComment.length() != 0) {
97 if (mAddress != null && mAddress.length() != 0) {
174 if (mName != null) result = 31 * result + mName.hashCode();
175 if (mAddress != null) result = 31 * result + mAddress.hashCode();
176 if (mComment != null) result = 31 * result + mComment.hashCode();
181 if (a == null) {
182 return (b == null);
  /frameworks/base/core/java/android/util/
EventLogTags.java 48 public Description get(String name) { return null; }
50 public Description get(int tag) { return null; }
  /frameworks/base/core/java/android/webkit/
CookieSyncManager.java 77 if (sRef == null) {
89 if (context == null) {
  /frameworks/base/core/java/com/android/internal/http/multipart/
MultipartEntity.java 132 if (parts == null) {
133 throw new IllegalArgumentException("parts cannot be null");
135 if (params == null) {
136 throw new IllegalArgumentException("params cannot be null");
144 if (parts == null) {
145 throw new IllegalArgumentException("parts cannot be null");
148 this.params = null;
161 if (multipartBoundary == null) {
162 String temp = null;
163 if (params != null) {
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 27 * method is not null.
30 * @return the non-null reference that was validated
31 * @throws NullPointerException if {@code reference} is null
34 if (reference == null) {
42 * method is not null.
47 * @return the non-null reference that was validated
48 * @throws NullPointerException if {@code reference} is null
51 if (reference == null) {
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 112 if (title != null) {
126 if (!checkable && mRadioButton == null && mCheckBox == null) {
136 if (mRadioButton == null) {
142 if (mCheckBox == null) {
158 if (otherCompoundButton != null && otherCompoundButton.getVisibility() != GONE) {
162 if (mCheckBox != null) mCheckBox.setVisibility(GONE);
163 if (mRadioButton != null) mRadioButton.setVisibility(GONE);
171 if (mRadioButton == null) {
176 if (mCheckBox == null) {
    [all...]
  /frameworks/base/media/java/android/media/
JetPlayer.java 106 private NativeEventHandler mEventHandler = null;
111 private Looper mInitializationLooper = null;
118 private OnJetEventListener mJetEventListener = null;
141 if (singletonRef == null) {
160 if ((mInitializationLooper = Looper.myLooper()) == null) {
186 * The object can no longer be used and the reference should be set to null
191 singletonRef = null;
407 OnJetEventListener listener = null;
413 if (listener != null) {
428 if (listener != null) {
    [all...]
  /frameworks/base/media/lib/java/com/android/media/remotedisplay/
RemoteDisplay.java 75 throw new IllegalArgumentException("id must not be null or empty");
92 mImmutableInfo = null;
103 mImmutableInfo = null;
114 mImmutableInfo = null;
125 mImmutableInfo = null;
136 mImmutableInfo = null;
147 mImmutableInfo = null;
158 mImmutableInfo = null;
168 if (mImmutableInfo == null) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ProgramVariable.java 42 if (mProgram == null) {
44 + "' but the program is null!");
50 if (mProgram == null) {
52 + "' but the program is null!");
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
NumPadKey.java 37 TextView mTextView = null;
43 if (mTextView == null) {
46 if (v != null && v instanceof TextView) {
52 if (mTextView != null && mTextView.isEnabled()) {
60 this(context, null);
83 if (sKlondike == null) {
87 if (sKlondike != null && sKlondike.length > mDigit) {
115 mTextView = null;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java 52 protected GLCanvas mCanvasRef = null;
62 sAllTextures.put(this, null);
67 this(null, 0, STATE_UNLOADED);
174 if (canvas != null && mId != -1) {
179 setAssociatedCanvas(null);
186 sInFinalizer.set(null);
193 return sInFinalizer.get() != null;
208 t.setAssociatedCanvas(null);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
EntropyMixerTest.java 34 assertEquals(0, FileUtils.readTextFile(file, 0, null).length());
37 new EntropyMixer(getContext(), "/dev/null", file.getCanonicalPath());
39 assertTrue(FileUtils.readTextFile(file, 0, null).length() > 0);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 62 return null;
115 if (o == null || getClass() != o.getClass()) {
121 if (enclosingClassname != null
123 : that.enclosingClassname != null) {
126 if (testMethodName != null
128 : that.testMethodName != null) {
137 result = (enclosingClassname != null ? enclosingClassname.hashCode() : 0);
138 result = 31 * result + (testMethodName != null ? testMethodName.hashCode() : 0);

Completed in 1536 milliseconds

<<121122123124125126127128129130>>