Searched defs:add (Results 76 - 86 of 86) sorted by relevance

1234

/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java219 periodicSyncs.add(Pair.create(new Bundle(sync.first), sync.second));
233 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
440 reports.add(mChangeListeners.getBroadcastItem(i));
672 long period, boolean add) {
688 if (add) {
689 // add this periodic sync if one with the same extras doesn't already
704 // if we added an entry to the periodicSyncs array also add an entry to
707 authority.periodicSyncs.add(Pair.create(extras, period));
747 true /* add */);
763 syncs.add(ne
670 updateOrRemovePeriodicSync(Account account, int userId, String providerName, Bundle extras, long period, boolean add) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DZoomManager.java711 // add a 5pt padding to the left edge.
767 // animations prevent updates, but others can add their own conditions
799 private void add(float focusDelta) { method in class:ZoomManager.FocusMovementQueue
840 mFocusMovementQueue.add(focusDelta);
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java332 graph.add(child);
1024 mTopToBottomLeftToRightSet.add(getChildAt(i));
1451 void add(View view) { method in class:RelativeLayout.DependencyGraph
1459 mNodes.add(node);
1489 roots.add(dependent);
H A DTextView.java312 * On some devices the fading edges add a performance penalty if used
3086 * multiplied by <code>mult</code> and have <code>add</code> added to it.
3091 public void setLineSpacing(float add, float mult) { argument
3092 if (mSpacingAdd != add || mSpacingMult != mult) {
3093 mSpacingAdd = add;
7034 mListeners.add(watcher);
7583 outViews.add(this);
7767 event.getText().add(text);
7990 * A custom implementation can add new entries in the default menu in its
8072 * make sure we do not add a
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp379 void add(const sp<JavaDeathRecipient>& recipient);
396 list->add(this);
510 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { function in class:DeathRecipientList
513 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get());
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java195 String nativeLibraryPathString, int pkgFlags, UserHandle user, boolean add) {
199 user, add, true /* allowInstall */);
361 UserHandle installUser, boolean add, boolean allowInstall) {
495 if (add) {
589 sharedUser.packages.add(p);
668 p.sharedUser.packages.add(newp);
685 mUserIds.add(null);
967 components.add(componentName);
1547 ret.add(ps);
1555 mPackagesToBeCleaned.add(pk
193 getPackageLPw(PackageParser.Package pkg, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, String nativeLibraryPathString, int pkgFlags, UserHandle user, boolean add) argument
358 getPackageLPw(String name, PackageSetting origPackage, String realName, SharedUserSetting sharedUser, File codePath, File resourcePath, String nativeLibraryPathString, int vc, int pkgFlags, UserHandle installUser, boolean add, boolean allowInstall) argument
[all...]
H A DPackageManagerService.java535 mPendingInstalls.add(idx, params);
538 mPendingInstalls.add(idx, params);
923 mDirtyUsers.add(userId);
1054 libFiles.add(paths[i]);
1078 libFiles.add(lib);
1093 libFiles.add(mFrameworkDir.getPath() + "/framework-res.apk");
1217 possiblyDeletedUpdatedSystemApps.add(ps.name);
1500 perms.add(perm);
1582 static int[] appendInts(int[] cur, int[] add) { argument
1583 if (add
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp401 set->add(leafName, group);
402 resources->add(resType, set);
409 set->add(leafName, group);
576 // Also add any found only in the overlay.
638 // didn't find a match fall through and add it..
651 assets->getResources()->add(String8(resType), *baseSet);
654 (*baseSet)->add(overlaySet->keyAt(overlayIndex),
1297 finalResTable.add(resFile->getData(), resFile->getSize(), NULL);
1651 idents.add(code);
1652 origOrder.add(cod
2254 void ProguardKeepSet::add(const String8& rule, const String8& where) function in class:ProguardKeepSet
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Writer.cpp144 void add(const TYPE& value) { function in struct:android::MPEG4Writer::Track::ListTableEntries
428 ALOGE("Attempt to add source AFTER recording is started");
828 // at 1970-01-01. Lets add the number of seconds between them
1293 mStscTableEntries->add(htonl(chunkId));
1294 mStscTableEntries->add(htonl(sampleId));
1295 mStscTableEntries->add(htonl(1));
1299 mStssTableEntries->add(htonl(sampleId));
1308 mSttsTableEntries->add(htonl(sampleCount));
1309 mSttsTableEntries->add(htonl(duration));
1318 mCttsTableEntries->add(hton
[all...]
/frameworks/base/core/java/android/provider/
H A DSettings.java312 * To tell which input method's subtypes are displayed in the settings, add
480 * The account types available to add via the add account button may be restricted by adding an
494 * Activity Action: Show add account screen for creating a new account.
499 * The account types available to add may be restricted by adding an {@link #EXTRA_AUTHORITIES}
882 MOVED_TO_SECURE.add(Secure.ANDROID_ID);
883 MOVED_TO_SECURE.add(Secure.HTTP_PROXY);
884 MOVED_TO_SECURE.add(Secure.LOCATION_PROVIDERS_ALLOWED);
885 MOVED_TO_SECURE.add(Secure.LOCK_BIOMETRIC_WEAK_FLAGS);
886 MOVED_TO_SECURE.add(Secur
5737 public static Uri add(ContentResolver cr, method in class:Settings.Bookmarks
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp244 const uint32_t type = Res_GETTYPE(key) + 1; // add one, idmap stores "public" type id
533 * add it together with the next character.
555 * add it together with the next character.
2727 add(data, size, cookie, copyData);
2743 status_t ResTable::add(const void* data, size_t size, void* cookie, bool copyData, function in class:android::ResTable
2746 return add(data, size, cookie, NULL, copyData, reinterpret_cast<const Asset*>(idmap));
2749 status_t ResTable::add(Asset* asset, void* cookie, bool copyData, const void* idmap) function in class:android::ResTable
2757 return add(data, size, cookie, asset, copyData, reinterpret_cast<const Asset*>(idmap));
2760 status_t ResTable::add(ResTable* src) function in class:android::ResTable
2765 mHeaders.add(sr
2784 status_t ResTable::add(const void* data, size_t size, void* cookie, function in class:android::ResTable
[all...]

Completed in 1293 milliseconds

1234