HomeSort by relevance Sort by last modified time
    Searched refs:mIndex (Results 1 - 25 of 223) sorted by null

1 2 3 4 5 6 7 8 9

  /frameworks/base/include/androidfw/
TypeWrappers.h 32 mIndex = rhs.mIndex;
36 return mTypeVariant == rhs.mTypeVariant && mIndex == rhs.mIndex;
40 return mTypeVariant != rhs.mTypeVariant || mIndex != rhs.mIndex;
44 uint32_t prevIndex = mIndex;
54 return mIndex;
63 : mTypeVariant(tv), mIndex(index) {}
65 uint32_t mIndex;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasAlternateSelection.java 28 private int mIndex;
39 mIndex = altViews.size() - 1;
57 return mIndex >= 0 ? mAltViews.get(mIndex) : null;
65 if (mIndex == 0) {
66 mIndex = mAltViews.size() - 1;
67 } else if (mIndex > 0) {
68 mIndex--;
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 49 private int mIndex;
60 mIndex = 0;
76 return mData.length - mIndex;
92 while (mData.length == mIndex) {
97 return (mData[mIndex++] & 0xFF);
116 int currentDataLength = mData.length - mIndex;
122 System.arraycopy(mData, mIndex, b, offset1, currentDataLength);
123 mIndex += currentDataLength;
131 currentDataLength = mData.length - mIndex;
134 System.arraycopy(mData, mIndex, b, offset1, remainReadLength)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLFrame.java 24 private final int mIndex;
35 mIndex = frameIndex;
41 return mIndex;
  /frameworks/av/drm/common/
DrmInfo.cpp 70 mDrmInfo(keyIterator.mDrmInfo), mIndex(keyIterator.mIndex) {
75 return (mIndex < mDrmInfo->mAttributes.size());
79 const String8& key = mDrmInfo->mAttributes.keyAt(mIndex);
80 mIndex++;
86 mIndex = keyIterator.mIndex;
92 : mDrmInfo(iterator.mDrmInfo), mIndex(iterator.mIndex) {
98 mIndex = iterator.mIndex
    [all...]
DrmInfoRequest.cpp 64 mIndex(keyIterator.mIndex) {
69 return (mIndex < mDrmInfoRequest->mRequestInformationMap.size());
73 const String8& key = mDrmInfoRequest->mRequestInformationMap.keyAt(mIndex);
74 mIndex++;
81 mIndex = keyIterator.mIndex;
87 mDrmInfoRequest(iterator.mDrmInfoRequest), mIndex(iterator.mIndex) {
93 mIndex = iterator.mIndex
    [all...]
DrmConstraints.cpp 62 return mIndex < mDrmConstraints->mConstraintMap.size();
66 const String8& key = mDrmConstraints->mConstraintMap.keyAt(mIndex);
67 mIndex++;
77 mIndex(keyIterator.mIndex) {
83 mIndex = keyIterator.mIndex;
94 mIndex(iterator.mIndex) {
100 mIndex = iterator.mIndex
    [all...]
DrmMetadata.cpp 65 return mIndex < mDrmMetadata->mMetadataMap.size();
69 const String8& key = mDrmMetadata->mMetadataMap.keyAt(mIndex);
70 mIndex++;
80 mIndex(keyIterator.mIndex) {
87 mIndex = keyIterator.mIndex;
98 mIndex(iterator.mIndex) {
105 mIndex = iterator.mIndex
    [all...]
DrmSupportInfo.cpp 116 mIndex(iterator.mIndex) {
123 mIndex = iterator.mIndex;
128 return mIndex < mDrmSupportInfo->mFileSuffixVector.size();
132 String8& value = mDrmSupportInfo->mFileSuffixVector.editItemAt(mIndex);
133 mIndex++;
140 mIndex(iterator.mIndex) {
147 mIndex = iterator.mIndex
    [all...]
  /frameworks/base/media/java/android/media/
AudioGainConfig.java 29 private final int mIndex;
37 mIndex = index;
50 return mIndex;
AudioGain.java 60 private final int mIndex;
75 mIndex = index;
157 return new AudioGainConfig(mIndex, this, mode, channelMask, values, rampDurationMs);
  /frameworks/base/libs/androidfw/
TypeWrappers.cpp 22 mIndex++;
23 if (mIndex > dtohl(mTypeVariant->data->entryCount)) {
24 mIndex = dtohl(mTypeVariant->data->entryCount);
32 if (mIndex >= entryCount) {
45 const uint32_t entryOffset = dtohl(entryIndices[mIndex]);
51 ALOGE("Index %u points to entry with unaligned offset 0x%08x", mIndex, entryOffset);
58 ALOGE("Entry offset at index %u points outside the Type's boundaries", mIndex);
61 ALOGE("Entry at index %u extends beyond Type's boundaries", mIndex);
64 ALOGE("Entry at index %u is too small (%u)", mIndex, dtohs(entry->size));
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
FakeCursor.java 31 private int mIndex;
37 mIndex = -1;
56 return mIndex == 0;
61 return mIndex == mData.length - 1;
69 mIndex = 0;
78 mIndex = position;
84 return mIndex;
89 if (mIndex <= 0) {
92 mIndex--;
98 if (mIndex == mData.length - 1)
    [all...]
  /frameworks/base/core/java/android/util/
FastImmutableArraySet.java 45 it.mIndex = 0;
57 int mIndex;
65 return mIndex != mContents.length;
70 return mContents[mIndex++];
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ContentValuesVerifier.java 29 private int mIndex;
46 AndroidTestCase.assertTrue(mIndex < mContentValuesVerifierElemList.size());
47 mContentValuesVerifierElemList.get(mIndex).onEntryCreated(entry);
48 mIndex++;
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Stream.cpp 74 __FUNCTION__, getName().c_str(), category, i, points[i].mIndex,
111 int nbSteps = 1 + curve[Volume::VOLMAX].mIndex -
112 curve[Volume::VOLMIN].mIndex;
123 if (volIdx < curve[Volume::VOLMIN].mIndex) { // out of bounds
125 } else if (volIdx < curve[Volume::VOLKNEE1].mIndex) {
127 } else if (volIdx < curve[Volume::VOLKNEE2].mIndex) {
129 } else if (volIdx <= curve[Volume::VOLMAX].mIndex) {
137 ((float)(volIdx - curve[segment].mIndex)) *
140 ((float)(curve[segment+1].mIndex -
141 curve[segment].mIndex)) );
    [all...]
  /frameworks/av/include/drm/
DrmConstraints.h 74 : mDrmConstraints(drmConstraints), mIndex(0) {}
87 unsigned int mIndex;
97 : mDrmConstraints(drmConstraints), mIndex(0) {}
110 unsigned int mIndex;
DrmInfo.h 59 : mDrmInfo(const_cast <DrmInfo*> (drmInfo)), mIndex(0) {}
72 unsigned int mIndex;
83 : mDrmInfo(const_cast <DrmInfo*> (drmInfo)), mIndex(0) {}
96 unsigned int mIndex;
DrmInfoRequest.h 73 : mDrmInfoRequest(const_cast <DrmInfoRequest*> (drmInfoRequest)), mIndex(0) {}
86 unsigned int mIndex;
97 : mDrmInfoRequest(const_cast <DrmInfoRequest*> (drmInfoRequest)), mIndex(0) {}
110 unsigned int mIndex;
DrmMetadata.h 38 KeyIterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
51 unsigned int mIndex;
60 Iterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
73 unsigned int mIndex;
DrmSupportInfo.h 41 : mDrmSupportInfo(drmSupportInfo), mIndex(0) {}
53 unsigned int mIndex;
64 : mDrmSupportInfo(drmSupportInfo), mIndex(0) {}
76 unsigned int mIndex;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioGain.h 35 int mIndex;
  /packages/apps/Camera/src/com/android/camera/ui/
InLineSettingItem.java 41 protected int mIndex;
70 mIndex = index;
71 mPreference.setValueIndex(mIndex);
82 mIndex = mPreference.findIndexOfValue(mPreference.getValue());
  /packages/apps/Gallery/src/com/android/camera/
DeleteImage.java 37 private int mIndex = 0; // next image to delete
69 if (mIndex >= mUriList.size()) {
73 Uri uri = mUriList.get(mIndex++);
75 mProgressBar.setProgress(mIndex * 10000 / mUriList.size());
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingItem.java 41 protected int mIndex;
68 mIndex = index;
69 mPreference.setValueIndex(mIndex);
80 mIndex = mPreference.findIndexOfValue(mPreference.getValue());

Completed in 774 milliseconds

1 2 3 4 5 6 7 8 9