Searched refs:re (Results 1 - 25 of 29) sorted by relevance

12

/packages/apps/Messaging/build/
H A Dcolorize_errors.py20 import re namespace
27 ERROR = re.compile(r"^Error:")
28 WARNING = re.compile(r"^Warning:")
29 STARTS_WITH_WS = re.compile(r"^\s")
H A Dprocess_style_output.py20 import re namespace
26 PATTERN = re.compile(r"(?P<file>[^:]+):(?P<line>\d+)(?P<column>:\d+)?:\s(?P<message>.*)")
/packages/apps/Camera2/tests/exiftool_parser/
H A Dparser.py17 import re namespace
35 p = re.compile(
38 , re.M)
67 _id = re.search("0x[0-9a-f]{4}", s)
71 name = re.search("[0-9]*?\).*?(?:(?: = )|(?: \(SubDirectory\) -->))", s)
75 value = re.search("\(SubDirectory\) -->", s)
79 value = re.search("\(.*\)\n", s)
83 value = re.search("=.*\n", s)
/packages/providers/CalendarProvider/
H A Dmaketests.py13 import sys, urllib, re namespace
35 DTSTART_TZID = re.compile("DTSTART;TZID=(.*):(.*)")
36 DTSTART = re.compile("DTSTART:(.*)")
37 DURATION = re.compile("DURATION:(.*)")
38 RRULE = re.compile("RRULE:(.*)")
39 TIME = re.compile("(....)-(..)-(..)T(..):(..):(..)....([+-])(..):(..)")
40 TIMEZ = re.compile("(....)-(..)-(..)T(..):(..):(..)....Z")
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
H A DImapTempFileLiteral.java74 // It's probably possible if we're low on storage and the system clears the cache dir.
104 } catch (RuntimeException re) {
106 LogUtils.w(TAG, "Failed to remove temp file: " + re.getMessage());
/packages/apps/Email/provider_src/com/android/email/mail/store/imap/
H A DImapTempFileLiteral.java78 // It's probably possible if we're low on storage and the system clears the cache dir.
108 } catch (RuntimeException re) {
110 LogUtils.w(Logging.LOG_TAG, "Failed to remove temp file: " + re.getMessage());
/packages/apps/Email/provider_src/com/android/email/service/
H A DImapTempFileLiteral.java81 // It's probably possible if we're low on storage and the system clears the cache dir.
111 } catch (RuntimeException re) {
113 LogUtils.w(Logging.LOG_TAG, "Failed to remove temp file: " + re.getMessage());
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
H A DUserSwitchListenerService.java102 } catch (RemoteException re) {
103 Log.e(TAG, "Caught exception while switching user! ", re);
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarEventModel.java151 ReminderEntry re = (ReminderEntry) obj;
153 if (re.mMinutes != mMinutes) {
160 return re.mMethod == mMethod ||
161 (re.mMethod == Reminders.METHOD_DEFAULT && mMethod == Reminders.METHOD_ALERT) ||
162 (re.mMethod == Reminders.METHOD_ALERT && mMethod == Reminders.METHOD_DEFAULT);
175 public int compareTo(ReminderEntry re) { argument
176 if (re.mMinutes != mMinutes) {
177 return re.mMinutes - mMinutes;
179 if (re.mMethod != mMethod) {
180 return mMethod - re
[all...]
H A DEventInfoFragment.java1222 // If we're a dialog we don't want to handle menu buttons
1387 * Creates an exception to a recurring event. The only change we're making is to the
1953 for (ReminderEntry re : reminders) {
1955 mActivity, mReminderMinuteValues, mReminderMinuteLabels, re.getMinutes());
1960 for (ReminderEntry re : reminders) {
1963 mReminderMethodLabels, re, Integer.MAX_VALUE, mReminderChangeListener);
1973 // b) you're not the organizer and only attendee AND
1979 // included in the feed, but we're currently omitting those corner cases
2168 // from the assets. If we're switching calendars, we need to clear and re
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.h64 void build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows);
H A DDelaunay.cpp73 void CDelaunay::build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows) argument
103 *re = rdo;
108 *re = (EdgePointer) sym(a);
117 *re = c;
120 *re = (EdgePointer) sym(b);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DAbstractContactsProvider.java232 } catch (RuntimeException re) {
234 throw re;
280 } catch (RuntimeException re) {
282 throw re;
/packages/apps/Messaging/
H A DForceProguard.mk15 # Check to see if we need to force proguard to re-run, typically after using tapas to
/packages/services/Car/
H A Dapicheck.mk155 # Check that the API we're building hasn't broken the last-released SDK version
172 # Check that the API we're building hasn't changed from the not-yet-released
215 # Check that the API we're building hasn't broken the last-released SDK version
232 # Check that the API we're building hasn't changed from the not-yet-released
/packages/apps/Launcher3/
H A Dprint_db.py7 import re namespace
292 match = re.search(r"(\d+)x(\d+)", str)
/packages/apps/Car/Radio/libs/android-arch/room/
H A Dcompiler-1.1.0-beta3.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/arch/ android/arch/persistence/ android/arch/persistence/room/ ...
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventHelper.java283 // It's a problem if we try to save a non-existent or invalid model or if we're
694 * @param originalModel The original event that we're updating
720 * should not be called for the first instance. All we're really interested in is
792 * new event or we're forcing an overwrite so we return true in that case.
844 ReminderEntry re = reminders.get(i);
847 values.put(Reminders.MINUTES, re.getMinutes());
848 values.put(Reminders.METHOD, re.getMethod());
888 ReminderEntry re = reminders.get(i);
891 values.put(Reminders.MINUTES, re.getMinutes());
892 values.put(Reminders.METHOD, re
[all...]
H A DEditEventView.java756 // If we're making an exception we don't want it to be a repeating
997 // from the assets. If we're switching calendars, we need to clear and re-populate the
1007 // a new event, mCalendarAllowedReminders may not be set the first time we're called.
1018 for (ReminderEntry re : reminders) {
1019 if (mReminderMethodValues.contains(re.getMethod())) {
1021 mReminderMinuteLabels, re.getMinutes());
1029 for (ReminderEntry re : reminders) {
1030 if (mReminderMethodValues.contains(re.getMethod())
1031 || re
[all...]
H A DEditEventFragment.java313 ReminderEntry re = ReminderEntry.valueOf(minutes, method);
314 mModel.mReminders.add(re);
315 mOriginalModel.mReminders.add(re);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
H A DSecurityFragment.java457 } catch (RemoteException re) {
458 Log.e(TAG, "Caught exception while switching user! ", re);
/packages/services/Mms/src/com/android/mms/service/
H A DDownloadRequest.java204 } catch (RemoteException re) {
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharEscapers.java923 * backup function. We're not overriding the array decorator because we
977 * backup function. We're not overriding the array decorator because we
1028 * backup function. We're not overriding the array decorator because we
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DUtility.java690 } catch (RuntimeException re) {
691 LogUtils.w(LogUtils.TAG, re, "attachmentExists RuntimeException");
711 // If the attachment doesn't exist and isn't marked for download, we're in trouble
/packages/apps/Settings/src/com/android/settings/
H A DCredentialStorage.java454 } catch (RemoteException re) {

Completed in 610 milliseconds

12