Searched defs:index (Results 101 - 125 of 699) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP.c110 OMX_S8 scaleFactor, index; local
158 index = armUnPackVLC32(ppBitStream, pBitOffset,
160 armRetDataErrIf(index == -1, OMX_Sts_Err);
162 mvHorData = index - 32;
171 index = armUnPackVLC32(ppBitStream, pBitOffset, armVCM4P2_aVlcMVD);
172 armRetDataErrIf(index == -1, OMX_Sts_Err);
174 mvVerData = index - 32;
H A DomxVCM4P2_MCReconBlock.c203 OMX_U8 x,y,count,index; local
206 for (y = 0, count = 0, index = 0; y < 8; y++,index += (srcStep -8), count += (dstStep - 8))
208 for (x = 0; x < 8; x++, count++,index++)
210 pDst[count] = pSrc[index];
/frameworks/av/media/libstagefright/codecs/raw/
H A DSoftRaw.cpp99 OMX_INDEXTYPE index, OMX_PTR params) {
100 switch (index) {
125 return SimpleSoftOMXComponent::internalGetParameter(index, params);
130 OMX_INDEXTYPE index, const OMX_PTR params) {
131 switch (index) {
162 return SimpleSoftOMXComponent::internalSetParameter(index, params);
98 internalGetParameter( OMX_INDEXTYPE index, OMX_PTR params) argument
129 internalSetParameter( OMX_INDEXTYPE index, const OMX_PTR params) argument
/frameworks/av/media/libstagefright/foundation/
H A DALooperRoster.cpp57 ssize_t index = mHandlers.indexOfKey(handlerID); local
59 if (index < 0) {
63 const HandlerInfo &info = mHandlers.valueAt(index);
71 mHandlers.removeItemsAt(index);
118 ssize_t index = mHandlers.indexOfKey(msg->target()); local
120 if (index < 0) {
125 const HandlerInfo &info = mHandlers.valueAt(index);
133 mHandlers.removeItemsAt(index);
144 ssize_t index = mHandlers.indexOfKey(handlerID); local
146 if (index <
180 ssize_t index; local
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMXMaster.cpp75 OMX_U32 index = 0; local
80 name, sizeof(name), index++)) == OMX_ErrorNone) {
130 ssize_t index = mPluginByComponentName.indexOfKey(String8(name)); local
132 if (index < 0) {
136 OMXPluginBase *plugin = mPluginByComponentName.valueAt(index);
153 ssize_t index = mPluginByInstance.indexOfKey(component); local
155 if (index < 0) {
159 OMXPluginBase *plugin = mPluginByInstance.valueAt(index);
160 mPluginByInstance.removeItemsAt(index);
168 OMX_U32 index) {
165 enumerateComponents( OMX_STRING name, size_t size, OMX_U32 index) argument
192 ssize_t index = mPluginByComponentName.indexOfKey(String8(name)); local
[all...]
H A DSoftOMXPlugin.cpp160 OMX_U32 index) {
161 if (index >= kNumComponents) {
165 strcpy(name, kComponents[index].mName);
157 enumerateComponents( OMX_STRING name, size_t , OMX_U32 index) argument
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java101 private static void dumpNodeRec(AccessibilityNodeInfo node, XmlSerializer serializer,int index, argument
106 serializer.attribute("", "index", Integer.toString(index));
/frameworks/base/core/java/android/app/
H A DTabActivity.java75 * @param index the index of the default tab
77 public void setDefaultTab(int index) { argument
79 mDefaultTabIndex = index;
H A DTaskStackBuilder.java194 * Return the intent at the specified index for modification.
198 * @param index Index from 0-getIntentCount()
199 * @return the intent at position index
201 public Intent editIntentAt(int index) { argument
202 return mIntents.get(index);
/frameworks/base/core/java/android/os/
H A DRegistrantList.java68 get(int index) argument
70 return registrants.get(index);
H A DRemoteCallbackList.java262 * @param index Which of the registered callbacks you would like to
270 public E getBroadcastItem(int index) { argument
271 return ((Callback)mActiveBroadcast[index]).mCallback;
280 public Object getBroadcastCookie(int index) { argument
281 return ((Callback)mActiveBroadcast[index]).mCookie;
/frameworks/base/core/java/android/util/
H A DAttributeSet.java69 * @param index Index of the desired attribute, 0...count-1.
74 public String getAttributeName(int index); argument
79 * @param index Index of the desired attribute, 0...count-1.
84 public String getAttributeValue(int index); argument
118 * @param index Index of the desired attribute, 0...count-1.
122 public int getAttributeNameResource(int index); argument
125 * Return the index of the value of 'attribute' in the list 'options'.
207 * Return the index of the value of attribute at 'index' in the list
210 * @param index Inde
217 getAttributeListValue(int index, String[] options, int defaultValue) argument
227 getAttributeBooleanValue(int index, boolean defaultValue) argument
243 getAttributeResourceValue(int index, int defaultValue) argument
253 getAttributeIntValue(int index, int defaultValue) argument
265 getAttributeUnsignedIntValue(int index, int defaultValue) argument
275 getAttributeFloatValue(int index, float defaultValue) argument
[all...]
H A DLongSparseLongArray.java41 * <code>keyAt(int)</code> with ascending values of the index will return the
124 * Removes the mapping at the given index.
126 public void removeAt(int index) { argument
127 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
128 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
160 * Given an index i
169 keyAt(int index) argument
184 valueAt(int index) argument
[all...]
H A DSparseBooleanArray.java42 * <code>keyAt(int)</code> with ascending values of the index will return the
121 public void removeAt(int index) { argument
122 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
123 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
155 * Given an index in the range <code>0...size()-1</code>, returns
156 * the key from the <code>index</cod
164 keyAt(int index) argument
179 valueAt(int index) argument
184 setValueAt(int index, boolean value) argument
[all...]
H A DSparseIntArray.java41 * <code>keyAt(int)</code> with ascending values of the index will return the
122 * Removes the mapping at the given index.
124 public void removeAt(int index) { argument
125 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
126 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
158 * Given an index i
167 keyAt(int index) argument
182 valueAt(int index) argument
[all...]
H A DSparseLongArray.java41 * <code>keyAt(int)</code> with ascending values of the index will return the
122 * Removes the mapping at the given index.
124 public void removeAt(int index) { argument
125 System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
126 System.arraycopy(mValues, index + 1, mValues, index, mSize - (index + 1));
158 * Given an index i
167 keyAt(int index) argument
182 valueAt(int index) argument
[all...]
H A DXmlPullAttributes.java37 public String getAttributeName(int index) { argument
38 return mParser.getAttributeName(index);
41 public String getAttributeValue(int index) { argument
42 return mParser.getAttributeValue(index);
53 public int getAttributeNameResource(int index) { argument
96 public int getAttributeListValue(int index, argument
99 getAttributeValue(index), options, defaultValue);
102 public boolean getAttributeBooleanValue(int index, boolean defaultValue) { argument
104 getAttributeValue(index), defaultValue);
107 public int getAttributeResourceValue(int index, in argument
112 getAttributeIntValue(int index, int defaultValue) argument
117 getAttributeUnsignedIntValue(int index, int defaultValue) argument
122 getAttributeFloatValue(int index, float defaultValue) argument
[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...]
H A DInputMethodSubtypeArray.java128 * Return {@link InputMethodSubtype} specified with the given index.
133 * @param index The index of {@link InputMethodSubtype}.
135 public InputMethodSubtype get(final int index) { argument
136 if (index < 0 || mCount <= index) {
159 return instance[index];
/frameworks/base/core/java/android/widget/
H A DEditText.java98 public void setSelection(int index) { argument
99 Selection.setSelection(getText(), index);
112 public void extendSelection(int index) { argument
113 Selection.extendSelection(getText(), index);
H A DViewSwitcher.java64 public void addView(View child, int index, ViewGroup.LayoutParams params) { argument
68 super.addView(child, index, params);
/frameworks/base/core/java/com/android/internal/widget/
H A DTextProgressBar.java82 public void addView(View child, int index, ViewGroup.LayoutParams params) { argument
83 super.addView(child, index, params);
/frameworks/base/core/jni/android/graphics/
H A DInterpolator.cpp25 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, jlong interpHandle, jint index, jint msec, jfloatArray valueArray, jfloatArray blendArray) argument
38 interp->setKeyFrame(index, msec, scalars, blend);
/frameworks/base/libs/hwui/
H A DResourceCache.cpp83 ssize_t index = mCache->indexOfKey(resource); local
84 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : NULL;
122 ssize_t index = mCache->indexOfKey(resource); local
123 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : NULL;
152 ssize_t index = mCache->indexOfKey(resource); local
153 ResourceReference* ref = index >= 0 ? mCache->valueAt(index) : NULL;
175 ssize_t index local
197 ssize_t index = mCache->indexOfKey(resource); local
230 ssize_t index = mCache->indexOfKey(resource); local
[all...]
/frameworks/base/libs/hwui/thread/
H A DTaskManager.cpp115 ssize_t index = mTasks.add(task); local
118 return index >= 0;

Completed in 298 milliseconds

1234567891011>>