OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyAt
(Results
1 - 25
of
225
) sorted by null
1
2
3
4
5
6
7
8
9
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseIntArray.java
44
public int
keyAt
( int index ){
45
return sparseArray.
keyAt
( index );
58
clone.put(
keyAt
(i), valueAt(i) );
ShadowSparseBooleanArray.java
45
public int
keyAt
(int index) {
46
return sparseArray.
keyAt
(index);
79
clone.put(
keyAt
(i), valueAt(i));
/frameworks/base/tools/aapt/
CrunchCache.cpp
46
const char* rPathPtr = mSourceFiles.
keyAt
(0).string()+mSourcePath.length();
67
cu->deleteFile(mDestFiles.
keyAt
(0));
/cts/tests/tests/util/src/android/util/cts/
SparseIntArrayTest.java
72
assertEquals(NON_EXISTED_KEY, sparseIntArray.
keyAt
(size));
120
assertEquals(NON_EXISTED_KEY, sparseIntArray.
keyAt
(size));
145
int key = sia.
keyAt
(i);
182
assertEquals(1, sparseArray.
keyAt
(0));
183
assertEquals(5, sparseArray.
keyAt
(1));
184
assertEquals(10, sparseArray.
keyAt
(2));
185
assertEquals(Integer.MAX_VALUE, sparseArray.
keyAt
(3));
LongSparseArrayTest.java
71
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
136
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
171
assertEquals(1L, sparseArray.
keyAt
(0));
172
assertEquals(5L, sparseArray.
keyAt
(1));
173
assertEquals(10L, sparseArray.
keyAt
(2));
174
assertEquals(Long.MAX_VALUE, sparseArray.
keyAt
(3));
SparseArrayTest.java
67
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
132
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
167
assertEquals(1, sparseArray.
keyAt
(0));
168
assertEquals(5, sparseArray.
keyAt
(1));
169
assertEquals(10, sparseArray.
keyAt
(2));
170
assertEquals(Integer.MAX_VALUE, sparseArray.
keyAt
(3));
SparseBooleanArrayTest.java
77
assertEquals(NON_EXISTED_KEY, sparseBooleanArray.
keyAt
(size));
133
assertEquals(NON_EXISTED_KEY, sparseBooleanArray.
keyAt
(size));
154
assertEquals(1, sparseArray.
keyAt
(0));
155
assertEquals(5, sparseArray.
keyAt
(1));
156
assertEquals(10, sparseArray.
keyAt
(2));
157
assertEquals(Integer.MAX_VALUE, sparseArray.
keyAt
(3));
SparseLongArrayTest.java
71
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
132
assertEquals(NON_EXISTED_KEY, sparseArray.
keyAt
(size));
163
assertEquals(1, sparseArray.
keyAt
(0));
164
assertEquals(5, sparseArray.
keyAt
(1));
165
assertEquals(10, sparseArray.
keyAt
(2));
166
assertEquals(Integer.MAX_VALUE, sparseArray.
keyAt
(3));
/frameworks/base/tools/aapt/tests/
MockFileFinder.h
43
fileStore.add(payload->
keyAt
(i),payload->valueAt(i));
FileFinder_test.cpp
77
String8 testExt(testStorage.
keyAt
(i).getPathExtension());
80
wrongExts += testStorage.
keyAt
(i);
/hardware/ti/omap4xxx/camera/
CameraParameters.cpp
169
mProperties->
keyAt
(i).string(),
174
const char* CameraProperties::Properties::
keyAt
(unsigned int index)
178
return mProperties->
keyAt
(index).string();
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLSparseArrayProperty.java
79
return mSparseArray.
keyAt
(index);
126
int key = mSparseArray.
keyAt
(i);
159
int key = mSparseArray.
keyAt
(i);
/hardware/qcom/audio/legacy/alsa_sound/
AudioPolicyManagerALSA.cpp
129
setStrategyMute(STRATEGY_MEDIA, true, mOutputs.
keyAt
(i));
130
setStrategyMute(STRATEGY_MEDIA, false, mOutputs.
keyAt
(i), MUTE_TIME_MS,
/frameworks/base/services/java/com/android/server/search/
SearchManagerService.java
156
if (changingUserId == mSearchables.
keyAt
(i)) {
157
getSearchables(mSearchables.
keyAt
(i)).buildSearchableList();
186
getSearchables(mSearchables.
keyAt
(i)).buildSearchableList();
272
ipw.print("\nUser: "); ipw.println(mSearchables.
keyAt
(i));
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/util/
SparseArray.java
77
public int
keyAt
(final int index) {
/frameworks/av/media/libmedia/
AudioParameter.cpp
78
str += mParameters.
keyAt
(i);
174
key = mParameters.
keyAt
(index);
/frameworks/base/core/java/android/util/
LongSparseLongArray.java
39
* {@link #
keyAt
(int)} and {@link #valueAt(int)}. Iterating over the keys using
40
* <code>
keyAt
(int)</code> with ascending values of the index will return the
174
* be in ascending order, e.g., <code>
keyAt
(0)</code> will return the
175
* smallest key and <code>
keyAt
(size()-1)</code> will return the largest
178
public long
keyAt
(int index) {
198
* Returns the index for which {@link #
keyAt
} would return the
279
long key =
keyAt
(i);
SparseBooleanArray.java
38
* {@link #
keyAt
(int)} and {@link #valueAt(int)}. Iterating over the keys using
39
* <code>
keyAt
(int)</code> with ascending values of the index will return the
171
* be in ascending order, e.g., <code>
keyAt
(0)</code> will return the
172
* smallest key and <code>
keyAt
(size()-1)</code> will return the largest
175
public int
keyAt
(int index) {
195
* Returns the index for which {@link #
keyAt
} would return the
273
int key =
keyAt
(i);
SparseIntArray.java
37
* {@link #
keyAt
(int)} and {@link #valueAt(int)}. Iterating over the keys using
38
* <code>
keyAt
(int)</code> with ascending values of the index will return the
181
* be in ascending order, e.g., <code>
keyAt
(0)</code> will return the
182
* smallest key and <code>
keyAt
(size()-1)</code> will return the largest
185
public int
keyAt
(int index) {
205
* Returns the index for which {@link #
keyAt
} would return the
283
int key =
keyAt
(i);
SparseLongArray.java
37
* {@link #
keyAt
(int)} and {@link #valueAt(int)}. Iterating over the keys using
38
* <code>
keyAt
(int)</code> with ascending values of the index will return the
170
* be in ascending order, e.g., <code>
keyAt
(0)</code> will return the
171
* smallest key and <code>
keyAt
(size()-1)</code> will return the largest
174
public int
keyAt
(int index) {
194
* Returns the index for which {@link #
keyAt
} would return the
275
int key =
keyAt
(i);
/frameworks/native/libs/ui/
GraphicBufferAllocator.cpp
68
list.
keyAt
(i), rec.size/1024.0f,
72
list.
keyAt
(i),
/frameworks/av/drm/common/
DrmInfo.cpp
79
const String8& key = mDrmInfo->mAttributes.
keyAt
(mIndex);
DrmInfoRequest.cpp
73
const String8& key = mDrmInfoRequest->mRequestInformationMap.
keyAt
(mIndex);
/frameworks/av/cmds/stagefright/
SimplePlayer.cpp
430
mStateByTrackIndex.
keyAt
(i));
435
mStateByTrackIndex.
keyAt
(i), err);
450
mStateByTrackIndex.
keyAt
(i));
454
err = onOutputFormatChanged(mStateByTrackIndex.
keyAt
(i), state);
461
mStateByTrackIndex.
keyAt
(i), err);
530
mStateByTrackIndex.
keyAt
(i), lateByUs);
560
mStateByTrackIndex.
keyAt
(i), -lateByUs);
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
ArrayMapTests.java
140
Object key = array.
keyAt
(i);
253
Object realValue = array.
keyAt
(index);
274
Object realValue = array.
keyAt
(index);
308
Log.e("test", " " + array.
keyAt
(i) + " -> " + array.valueAt(i));
327
Log.e("test", " " + map1.
keyAt
(i) + " -> " + map1.valueAt(i));
331
Log.e("test", " " + map2.
keyAt
(i) + " -> " + map2.valueAt(i));
Completed in 460 milliseconds
1
2
3
4
5
6
7
8
9