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

1234

/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java221 periodicSyncs.add(Pair.create(new Bundle(sync.first), sync.second));
235 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
442 reports.add(mChangeListeners.getBroadcastItem(i));
682 long period, boolean add) {
698 if (add) {
699 // add this periodic sync if one with the same extras doesn't already
714 // if we added an entry to the periodicSyncs array also add an entry to
717 authority.periodicSyncs.add(Pair.create(extras, period));
757 true /* add */);
773 syncs.add(ne
680 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);
1060 mTopToBottomLeftToRightSet.add(getChildAt(i));
1487 void add(View view) { method in class:RelativeLayout.DependencyGraph
1495 mNodes.add(node);
1525 roots.add(dependent);
H A DTextView.java441 * On some devices the fading edges add a performance penalty if used
3215 * multiplied by <code>mult</code> and have <code>add</code> added to it.
3220 public void setLineSpacing(float add, float mult) { argument
3221 if (mSpacingAdd != add || mSpacingMult != mult) {
3222 mSpacingAdd = add;
7173 mListeners.add(watcher);
7722 outViews.add(this);
7906 event.getText().add(text);
8129 * A custom implementation can add new entries in the default menu in its
8211 * 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);
1055 libFiles.add(paths[i]);
1079 libFiles.add(lib);
1094 libFiles.add(mFrameworkDir.getPath() + "/framework-res.apk");
1218 possiblyDeletedUpdatedSystemApps.add(ps.name);
1505 perms.add(perm);
1587 static int[] appendInts(int[] cur, int[] add) { argument
1588 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}
897 MOVED_TO_SECURE.add(Secure.ANDROID_ID);
898 MOVED_TO_SECURE.add(Secure.HTTP_PROXY);
899 MOVED_TO_SECURE.add(Secure.LOCATION_PROVIDERS_ALLOWED);
900 MOVED_TO_SECURE.add(Secure.LOCK_BIOMETRIC_WEAK_FLAGS);
901 MOVED_TO_SECURE.add(Secur
5765 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.
2728 add(data, size, cookie, copyData);
2744 status_t ResTable::add(const void* data, size_t size, void* cookie, bool copyData, function in class:android::ResTable
2747 return add(data, size, cookie, NULL, copyData, reinterpret_cast<const Asset*>(idmap));
2750 status_t ResTable::add(Asset* asset, void* cookie, bool copyData, const void* idmap) function in class:android::ResTable
2758 return add(data, size, cookie, asset, copyData, reinterpret_cast<const Asset*>(idmap));
2761 status_t ResTable::add(ResTable* src) function in class:android::ResTable
2766 mHeaders.add(sr
2785 status_t ResTable::add(const void* data, size_t size, void* cookie, function in class:android::ResTable
[all...]

Completed in 600 milliseconds

1234