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

1 2

  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestRecyclerView.java 34 private List<RecyclerView.ViewHolder> holders = new ArrayList<>(); field in class:TestRecyclerView
44 return holders.get(position);
71 holders = new ArrayList<>();
73 holders.add(new TestViewHolder(Views.createTestView()));
81 view.holders = new ArrayList<>();
83 view.holders.add(new TestViewHolder(Views.createTestView()));
90 Mockito.verify(holders.get(pos).itemView).requestFocus();
  /external/kmod/testsuite/
test-loaded.c 55 struct kmod_list *holders, *hitr; local
59 holders = kmod_module_get_holders(mod);
60 kmod_list_foreach(hitr, holders) {
72 kmod_module_unref_list(holders);
  /external/kmod/tools/
lsmod.c 64 struct kmod_list *holders, *hitr; local
68 holders = kmod_module_get_holders(mod);
69 kmod_list_foreach(hitr, holders) {
83 kmod_module_unref_list(holders);
remove.c 46 struct kmod_list *holders; local
60 holders = kmod_module_get_holders(mod);
61 if (holders != NULL) {
66 kmod_list_foreach(itr, holders) {
73 kmod_module_unref_list(holders);
rmmod.c 65 struct kmod_list *holders; local
79 holders = kmod_module_get_holders(mod);
80 if (holders != NULL) {
85 kmod_list_foreach(itr, holders) {
92 kmod_module_unref_list(holders);
  /frameworks/base/core/java/android/hardware/camera2/legacy/
BurstHolder.java 82 ArrayList<RequestHolder> holders = new ArrayList<RequestHolder>(); local
85 holders.add(b.build(frameNumber + i));
88 return holders;
  /external/ant-glob/
NOTICE 209 related items) is being provided by the copyright holders under the following
229 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
235 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
238 The name and trademarks of copyright holders may NOT be used in advertising or
241 all times remain with copyright holders.
  /prebuilts/jdk/jdk9/darwin-x86/legal/java.xml/
dom.md 11 related items) is being provided by the copyright holders under the following
34 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
40 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
42 DOCUMENTATION. The name and trademarks of copyright holders may NOT be used
45 associated documentation will at all times remain with copyright holders.
  /prebuilts/jdk/jdk9/linux-x86/legal/java.xml/
dom.md 11 related items) is being provided by the copyright holders under the following
34 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
40 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
42 DOCUMENTATION. The name and trademarks of copyright holders may NOT be used
45 associated documentation will at all times remain with copyright holders.
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
NOTICE 209 related items) is being provided by the copyright holders under the following
229 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
235 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
238 The name and trademarks of copyright holders may NOT be used in advertising or
241 all times remain with copyright holders.
  /prebuilts/tools/common/m2/repository/com/intellij/annotations/12.0/
NOTICE 209 related items) is being provided by the copyright holders under the following
229 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
235 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
238 The name and trademarks of copyright holders may NOT be used in advertising or
241 all times remain with copyright holders.
  /prebuilts/tools/common/offline-m2/com/intellij/annotations/12.0/
NOTICE 209 related items) is being provided by the copyright holders under the following
229 THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE
235 COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
238 The name and trademarks of copyright holders may NOT be used in advertising or
241 all times remain with copyright holders.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarIconList.java 184 // These holders get added to the end. Confused yet?
235 * @return all holders contained here, in view order
238 ArrayList<StatusBarIconHolder> holders = new ArrayList<>(); local
241 holders.add(mSubSlots.get(i));
246 holders.add(mHolder);
249 return holders;
StatusBarIconControllerImpl.java 91 List<StatusBarIconHolder> holders = slot.getHolderListInViewOrder(); local
94 for (StatusBarIconHolder holder : holders) {
118 // This is a little hacky... Peel off all of the holders on all of the slots
  /prebuilts/jdk/jdk9/darwin-x86/legal/java.base/
asm.md 20 3. Neither the name of the copyright holders nor the names of its
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  /prebuilts/jdk/jdk9/darwin-x86/legal/jdk.xml.bind/
relaxngdatatype.md 21 Neither the names of the copyright holders nor the names of its
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  /prebuilts/jdk/jdk9/linux-x86/legal/java.base/
asm.md 20 3. Neither the name of the copyright holders nor the names of its
24 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  /prebuilts/jdk/jdk9/linux-x86/legal/jdk.xml.bind/
relaxngdatatype.md 21 Neither the names of the copyright holders nor the names of its
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2ReprocessCaptureTest.java 989 ImageResultHolder[] holders = new ImageResultHolder[isReprocessCaptures.length]; local
    [all...]
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
BaseRecyclerViewAnimationsTest.java 381 List<ViewHolder> holders = new ArrayList<ViewHolder>(); local
386 holders.add(holder);
389 return holders;
  /cts/tests/camera/src/android/hardware/camera2/cts/
ReprocessCaptureTest.java 1240 ImageResultHolder[] holders = new ImageResultHolder[isReprocessCaptures.length]; local
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 381 PropertyValuesHolder[] holders = a2.getValues(); local
382 assertEquals(2, holders.length);
386 ValueAnimator a1 = ValueAnimator.ofPropertyValuesHolder(holders);
  /system/bt/stack/gatt/
gatt_main.cc 269 auto& holders = p_tcb->app_hold_link; local
273 auto ret = holders.insert(gatt_if);
283 if (!holders.erase(gatt_if)) {
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedVectorDrawable.java 599 PropertyValuesHolder[] holders = ((ObjectAnimator) animator).getValues(); local
600 for (int i = 0; i < holders.length; i++) {
601 PropertyValuesHolder pvh = holders[i];
    [all...]
  /prebuilts/go/darwin-x86/src/image/jpeg/
idct.go 34 * are subject to royalty fees to patent holders. Many of these patents are

Completed in 522 milliseconds

1 2