OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:listA
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
ImageListUberUnitTests.java
14
MockImageList
listA
= new MockImageList();
16
listA
.addImage(new MockImage(2, 2));
17
listA
.addImage(new MockImage(0, 0));
20
new IImageList[] {
listA
, listB}, ImageManager.SORT_DESCENDING);
28
new IImageList[] {
listA
, listB}, ImageManager.SORT_DESCENDING);
36
MockImageList
listA
= new MockImageList();
38
listA
.addImage(new MockImage(2, 2));
39
listA
.addImage(new MockImage(1, 1));
42
new IImageList[] {listB,
listA
}, ImageManager.SORT_DESCENDING);
50
new IImageList[] {
listA
, listB}, ImageManager.SORT_DESCENDING)
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/android/context/
RTree.cpp
425
ElementList*
listA
= m_tree->m_listA;
427
listA
->removeAll();
430
listA
->add(elementA);
440
int dA =
listA
->delta(node);
443
if (dA < dB &&
listA
->m_nbChildren < m_tree->m_maxChildren)
444
listA
->add(node);
449
listA
->m_nbChildren > listB->m_nbChildren ? listB :
listA
;
456
for (unsigned int i = 0; i <
listA
->m_nbChildren; i++)
457
simpleAdd(
listA
->m_children[i])
[
all
...]
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
AccountWithDataSetTest.java
70
final List<AccountWithDataSet>
listA
= stringifyListAndUnstringify(a1);
71
assertEquals(1,
listA
.size());
72
assertEquals(a1,
listA
.get(0));
/libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java
103
Field
listA
= fClass.getDeclaredField("
listA
");
104
assertParameterizedType(
listA
.getGenericType(), List.class, aClass);
140
List<A>
listA
;
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java
636
List<Object>
listA
= createEqualityKey(this);
639
if (
listA
.size() != listB.size()) {
643
for (int i = 0; i <
listA
.size(); i++) {
644
Object a =
listA
.get(i);
Completed in 115 milliseconds