Searched refs:index (Results 501 - 525 of 1090) sorted by relevance

<<21222324252627282930>>

/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp32 std::ostringstream index; local
33 index << pIndex;
34 m_Name.append(index.str());
/frameworks/native/opengl/libagl/
H A Dstate.cpp370 int index = c->rasterizer.state.buffers.color.format; local
372 params[0] = formats[index].ah - formats[index].al;
376 int index = c->rasterizer.state.buffers.color.format; local
378 params[0] = formats[index].rh - formats[index].rl;
382 int index = c->rasterizer.state.buffers.color.format; local
384 params[0] = formats[index].gh - formats[index].gl;
388 int index local
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java207 protected String makeFragmentName(int viewId, int index) { argument
208 if (moveCursorTo(index)) {
211 return super.makeFragmentName(viewId, index);
H A DPhotoPagerAdapter.java90 int index = newCursor.getColumnIndex(column);
91 if (index != -1) {
92 mColumnIndices.put(column, index);
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSymbol.h44 size_t index; member in class:ELFSymbol_CRTP
70 return index;
133 read(Archiver &AR, ELFObject<Bitwidth> const *owner, size_t index = 0);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGrid.java60 public abstract void createItem(int index, int row, boolean append); argument
64 * Location of an item in the grid. For now it only saves row index but
69 * The index of the row for this Location.
74 * Create a Location with the given row index.
103 * A constant representing a default starting index, indicating that the
104 * developer did not provide a start index.
108 // the first index that grid will layout
110 // the row to layout the first index
155 * Set the first item index and the row index t
190 getLocation(int index) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewStubCompat.java208 final int index = parent.indexOfChild(this);
213 parent.addView(view, index, layoutParams);
215 parent.addView(view, index);
/frameworks/av/media/libstagefright/
H A DAACWriter.cpp210 * Returns an index into the sample rate table if the
222 for (int index = 0; index < tableSize; ++index) {
223 if (sampleRate == kSampleRateTable[index]) {
224 ALOGV("Sample rate: %d and index: %d",
225 sampleRate, index);
226 *tableIndex = index;
244 * 4 bits of sampling frequency index code (15 is not allowed)
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DAACEncoder.cpp96 static status_t getSampleRateTableIndex(int32_t sampleRate, int32_t &index) { argument
104 index = i;
117 int32_t index = 0; local
118 CHECK_EQ((status_t)OK, getSampleRateTableIndex(mSampleRate, index));
125 mAudioSpecificConfigData[0] = ((0x02 << 3) | (index >> 1));
126 mAudioSpecificConfigData[1] = ((index & 0x01) << 7) | (mChannels << 3);
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp144 OMX_INDEXTYPE index, OMX_PTR params) {
145 switch (index) {
198 return SimpleSoftOMXComponent::internalGetParameter(index, params);
203 OMX_INDEXTYPE index, const OMX_PTR params) {
204 switch (index) {
252 return SimpleSoftOMXComponent::internalSetParameter(index, params);
143 internalGetParameter( OMX_INDEXTYPE index, OMX_PTR params) argument
202 internalSetParameter( OMX_INDEXTYPE index, const OMX_PTR params) argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp116 OMX_INDEXTYPE index, OMX_PTR params) {
117 switch (index) {
179 return SimpleSoftOMXComponent::internalGetParameter(index, params);
184 OMX_INDEXTYPE index, const OMX_PTR params) {
185 switch (index) {
269 return SimpleSoftOMXComponent::internalSetParameter(index, params);
115 internalGetParameter( OMX_INDEXTYPE index, OMX_PTR params) argument
183 internalSetParameter( OMX_INDEXTYPE index, const OMX_PTR params) argument
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp124 OMX_INDEXTYPE index, OMX_PTR params) {
125 switch (index) {
167 return SimpleSoftOMXComponent::internalGetParameter(index, params);
172 OMX_INDEXTYPE index, const OMX_PTR params) {
173 switch (index) {
204 return SimpleSoftOMXComponent::internalSetParameter(index, params);
123 internalGetParameter( OMX_INDEXTYPE index, OMX_PTR params) argument
171 internalSetParameter( OMX_INDEXTYPE index, const OMX_PTR params) argument
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java347 public void notifySelection(Context context, String original, int index) { argument
355 if (mSuggestions == null || index < 0 || index >= mSuggestions.length) {
356 Log.w(TAG, "Unable to notify the suggestion as the index is out of range index=" + index
367 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_AFTER, mSuggestions[index]);
373 imm.notifySuggestionPicked(this, original, index);
/frameworks/base/media/java/android/media/
H A DIAudioService.aidl49 void setStreamVolume(int streamType, int index, int flags, String callingPackage);
51 oneway void setRemoteStreamVolume(int index);
53 void setMasterVolume(int index, int flags, String callingPackage);
H A DAudioService.java248 * file index in SOUND_EFFECT_FILES[] (first column) and indicating if effect
252 /** @hide Maximum volume index values for audio streams */
605 // The default safe volume index read here will be replaced by the actual value when
784 pw.println("\nStream volumes (device: index)");
942 private int rescaleIndex(int index, int srcStream, int dstStream) { argument
943 return (index * mStreamStates[dstStream].getMaxIndex() + mStreamStates[srcStream].getMaxIndex() / 2) / mStreamStates[srcStream].getMaxIndex();
1112 Log.e(TAG, "adjustStreamVolume() safe volume index = "+oldIndex);
1147 int index = mStreamStates[streamType].getIndex(device);
1148 sendVolumeUpdate(streamType, oldIndex, index, flags);
1204 StreamVolumeCommand(int streamType, int index, in argument
1219 onSetStreamVolume(int streamType, int index, int flags, int device) argument
1237 setStreamVolume(int streamType, int index, int flags, String callingPackage) argument
1241 setStreamVolume(int streamType, int index, int flags, String callingPackage, int uid) argument
1422 sendVolumeUpdate(int streamType, int oldIndex, int index, int flags) argument
1491 setStreamVolumeInt(int streamType, int index, int device, boolean force) argument
3609 setIndex(int index, int device) argument
3733 getValidIndex(int index) argument
5123 setRemoteStreamVolume(int index) argument
5406 checkSafeMediaVolume(int streamType, int index, int device) argument
[all...]
/frameworks/base/tools/velocityplot/
H A Dvelocityplot.py52 index = self.buffer.find('\n', self.pos)
53 if index != -1:
54 result = self.buffer[self.pos:index]
55 self.pos = index + 1
129 def _add_timeseries_axes(self, index, title, ylabel, ylim, yticks, sharex=None):
132 top = 0.95 - height * index
/frameworks/av/include/media/stagefright/
H A DMediaCodecList.h47 virtual sp<MediaCodecInfo> getCodecInfo(size_t index) const {
48 return mCodecInfos.itemAt(index);
/frameworks/av/media/libstagefright/include/
H A DAVIExtractor.h33 virtual sp<MediaSource> getTrack(size_t index);
36 size_t index, uint32_t flags);
H A DMPEG4Extractor.h56 virtual sp<MediaSource> getTrack(size_t index);
57 virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothHeadset.aidl56 void clccResponse(int index, int direction, int status, int mode, boolean mpty,
/frameworks/base/core/java/android/hardware/usb/
H A DUsbInterface.java32 * <a href="{@docRoot}guide/topics/usb/index.html">USB</a> developer guide.</p>
130 * Returns the {@link android.hardware.usb.UsbEndpoint} at the given index.
134 public UsbEndpoint getEndpoint(int index) { argument
135 return (UsbEndpoint)mEndpoints[index];
/frameworks/base/core/java/com/android/internal/preference/
H A DYesNoPreference.java84 protected Object onGetDefaultValue(TypedArray a, int index) { argument
85 return a.getBoolean(index, false);
/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/docs/html/
H A Djd_tag_helpers.js23 ALL_RESOURCES[i].index = i;
57 dictForKey[srcArr[i].index] = true;
/frameworks/base/libs/hwui/thread/
H A DTaskManager.cpp115 ssize_t index = mTasks.add(task); local
118 return index >= 0;

Completed in 542 milliseconds

<<21222324252627282930>>