Searched refs:index (Results 151 - 175 of 1205) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Ddec_gain.h110 Word16 index, /* i : index of quantization. */
H A Ddec_lag3.h107 void Dec_lag3(Word16 index, /* i : received pitch index */
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.h39 OMX_INDEXTYPE index, OMX_PTR params);
42 OMX_INDEXTYPE index, const OMX_PTR params);
52 void unbindOutputBuffer(int32_t index);
53 int32_t bindOutputBuffer(int32_t index, uint8_t **yuv);
/frameworks/av/media/libstagefright/rtsp/
H A DASessionDescription.h38 // Actually, 1 + number of tracks, as index 0 is reserved for the
41 void getFormat(size_t index, AString *value) const;
44 size_t index, unsigned long *PT,
48 size_t index, unsigned long PT,
56 bool findAttribute(size_t index, const char *key, AString *value) const;
/frameworks/base/core/java/android/view/
H A DWindowContentFrameStats.java79 * Get the time a frame at a given index was posted by the producer (e.g. the application).
87 * @param index The frame index.
90 public long getFramePostedTimeNano(int index) { argument
94 return mFramesPostedTimeNano[index];
98 * Get the time a frame at a given index was ready for presentation.
105 * @param index The frame index.
109 public long getFrameReadyTimeNano(int index) { argument
113 return mFramesReadyTimeNano[index];
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DCompletionInfo.java61 * @param index An index that get passed as is. Typically this is the
62 * index in the list of completions inside the editor.
66 public CompletionInfo(long id, int index, CharSequence text) { argument
68 mPosition = index;
80 * @param index An index that get passed as is. Typically this is the
81 * index in the list of completions inside the editor.
87 public CompletionInfo(long id, int index, CharSequence text, CharSequence label) { argument
89 mPosition = index;
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DCallbackRegistry.java50 * The lowest significant bit corresponds to the 0th index into mCallbacks.
168 * @param remainderIndex The index into mRemainderRemoved that should be notified.
194 * @param startIndex The index into the mCallbacks to start notifying.
195 * @param endIndex One past the last index into mCallbacks to notify.
216 int index = mCallbacks.lastIndexOf(callback);
217 if (index < 0 || isRemovedLocked(index)) {
223 * Returns true if the callback at index has been marked for removal.
225 * @param index The index int
228 isRemovedLocked(int index) argument
285 setRemovalBitLocked(int index) argument
[all...]
/frameworks/base/libs/hwui/utils/
H A DSortedListImpl.h52 ssize_t insertVectorAt(const VectorImpl& vector, size_t index);
54 ssize_t insertArrayAt(const void* array, size_t index, size_t length);
58 ssize_t replaceAt(size_t index);
59 ssize_t replaceAt(const void* item, size_t index);
/frameworks/base/telephony/java/com/android/ims/
H A DImsSuppServiceNotification.java38 /** TS 27.007 7.17 "index" - Not used currently*/
39 public int index; field in class:ImsSuppServiceNotification
58 ", index=" + index +
74 out.writeInt(index);
83 index = in.readInt();
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DTypedArray_Delegate.java26 public static boolean getValueAt(TypedArray theTypedArray, int index, TypedValue outValue) { argument
/frameworks/base/tools/preload/
H A DOperation.java42 final int index; field in class:Operation
58 int index, Type type) {
62 this.index = index;
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, int index, Type type) argument
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java52 * The lowest significant bit corresponds to the 0th index into mCallbacks.
165 * @param remainderIndex The index into mRemainderRemoved that should be notified.
191 * @param startIndex The index into the mCallbacks to start notifying.
192 * @param endIndex One past the last index into mCallbacks to notify.
213 int index = mCallbacks.lastIndexOf(callback);
214 if (index < 0 || isRemoved(index)) {
220 * Returns true if the callback at index has been marked for removal.
222 * @param index The index int
225 isRemoved(int index) argument
284 setRemovalBit(int index) argument
[all...]
/frameworks/native/opengl/libs/
H A Degl_impl.h34 GLuint index);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DMesh.h45 TYPE& operator[](size_t index) { argument
46 return *reinterpret_cast<TYPE*>(&mData[index*mStride]);
48 TYPE const& operator[](size_t index) const {
49 return *reinterpret_cast<TYPE const*>(&mData[index*mStride]);
/frameworks/base/libs/androidfw/tests/
H A DTypeWrappers_test.cpp41 e1.key.index = 0;
54 e2.key.index = 1;
84 ASSERT_EQ(uint32_t(0), iter.index());
86 ASSERT_EQ(uint32_t(0), iter->key.index);
91 ASSERT_EQ(uint32_t(1), iter.index());
97 ASSERT_EQ(uint32_t(2), iter.index());
99 ASSERT_EQ(uint32_t(1), iter->key.index);
/frameworks/base/libs/hwui/renderstate/
H A DMeshState.cpp43 int index = i * 6; local
44 regionIndices[index ] = quad; // top-left
45 regionIndices[index + 1] = quad + 1; // top-right
46 regionIndices[index + 2] = quad + 2; // bottom-left
47 regionIndices[index + 3] = quad + 2; // bottom-left
48 regionIndices[index + 4] = quad + 1; // top-right
49 regionIndices[index + 5] = quad + 3; // bottom-right
/frameworks/native/services/sensorservice/
H A DBatteryService.cpp44 ssize_t index = mActivations.indexOf(key); local
45 if (index < 0) {
46 index = mActivations.add(key);
48 Info& info(mActivations.editItemAt(index));
55 ssize_t index = mActivations.indexOf(Info(uid, handle)); local
56 if (index < 0) return false;
57 Info& info(mActivations.editItemAt(index));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDriverCall.java40 public int index; field in class:DriverCall
60 // index,isMT,state,mode,isMpty(,number,TOA)?
64 ret.index = p.nextInt();
107 return "id=" + index + ","
148 /** For sorting by index */
153 if (index < dc.index) {
155 } else if (index == dc.index) {
157 } else { /*index > d
[all...]
/frameworks/av/media/libstagefright/include/
H A DSoftOMXComponent.h59 OMX_INDEXTYPE index, OMX_PTR params);
62 OMX_INDEXTYPE index, const OMX_PTR params);
65 OMX_INDEXTYPE index, OMX_PTR params);
68 OMX_INDEXTYPE index, const OMX_PTR params);
71 const char *name, OMX_INDEXTYPE *index);
113 OMX_INDEXTYPE index,
118 OMX_INDEXTYPE index,
123 OMX_INDEXTYPE index,
128 OMX_INDEXTYPE index,
134 OMX_INDEXTYPE *index);
[all...]
/frameworks/av/media/mtp/
H A DMtpPacket.cpp135 uint32_t MtpPacket::getParameter(int index) const {
136 if (index < 1 || index > 5) {
137 ALOGE("index %d out of range in MtpPacket::getParameter", index);
140 return getUInt32(MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t));
143 void MtpPacket::setParameter(int index, uint32_t value) { argument
144 if (index < 1 || index > 5) {
145 ALOGE("index
[all...]
/frameworks/base/core/java/android/os/
H A DWorkSource.java90 public int get(int index) { argument
91 return mUids[index];
95 public String getName(int index) { argument
96 return mNames != null ? mNames[index] : null;
605 private void insert(int index, int uid) { argument
606 if (DEBUG) Log.d(TAG, "Insert in " + this + " @ " + index + " uid " + uid);
613 if (index > 0) {
614 System.arraycopy(mUids, 0, newuids, 0, index);
616 if (index < mNum) {
617 System.arraycopy(mUids, index, newuid
631 insert(int index, int uid, String name) argument
[all...]
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIconList.java113 public void setIcon(int index, StatusBarIcon icon) { argument
114 mIcons[index] = icon.clone();
117 public void removeIcon(int index) { argument
118 mIcons[index] = null;
121 public String getSlot(int index) { argument
122 return mSlots[index];
125 public StatusBarIcon getIcon(int index) { argument
126 return mIcons[index];
129 public int getViewIndex(int index) { argument
131 for (int i=0; i<index;
[all...]
/frameworks/base/native/android/
H A Dasset_manager.cpp129 size_t index = assetDir->mCurFileIndex; local
135 while ((index < max) && (assetDir->mAssetDir->getFileType(index) != kFileTypeRegular)) {
136 index++;
139 // still in bounds? then the one at 'index' is the next to be reported; generate
141 if (index < max) {
142 assetDir->mCachedFileName = assetDir->mAssetDir->getFileName(index);
144 index++;
147 assetDir->mCurFileIndex = index;
156 const char* AAssetDir_getFileName(AAssetDir* assetDir, int index) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DMediaControllerGlue.java139 for (int index = 0; index < seekSpeeds.length; index++) {
140 if (speed == seekSpeeds[index]) {
141 return PLAYBACK_SPEED_FAST_L0 + index;
146 for (int index = 0; index < seekSpeeds.length; index++) {
147 if (-speed == seekSpeeds[index]) {
148 return -PLAYBACK_SPEED_FAST_L0 - index;
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java86 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); argument
87 public void updateIcon(String slot, int index, int viewIndex, argument
89 public void removeIcon(String slot, int index, int viewIndex); argument
121 public void setIcon(int index, StatusBarIcon icon) { argument
123 int what = MSG_ICON | index;
129 public void removeIcon(int index) { argument
131 int what = MSG_ICON | index;
311 final int index = msg.what & INDEX_MASK;
312 final int viewIndex = mList.getViewIndex(index);
316 StatusBarIcon old = mList.getIcon(index);
[all...]

Completed in 768 milliseconds

1234567891011>>