Searched defs:add (Results 1 - 25 of 86) sorted by path

1234

/frameworks/av/media/libmedia/
H A DAudioParameter.cpp54 mParameters.add(key, value);
86 status_t AudioParameter::add(const String8& key, const String8& value) function in class:android::AudioParameter
89 mParameters.add(key, value);
102 return add(key, str8);
113 return add(key, str8);
/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/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dbasic_op.h116 /* Short add, 1 */
118 __inline Word16 add (Word16 var1, Word16 var2);
120 Word16 add (Word16 var1, Word16 var2);
593 /* Short add, 1 */
595 __inline Word16 add (Word16 var1, Word16 var2) function
H A Dbasicop2.c83 | Function Name : add |
116 Word16 add (Word16 var1, Word16 var2) function
1068 | shr_r(var1,var2) = add(shr(var1,var2),1) |
1550 var_out = add (var_out, 1);
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dadd.cpp31 Filename: /audio/gsm_amr/c/src/add.c
36 Description: Created separate file for add function. Sync'ed up with the
87 FUNCTION NAME: add
101 pOverflow -> 1 if the add operation resulted in overflow
127 [1] add.c, UMTS GSM AMR speech codec, R99 - Version 3.2.0, March 2, 2001
132 Word16 add (Word16 var1, Word16 var2)
145 multiCounter[currCounter].add++;
176 Word16 add(Word16 var1, Word16 var2, Flag *pOverflow) function
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dbasic_op.h68 static_vo Word16 add (Word16 var1, Word16 var2); /* Short add,1 */
77 static_vo Word32 L_add (Word32 L_var1, Word32 L_var2); /* Long add, 2 */
95 | Function Name : add |
126 static_vo Word16 add (Word16 var1, Word16 var2) function
/frameworks/av/media/libstagefright/wifi-display/source/
H A DSender.cpp44 void add(double val);
64 void TimeSeries::add(double val) { function in class:android::TimeSeries
543 series.add((double)(nowUs - lastTimeUs));
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java122 op.removed.add(r);
378 public FragmentTransaction add(Fragment fragment, String tag) { method in class:BackStackRecord
383 public FragmentTransaction add(int containerViewId, Fragment fragment) { method in class:BackStackRecord
388 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
632 op.removed.add(old);
H A DFragmentTransaction.java14 * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId.
16 public abstract FragmentTransaction add(Fragment fragment, String tag); method in class:FragmentTransaction
19 * Calls {@link #add(int, Fragment, String)} with a null tag.
21 public abstract FragmentTransaction add(int containerViewId, Fragment fragment); method in class:FragmentTransaction
38 public abstract FragmentTransaction add(int containerViewId, Fragment fragment, String tag); method in class:FragmentTransaction
49 * and then {@link #add(int, Fragment, String)} with the same arguments
H A DQueuedWork.java66 * after an add(). The only time these Runnables are run is from
69 public static void add(Runnable finisher) { method in class:QueuedWork
70 sPendingWorkFinishers.add(finisher);
/frameworks/base/core/java/android/content/
H A DSyncQueue.java76 add(syncOperation, op);
80 public boolean add(SyncOperation operation) { method in class:SyncQueue
81 return add(operation, null /* this is not coming from the database */);
84 private boolean add(SyncOperation operation, method in class:SyncQueue
90 // - if no operation exists then add the new one
133 opsToRemove.add(op);
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/database/
H A DMatrixCursor.java23 * {@link #newRow()} to add rows. Automatically expands internal capacity
200 * @throws CursorIndexOutOfBoundsException if you try to add too many
204 public RowBuilder add(Object columnValue) { method in class:MatrixCursor.RowBuilder
/frameworks/base/core/java/android/net/
H A DNetworkStats.java115 public void add(Entry another) { method in class:NetworkStats.Entry
382 ifaces.add(iface);
H A DUri.java1000 void add(String segment) { method in class:Uri.PathSegmentsBuilder
1579 names.add(decode(name));
1632 values.add("");
1634 values.add(decode(query.substring(separator + 1, end)));
2147 segmentBuilder.add(decodedSegment);
2154 segmentBuilder.add(decode(path.substring(previous)));
/frameworks/base/core/java/android/nfc/
H A DApduList.java19 public void add(byte[] command) { method in class:ApduList
20 commands.add(command);
48 commands.add(cmd);
/frameworks/base/core/java/android/os/
H A DRegistrantList.java31 add(Handler h, int what, Object obj) method in class:RegistrantList
33 add(new Registrant(h, what, obj));
41 add(new Registrant(h, what, obj));
45 add(Registrant r) method in class:RegistrantList
48 registrants.add(r);
H A DWorkSource.java168 public boolean add(WorkSource other) { method in class:WorkSource
184 public boolean add(int uid) { method in class:WorkSource
/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/core/java/android/text/
H A DAutoText.java195 add(src, off);
212 private void add(String src, char off) { method in class:AutoText
/frameworks/base/core/java/android/view/
H A DMenu.java27 * You can add items to this menu and handle clicks on your additions. The
92 * container -- or/add this with your base value.
98 * the system -- or/add this with your base value.
104 * user-supplied secondary (infrequently used) options -- or/add this with
111 * alternative actions on the data that is currently displayed -- or/add
142 public MenuItem add(CharSequence title); method in interface:Menu
151 public MenuItem add(int titleRes); method in interface:Menu
168 public MenuItem add(int groupId, int itemId, int order, CharSequence title); method in interface:Menu
171 * Variation on {@link #add(int, int, int, CharSequence)} that takes a
185 public MenuItem add(in method in interface:Menu
[all...]
H A DViewTreeObserver.java329 * @param listener The callback to add
340 mOnGlobalFocusListeners.add(listener);
364 * @param listener The callback to add
375 mOnGlobalLayoutListeners.add(listener);
414 * @param listener The callback to add
425 mOnPreDrawListeners.add(listener);
450 * @param listener The callback to add
461 mOnDrawListeners.add(listener);
486 * @param listener The callback to add
497 mOnScrollChangedListeners.add(listene
841 void add(T item) { method in class:ViewTreeObserver.CopyOnWriteArray
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java147 public void add(AccessibilityNodeInfo info) { method in class:AccessibilityNodeInfoCache
151 Log.i(LOG_TAG, "add(" + info + ")");
289 fringe.add(root);
294 if (!seen.add(current)) {
323 fringe.add(child);
/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 DArrayAdapter.java40 * the array. You can add lists or arrays of custom objects. Override the toString() method
172 * @param object The object to add at the end of the array.
174 public void add(T object) { method in class:ArrayAdapter
177 mOriginalValues.add(object);
179 mObjects.add(object);
188 * @param collection The Collection to add at the end of the array.
204 * @param items The items to add at the end of the array.
226 mOriginalValues.add(index, object);
228 mObjects.add(index, object);
291 * Control whether methods that change the list ({@link #add},
[all...]

Completed in 4375 milliseconds

1234