Searched defs:index (Results 176 - 200 of 908) sorted by relevance

1234567891011>>

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccPhoneBookController.java71 String newPhoneNumber, int index, String pin2) throws android.os.RemoteException {
73 newPhoneNumber, index, pin2);
79 String newPhoneNumber, int index, String pin2) throws android.os.RemoteException {
84 newPhoneNumber, index, pin2);
70 updateAdnRecordsInEfByIndex(int efid, String newTag, String newPhoneNumber, int index, String pin2) argument
78 updateAdnRecordsInEfByIndexForSubscriber(int subId, int efid, String newTag, String newPhoneNumber, int index, String pin2) argument
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduBody.java92 * @param index index at which the specified part is to be inserted
96 public void addPart(int index, PduPart part) { argument
102 mParts.add(index, part);
108 * @param index index of the part to return
109 * @return part at the specified index
111 public PduPart removePart(int index) { argument
112 return mParts.remove(index);
125 * @param index inde
128 getPart(int index) argument
[all...]
/frameworks/rs/
H A DrsApiFileA3D.cpp26 RsObjectBase rsaFileA3DGetEntryByIndex(RsContext con, uint32_t index, RsFile file) { argument
33 ObjectBase *obj = fa3d->initializeFromEntry(index);
54 ALOGE("Can't load index entries. No valid file");
60 ALOGE("Can't load index entries. Invalid number requested");
/frameworks/rs/rsov/compiler/
H A DContext.h68 // Adds the mapping from the slot number of an exported variable to the index
70 void addExportVarIndex(uint32_t slot, uint32_t index) { argument
71 mExportVarIndices[slot] = index;
74 // Adds the mapping from the name of an exported variable to the index of its
76 void addExportVarIndex(const char *varName, uint32_t index) { argument
82 addExportVarIndex(slot, index);
85 // Given the slot number of an exported variable, returns the index of its
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicLUT.java70 private void validate(int index, int value) { argument
71 if (index < 0 || index > 255) {
82 * @param index Must be 0-255
85 public void setRed(int index, int value) { argument
86 validate(index, value);
87 mCache[index] = (byte)value;
94 * @param index Must be 0-255
97 public void setGreen(int index, int value) { argument
98 validate(index, valu
109 setBlue(int index, int value) argument
121 setAlpha(int index, int value) argument
[all...]
/frameworks/support/compat/java/android/support/v4/os/
H A DLocaleListInterface.java39 Locale get(int index); argument
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentLayoutSupport.java138 void showDetails(int index) { argument
139 mCurCheckPosition = index;
144 getListView().setItemChecked(index, true);
149 if (details == null || details.getShownIndex() != index) {
151 details = DetailsFragment.newInstance(index);
166 intent.putExtra("index", index);
181 * show the text at 'index'.
183 public static DetailsFragment newInstance(int index) { argument
186 // Supply index inpu
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DQueueHelper.java82 int index = 0;
85 return index;
87 index++;
94 int index = 0;
97 return index;
99 index++;
119 // We don't expect queues to change after created, so we use the item index as the
147 public static boolean isIndexPlayable(int index, List<MediaSessionCompat.QueueItem> queue) { argument
148 return (queue != null && index >= 0 && index < queu
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentLayoutSupport.java138 void showDetails(int index) { argument
139 mCurCheckPosition = index;
144 getListView().setItemChecked(index, true);
149 if (details == null || details.getShownIndex() != index) {
151 details = DetailsFragment.newInstance(index);
166 intent.putExtra("index", index);
181 * show the text at 'index'.
183 public static DetailsFragment newInstance(int index) { argument
186 // Supply index inpu
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
H A DQueueHelper.java82 int index = 0;
85 return index;
87 index++;
94 int index = 0;
97 return index;
99 index++;
119 // We don't expect queues to change after created, so we use the item index as the
147 public static boolean isIndexPlayable(int index, List<MediaSessionCompat.QueueItem> queue) { argument
148 return (queue != null && index >= 0 && index < queu
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DListRowDataAdapter.java62 public Object get(int index) { argument
63 return mAdapter.get(index);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java55 public Object get(int index) { argument
56 return mItems.get(index);
60 * Returns the index for the first occurrence of item in the adapter, or -1 if
92 * Inserts an item into this adapter at the specified index.
93 * If the index is > {@link #size} an exception will be thrown.
95 * @param index The index at which the item should be inserted.
98 public void add(int index, Object item) { argument
99 mItems.add(index, item);
100 notifyItemRangeInserted(index,
110 addAll(int index, Collection items) argument
[all...]
H A DMultiActionsProvider.java34 * the current index within the drawables. Both list of drawables and index can be updated
71 * Increments the index which this MultiAction currently represents. The index is wrapped
79 * Sets the index which this MultiAction currently represents.
80 * @param index The current action index.
82 public void setIndex(int index) { argument
83 mIndex = index;
87 * Returns the currently selected index i
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DButtonBarLayout.java144 private int getNextVisibleChildIndex(int index) { argument
145 for (int i = index, count = getChildCount(); i < count; i++) {
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DDropDownPreference.java98 public void setValueIndex(int index) { argument
99 setValue(getEntryValues()[index].toString());
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DTileList.java42 final int index = mTiles.indexOfKey(startPosition);
43 if (index < 0) {
46 mLastAccessedTile = mTiles.valueAt(index);
59 public Tile<T> getAtIndex(int index) { argument
60 return mTiles.valueAt(index);
64 final int index = mTiles.indexOfKey(newTile.mStartPosition);
65 if (index < 0) {
69 Tile<T> oldTile = mTiles.valueAt(index);
70 mTiles.setValueAt(index, newTile);
/frameworks/support/wear/src/android/support/wear/internal/widget/drawer/
H A DWearableNavigationDrawerPresenter.java54 public abstract void onSelected(int index); argument
60 public abstract void onSetCurrentItemRequested(int index, boolean smoothScrollTo); argument
/frameworks/wilhelm/src/
H A Ddevices.cpp213 SLuint32 index; local
215 for (index = 0 ; NULL != cd->mDescriptor; ++cd) {
217 ++index;
220 *pIndex = index;
223 index = *pIndex;
226 if (0 == index) {
243 --index;
H A Dentry.cpp105 SLuint32 index; local
106 for (index = 0; index < pCEngine_class->mInterfaceCount; ++index, ++x,
213 LI_API SLresult liQuerySupportedInterfaces(SLuint32 index, SLInterfaceID *pInterfaceId, argument
238 if (index == 0) {
243 --index;
/frameworks/wilhelm/src/itf/
H A DIMetadataExtraction.cpp47 SLuint32 index, SLuint32 *pKeySize)
58 index, pKeySize);
72 SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey)
83 index, keySize, pKey);
97 SLuint32 index, SLuint32 *pValueSize)
108 index, pValueSize);
122 SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue)
133 index, valueSize, pValue);
46 IMetadataExtraction_GetKeySize(SLMetadataExtractionItf self, SLuint32 index, SLuint32 *pKeySize) argument
71 IMetadataExtraction_GetKey(SLMetadataExtractionItf self, SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey) argument
96 IMetadataExtraction_GetValueSize(SLMetadataExtractionItf self, SLuint32 index, SLuint32 *pValueSize) argument
121 IMetadataExtraction_GetValue(SLMetadataExtractionItf self, SLuint32 index, SLuint32 valueSize, SLMetadataInfo *pValue) argument
H A DIPlaybackRate.cpp152 static SLresult IPlaybackRate_GetRateRange(SLPlaybackRateItf self, SLuint8 index, argument
159 (0 < index)) {
/frameworks/av/drm/libmediadrm/
H A DDrmSessionManager.cpp77 ssize_t index = mSessionMap.indexOfKey(pid); local
78 if (index < 0) {
84 mSessionMap.editValueAt(index).push_back(info);
213 ssize_t index = mSessionMap.indexOfKey(pid); local
214 if (index < 0) {
220 const SessionInfos& infos = mSessionMap.valueAt(index);
/frameworks/av/include/media/
H A DRingBuffer.h145 * Return a reference to the element at a given index. If the index is out of range for
148 T& operator[](size_t index);
151 * Return a const reference to the element at a given index. If the index is out of range
154 const T& operator[](size_t index) const;
329 T& RingBuffer<T>::operator[](size_t index) { argument
330 LOG_ALWAYS_FATAL_IF(index >= mBuffer.size(), "Index %zu out of bounds, size is %zu.",
331 index, mBuffer.size());
332 size_t pos = (index >
[all...]
/frameworks/av/media/libaaudio/src/utility/
H A DHandleTracker.cpp33 // where each letter is 4 bits, t=type, g=generation, i=index
106 handle_tracker_generation_t HandleTracker::nextGeneration_l(handle_tracker_slot_t index) { argument
107 handle_tracker_generation_t generation = (mHandleHeaders[index] + 1) & GENERATION_MASK;
127 handle_tracker_slot_t index = allocateSlot_l(); local
128 if (index == SLOT_UNAVAILABLE) {
134 handle_tracker_generation_t generation = nextGeneration_l(index); // reads header table
138 mHandleHeaders[index] = inputHeader;
139 mHandleAddresses[index] = address;
143 aaudio_handle_t handle = buildHandle(inputHeader, index);
153 handle_tracker_slot_t index local
175 handle_tracker_slot_t index = handleToIndex(type, handle); local
192 handle_tracker_slot_t index = handleToIndex(type,handle); local
211 buildHandle(handle_tracker_header_t typeGeneration, handle_tracker_slot_t index) argument
[all...]
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp187 int index = pContext->index; local
188 // if the index refers to HW , do not do anything. Just return.
189 if (index == SUB_FX_HOST) {
190 ret = (*pContext->eHandle[index])->process(pContext->eHandle[index],
232 // Return error if the CMD_OFFLOAD sends the index as OFFLOAD
234 pContext->index = SUB_FX_HOST;
253 // Assign the effect context index based on isOffload field of the structure
254 pContext->index
280 int index = pContext->index; local
[all...]

Completed in 314 milliseconds

1234567891011>>