HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 1351 - 1375 of 19200) sorted by null

<<51525354555657585960>>

  /packages/apps/UnifiedEmail/src/com/android/mail/
ContactInfo.java 30 this(contactUri, status, null, null);
34 this(contactUri, status, photoBytes, null);
38 this(contactUri, status, null, photo);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
RecentFolderObserver.java 60 if (controller == null) {
61 LogUtils.wtf(LOG_TAG, "RecentFolderObserver initialized with null controller!");
76 if (mController == null) {
77 return null;
86 if (mController == null) {
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
StorageLowState.java 44 /** If non-null, this represents a handler that is notified of changes to state. */
45 private static LowStorageHandler sHandler = null;
58 // intent, so we are guaranteed a non-null intent if that broadcast was sent and not
61 final Intent result = context.registerReceiver(null, filter);
62 setIsStorageLow(result != null);
74 if (sHandler == null) {
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
ContentTypeField.java 72 private Map<String, String> parameters = null;
84 * the field value, if any; otherwise, null.
102 * if child is <code>null</code> or hasn't got a MIME type value set.
114 if (child == null || child.getMimeType().length() == 0
115 || child.isMultipart() && child.getBoundary() == null) {
117 if (parent != null && parent.isMimeType(TYPE_MULTIPART_DIGEST)) {
131 * @return the parameter value or <code>null</code> if not set.
134 return parameters != null
136 : null;
145 if (parameters != null) {
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
AbstractBody.java 31 private Entity parent = null;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempStorage.java 33 private static TempStorage inst = null;
40 if (inst != null) {
49 if (inst == null) {
67 if (inst == null) {
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/browse/
SendersFormattingTests.java 42 MessageInfo info = new MessageInfo(read, starred, null, -1, null);
45 ArrayList<String> emailDisplays = null;
47 null, false); local
52 MessageInfo info2 = new MessageInfo(read, starred, "", -1, null);
56 null, false); local
61 MessageInfo info3 = new MessageInfo(read, starred, "", -1, null);
63 MessageInfo info4 = new MessageInfo(read, starred, "", -1, null);
67 null, false); local
75 ArrayList<String> emailDisplays = null;
84 null, false); local
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Collapser.java 57 if (iItem != null) {
60 if (jItem != null) {
63 list.set(j, null);
70 // Remove the null items
73 if (itr.next() == null) {
EntityDelta.java 103 if (local == null && (remoteValues.isDelete() || remoteValues.isTransient())) return null;
106 if (local == null) local = new EntityDelta();
109 final Long localVersion = (local.mValues == null) ? null : local.mValues
128 if (localEntry == null && merged != null) {
148 * which may return null when no entry exists.
152 if (mimeEntries == null) return null;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
AppWorkaroundsUtils.java 26 private PackageInfo mPackageInfo; // May be null
40 if (null == mPackageInfo || null == mPackageInfo.applicationInfo) {
48 if (null == mPackageInfo || null == mPackageInfo.applicationInfo) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DeadKeyCombiner.java 32 if (null == event) return null; // Just in case some combiner is broken
53 Constants.CODE_SPACE == event.mCodePoint ? null : event /* next */);
56 return Event.createCommittableEvent(resultingCodePoint, null /* next */);
HardwareKeyboardEventDecoder.java 50 return Event.createCommittableEvent(Constants.CODE_DELETE, null /* next */);
57 codePointAndFlags & KeyCharacterMap.COMBINING_ACCENT_MASK, null /* next */);
66 null /* next */);
70 return Event.createCommittableEvent(codePointAndFlags, null /* next */);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
ExpandableDictionaryTests.java 38 dict.addWord("abcef", null, UNIGRAM_FREQ + 1, 0);
46 dict.addWord("abc", null, UNIGRAM_FREQ + 2, 0);
51 dict.addWord("abc", null, UNIGRAM_FREQ, 0);
55 dict.addWord("abc", null, UNIGRAM_FREQ + 3, 0);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CountryMonitor.java 47 if (mCurrentCountryIso == null) {
50 Country country = null;
51 if (countryDetector != null) country = countryDetector.detectCountry();
53 if (country == null) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
CloseUtils.java 27 /** If the argument is non-null, close the cursor. */
29 if (cursor != null) {
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldView.java 22 if (mRS == null) {
34 if (mRS != null) {
35 mRS.setSurface(null, 0, 0);
36 mRS = null;
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamView.java 22 if (mRS == null) {
35 if (mRS != null) {
36 mRS.setSurface(null, 0, 0);
37 mRS = null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
HoverOverlay.java 55 * Current mouse hover border rectangle. Null when there's no mouse hover.
78 if (SwtDrawingStyle.HOVER.getStrokeColor() != null) {
81 if (SwtDrawingStyle.HOVER.getFillColor() != null) {
85 if (SwtDrawingStyle.HOVER_SELECTION.getStrokeColor() != null) {
89 if (SwtDrawingStyle.HOVER_SELECTION.getFillColor() != null) {
97 if (mHoverStrokeColor != null) {
99 mHoverStrokeColor = null;
102 if (mHoverFillColor != null) {
104 mHoverFillColor = null;
107 if (mHoverSelectStrokeColor != null) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
FlagManagerTest.java 46 assertSame(us, manager.getFlag("en", null));
48 assertSame(gb, manager.getFlag("en", null));
50 assertSame(ca, manager.getFlag("en", null));
51 assertSame(manager.getFlag("NO"), manager.getFlag("nb", null));
52 assertSame(manager.getFlag("FR"), manager.getFlag("fr", null));
55 assertSame(br, manager.getFlag("pt", null));
58 assertSame(pt, manager.getFlag("pt", null));
62 assertNotSame(gb, manager.getFlag("cy", null)); // Wales
63 assertNotSame(es, manager.getFlag("ca", null)); // Catalonia
66 assertSame(manager.getFlag("yi", null), manager.getFlag("ji", null))
    [all...]
  /sdk/emulator/opengl/
gen-encoder.sh 13 cd "$ANDROID_BUILD_TOP" >/dev/null
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/
BackgroundAction.java 24 if (worker != null) {
  /sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/
App.java 15 if (tv != null) {
22 if (input == null) {
26 BufferedReader reader = null;
33 if (reader != null) {
  /sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/
Lib1.java 15 if (tv != null) {
22 if (input == null) {
26 BufferedReader reader = null;
33 if (reader != null) {
  /sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/
Lib2.java 15 if (tv != null) {
22 if (input == null) {
26 BufferedReader reader = null;
33 if (reader != null) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
HceEmulatorTestActivity.java 47 new Intent(this, DefaultRouteEmulatorActivity.class), null));
51 new Intent(this, ProtocolParamsEmulatorActivity.class), null));
55 new Intent(this, SinglePaymentEmulatorActivity.class), null));
59 new Intent(this, DualPaymentEmulatorActivity.class), null));
63 new Intent(this, ChangeDefaultEmulatorActivity.class), null));
68 new Intent(this, SingleNonPaymentEmulatorActivity.class), null));
72 new Intent(this, DualNonPaymentEmulatorActivity.class), null));
76 new Intent(this, ConflictingNonPaymentEmulatorActivity.class), null));
80 new Intent(this, ThroughputEmulatorActivity.class), null));
84 new Intent(this, TapTestEmulatorActivity.class), null));
    [all...]

Completed in 580 milliseconds

<<51525354555657585960>>