HomeSort by relevance Sort by last modified time
    Searched refs:list (Results 126 - 150 of 2004) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResourceItem.java 10 import java.util.List;
28 * List of files generating this ResourceItem.
57 * Reset the item by emptying its version list.
64 * Returns the sorted list of {@link ResourceItem} objects for this resource item.
67 ArrayList<ResourceFile> list = new ArrayList<ResourceFile>(); local
68 list.addAll(mFiles);
70 Collections.sort(list, sComparator);
72 return list.toArray(new ResourceFile[list.size()]);
76 * Returns the list of {@link ResourceItem} objects for this resource item
    [all...]
  /external/stlport/test/unit/
list_test.cpp 5 #include <list>
60 list<int> l1(array1, array1 + 3);
61 list<int> l2(array2, array2 + 2);
62 list<int>::iterator i1 = l1.begin();
63 list<int>::iterator i2 = l2.begin();
64 list<int>::const_iterator ci(i1);
65 list<int>::const_iterator ci1(ci);
80 list<int> l(2);
88 list<char>::iterator l_char_ite;
89 list<int>::iterator l_int_ite
    [all...]
  /external/e2fsprogs/resize/
extent.c 27 struct ext2_extent_entry *list; member in struct:_ext2_extent
53 extent->size, &extent->list);
58 memset(extent->list, 0,
69 if (extent->list)
70 ext2fs_free_mem(&extent->list);
71 extent->list = 0;
92 newsize, &extent->list);
98 ent = extent->list + curr;
149 qsort(extent->list, extent->num,
163 lowval = extent->list[low].old_loc
    [all...]
  /external/proguard/src/proguard/gui/
ListPanel.java 25 import java.util.List;
33 * list and between lists. Extensions of this class should add buttons to add
34 * and possibly edit entries, and to set and get the resulting list.
41 protected final JList list = new JList(listModel); field in class:ListPanel
61 list.addListSelectionListener(new ListSelectionListener()
69 add(new JScrollPane(list), listConstraints);
90 removeElementsAt(list.getSelectedIndices());
105 int[] selectedIndices = list.getSelectedIndices();
126 int[] selectedIndices = list.getSelectedIndices();
156 int[] selectedIndices = list.getSelectedIndices()
188 List list = new ArrayList(getComponentCount()-1); local
    [all...]
  /cts/tests/src/android/widget/cts/
AdapterViewStubActivity.java 20 import java.util.List;
53 final List<String> list = new ArrayList<String>(); local
55 list.add("test:" + i);
57 return new ArrayAdapter<String>(this, R.layout.adapterview_layout, list);
  /external/clearsilver/java-jni/
CSUtil.java 4 import java.util.List;
22 * @return A list of loadpaths in order in which to search.
25 public static List<String> getLoadPaths(HDF hdf) {
26 List<String> list = new LinkedList<String>(); local
34 list.add(lpHdf.objValue());
36 return list;
40 * Given an ordered list of directories to look in, locate the specified file.
42 * @param loadpaths the ordered list of paths to search.
47 public static File locateFile(List<String> loadpaths, String filename)
    [all...]
  /external/dbus/bus/
expirelist.h 2 /* expirelist.h List of stuff that expires
28 #include <dbus/dbus-list.h>
34 typedef dbus_bool_t (* BusExpireFunc) (BusExpireList *list,
40 DBusList *items; /**< List of BusExpireItem */
59 void bus_expire_list_free (BusExpireList *list);
  /external/skia/src/animator/
SkDisplayList.cpp 61 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list,
64 *list = &fDrawList;
66 return SearchForMatch(match, list, parent, found, grandList);
79 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list,
82 for (int index = 0; index < (*list)->count(); index++) {
83 SkDrawable* draw = (**list)[index];
90 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
101 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
108 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list,
113 SkTDDrawableArray* saveList = *list;
    [all...]
  /external/v8/tools/
utils.py 7 # notice, this list of conditions and the following disclaimer.
9 # copyright notice, this list of conditions and the following
33 # Reads a .list file into an array of strings
35 list = []
42 list.append(line)
43 return list
  /external/webkit/WebCore/bindings/js/
JSStyleSheetListCustom.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
42 StyleSheetList* list = impl(); local
45 unsigned length = list->length();
47 markDOMObjectWrapper(markStack, globalData, list->item(i));
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
DocumentImpl.cpp 54 NodeListImpl* list = NULL;
57 list = element->getElementsByTagName(tagname);
59 return list;
53 NodeListImpl* list = NULL; local
  /system/core/init/
init.h 59 #define list_for_each(node, list) \
60 for (node = (list)->next; node != (list); node = node->next)
62 void list_init(struct listnode *list);
63 void list_add_tail(struct listnode *list, struct listnode *item);
66 #define list_empty(list) ((list) == (list)->next)
67 #define list_head(list) ((list)->next
    [all...]
  /external/bluetooth/glib/gio/
gfileattribute.c 40 * File attributes in GIO consist of a list of key-value pairs.
48 * Values are stored within the list in #GFileAttributeValue structures.
53 * The list of possible attributes for a filesystem (pointed to by a #GFile) is
54 * availible as a #GFileAttributeInfoList. This list is queryable by key names
76 * namespace is used by file managers and applications that list directories
827 * Creates a new file attribute info list.
848 * @list: a #GFileAttributeInfoList to duplicate.
850 * Makes a duplicate of a file attribute info list.
852 * Returns: a copy of the given @list.
855 g_file_attribute_info_list_dup (GFileAttributeInfoList *list)
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 36 import java.util.List;
47 // mode: false - list of encodings is empty
48 // mode: true - list of encodings consists of 2 elements
52 private Set<String> list; field in class:MyCertificateFactorySpi
57 list = new HashSet<String>();
58 list.add("aa");
59 list.add("bb");
124 public CertPath engineGenerateCertPath(List<? extends Certificate> certificates) {
135 list.clear();
137 return list.iterator()
    [all...]
  /external/freetype/src/base/
ftutil.c 5 /* FreeType utility file for memory and list management (body). */
241 FT_List_Find( FT_List list,
247 cur = list->head;
263 FT_List_Add( FT_List list,
266 FT_ListNode before = list->tail;
275 list->head = node;
277 list->tail = node;
284 FT_List_Insert( FT_List list,
287 FT_ListNode after = list->head;
294 list->tail = node
    [all...]
  /external/guava/src/com/google/common/collect/
Lists.java 32 import java.util.List;
43 * Static utility methods pertaining to {@link List} instances. Also see this
76 * @param elements the elements that the list should contain, in order
84 ArrayList<E> list = new ArrayList<E>(capacity); local
85 Collections.addAll(list, elements);
86 return list;
103 * @param elements the elements that the list should contain, in order
126 * @param elements the elements that the list should contain, in order
132 ArrayList<E> list = newArrayList(); local
134 list.add(elements.next())
210 LinkedList<E> list = newLinkedList(); local
    [all...]
  /bionic/libc/kernel/common/linux/
xattr.h 35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
NodeListImpl.java 23 import java.util.List;
37 private List<NodeImpl> children;
43 NodeListImpl(List<NodeImpl> list) {
44 children = list;
  /external/dbus/test/
shell-test.c 5 #include <dbus/dbus-list.h>
19 DBusList *list = NULL, *node; local
24 _dbus_list_append (&list, (char *)arg1);
30 _dbus_list_append (&list, tmp);
34 original_argc = _dbus_list_get_length (&list);
37 for (i = 0, node = _dbus_list_get_first_link (&list); i < original_argc && node;
38 i++, node = _dbus_list_get_next_link (&list, node))
46 _dbus_list_clear (&list);
  /external/e2fsprogs/e2fsck/
profile_helpers.h 16 (char **list);
  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.java 26 import java.util.List;
113 public TestParcelable listParcelableLonger(List<TestParcelable> list, int index) {
114 list.add(list.get(index));
115 return list.get(index);
118 public int listParcelableShorter(List<TestParcelable> list, int index) {
119 list.remove(index);
120 return list.size()
241 List<TestParcelable> list = Lists.newArrayList(); local
265 List<TestParcelable> list = Lists.newArrayList(); local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface.java 26 import java.util.List;
54 private final List<Font> mFonts;
64 * Returns the underlying {@link Font} objects. The first item in the list is the real
67 public List<Font> getFonts() {
101 ArrayList<Font> list = new ArrayList<Font>(); local
102 list.add(font);
103 list.addAll(mFontLoader.getFallBackFonts());
104 return new Typeface(familyName, styleBuffer[0], list);
125 ArrayList<Font> list = new ArrayList<Font>(); local
126 list.add(font)
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
xattr.h 35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
xattr.h 35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
xattr.h 35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler

Completed in 1492 milliseconds

1 2 3 4 56 7 8 91011>>