Home
last modified time | relevance | path

Searched refs:local (Results 1 – 23 of 23) sorted by relevance

/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
DEntityDelta.java100 public static EntityDelta mergeAfter(EntityDelta local, EntityDelta remote) { in mergeAfter() argument
103 if (local == null && (remoteValues.isDelete() || remoteValues.isTransient())) return null; in mergeAfter()
106 if (local == null) local = new EntityDelta(); in mergeAfter()
109 final Long localVersion = (local.mValues == null) ? null : local.mValues in mergeAfter()
117 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
125 final ValuesDelta localEntry = local.getEntry(childId); in mergeAfter()
130 local.addEntry(merged); in mergeAfter()
135 return local; in mergeAfter()
717 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() argument
719 if (local == null && (remote.isDelete() || remote.isTransient())) return null; in mergeAfter()
[all …]
DEntitySet.java88 public static EntitySet mergeAfter(EntitySet local, EntitySet remote) { in mergeAfter() argument
89 if (local == null) local = new EntitySet(); in mergeAfter()
96 final EntityDelta localEntity = local.getByRawContactId(rawContactId); in mergeAfter()
101 local.add(merged); in mergeAfter()
105 return local; in mergeAfter()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactDelta.java108 public static RawContactDelta mergeAfter(RawContactDelta local, RawContactDelta remote) { in mergeAfter() argument
111 if (local == null && (remoteValues.isDelete() || remoteValues.isTransient())) return null; in mergeAfter()
114 if (local == null) local = new RawContactDelta(); in mergeAfter()
117 final Long localVersion = (local.mValues == null) ? null : local.mValues in mergeAfter()
125 local.mValues = ValuesDelta.mergeAfter(local.mValues, remote.mValues); in mergeAfter()
133 final ValuesDelta localEntry = local.getEntry(childId); in mergeAfter()
138 local.addEntry(merged); in mergeAfter()
143 return local; in mergeAfter()
DValuesDelta.java333 public static ValuesDelta mergeAfter(ValuesDelta local, ValuesDelta remote) { in mergeAfter() argument
335 if (local == null && (remote.isDelete() || remote.isTransient())) return null; in mergeAfter()
338 if (local == null) local = new ValuesDelta(); in mergeAfter()
340 if (!local.beforeExists()) { in mergeAfter()
342 local.mAfter = remote.getCompleteValues(); in mergeAfter()
345 local.mAfter = remote.mAfter; in mergeAfter()
348 return local; in mergeAfter()
DRawContactDeltaList.java103 public static RawContactDeltaList mergeAfter(RawContactDeltaList local, in mergeAfter() argument
105 if (local == null) local = new RawContactDeltaList(); in mergeAfter()
112 final RawContactDelta localEntity = local.getByRawContactId(rawContactId); in mergeAfter()
117 local.add(merged); in mergeAfter()
121 return local; in mergeAfter()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarInstancesHelper.java704 Time local = new Time(); in updateInstancesLocked() local
706 local.timezone = Time.TIMEZONE_UTC; in updateInstancesLocked()
708 local.timezone = fields.timezone; in updateInstancesLocked()
712 local, instanceValues); in updateInstancesLocked()
890 Time local, ContentValues values) { in computeTimezoneDependentFields() argument
891 local.set(begin); in computeTimezoneDependentFields()
892 int startDay = Time.getJulianDay(begin, local.gmtoff); in computeTimezoneDependentFields()
893 int startMinute = local.hour * 60 + local.minute; in computeTimezoneDependentFields()
895 local.set(end); in computeTimezoneDependentFields()
896 int endDay = Time.getJulianDay(end, local.gmtoff); in computeTimezoneDependentFields()
[all …]
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DTestConnectionManager.java344 TestManagedConnection local = new TestManagedConnection(remote, false); in makeConnection() local
345 mManagedConnectionByRemote.put(remote, local); in makeConnection()
346 return local; in makeConnection()
/packages/apps/ExactCalculator/
D.gitignore6 local.properties
/packages/apps/Calculator/
D.gitignore6 local.properties
/packages/apps/DeskClock/
D.gitignore11 local.properties
/packages/apps/Launcher3/
D.gitignore13 local.properties
/packages/services/Car/car_product/sepolicy/
Dte_macros4 # via a local socket to the qmux domain.
/packages/services/Car/bluetooth/bt-map-service/
Dbt_hci_startup_issues.txt12987 <4>[ 0.065399] WARNING: at /usr/local/google/home/spaik/code/kernel/qcom-kernel/private/msm-adp8…
13666 <5>[ 7.179138] init: (Loading properties from /data/local.prop took 0.00s.)
39140 …ice: Display device added: DisplayDeviceInfo{"Built-in Screen": uniqueId="local:0", 1366 x 768, mo…
39181 …eManager: Permission com.google.android.googleapps.permission.GOOGLE_AUTH.local from package com.g…
40385 01-13 23:19:07.108 2512 2512 D LocalBluetoothProfileManager: Adding local MAP profile
40764 01-13 23:19:11.600 2512 2512 D LocalBluetoothProfileManager: Adding local A2DP Sink profile
40777 01-13 23:19:11.662 1419 2035 D LocalBluetoothProfileManager: Adding local A2DP Sink profile
42648 …84 3284 E CarUiResourceLoader: Resource not found in car ui lib. Loading local version of: drawer…
42663 …3284 3284 E CarUiResourceLoader: Resource not found in car ui lib. Loading local version of: ic_up
42666 …84 3284 E CarUiResourceLoader: Resource not found in car ui lib. Loading local version of: ic_down
[all …]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
DAddressListParser.jj432 throw new ParseException("Words in local part must be separated by '.'");
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
DAddressListParser.jj432 throw new ParseException("Words in local part must be separated by '.'");
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java7287 final Cursor local = queryLocal(localUri, projection, selection, selectionArgs, in queryCorpLookupIfNecessary() local
7291 MoreDatabaseUtils.dumpCursor(TAG, "local", local); in queryCorpLookupIfNecessary()
7294 if (local.getCount() > 0 || corpUserId < 0) { in queryCorpLookupIfNecessary()
7295 return local; in queryCorpLookupIfNecessary()
7298 local.close(); in queryCorpLookupIfNecessary()
7309 local.close(); in queryCorpLookupIfNecessary()
7313 local.close(); in queryCorpLookupIfNecessary()
7316 return local; in queryCorpLookupIfNecessary()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dinternals.md204 …at some compilers cannot localize some member data access of streams into local variables or regis…
DDoxyfile.in450 # This flag is only useful for Objective-C code. When set to YES local methods,
1490 # MathJax. However, it is strongly recommended to install a local copy of
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile329 # This flag is only useful for Objective-C code. When set to YES local
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile329 # This flag is only useful for Objective-C code. When set to YES local
/packages/inputmethods/LatinIME/dictionaries/
Den_US_wordlist.combined.gz
Dda_wordlist.combined.gz1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ...
Dlv_wordlist.combined.gz1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ...