/dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/ |
StringUtils.java | 31 * Combine a list of strings in an <code>Object[]</code> into a single 34 * @param list non-null; the strings to combine 37 public static String combineStrings(Object[] list) { 38 int listLength = list.length; 45 return (String) list[0]; 52 strLength += ((String) list[i]).length(); 58 sb.append(list[i]);
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
CorpusRanker.java | 21 import java.util.List; 29 * Gets a an ordered list of corpora. 31 * @return The most important corpora come first in the list. Callers should not mofify the 32 * returned list. 34 List<Corpus> getRankedCorpora(); 37 * Registers an observer that is called when the corpus list changes. 39 * @param observer gets notified when the corpus list changes.
|
/external/proguard/src/proguard/ |
Configuration.java | 24 import java.util.List; 40 * A list of input and output entries (jars, wars, ears, zips, and directories). 45 * A list of library entries (jars, wars, ears, zips, and directories). 62 * A list of <code>String</code>s specifying directories to be kept in 63 * the output directories or the output jars. A <code>null</code> list 64 * means no directories. An empty list means all directories. The directory 68 public List keepDirectories; 90 * A list of {@link KeepClassSpecification} instances, whose class names and 94 public List keep; 118 * A list of {@link ClassSpecification} instances, for which an explanatio [all...] |
ClassPathEntry.java | 24 import java.util.List; 39 private List filter; 40 private List jarFilter; 41 private List warFilter; 42 private List earFilter; 43 private List zipFilter; 96 public List getFilter() 101 public void setFilter(List filter) 107 public List getJarFilter() 112 public void setJarFilter(List filter [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
KeyStoreBuilderParameters.java | 22 import java.util.List; 26 * The parameters for {@code KeyManager}s. The parameters are a list of 34 private final List<KeyStore.Builder> ksbuilders; 49 * Creates a new {@code KeyStoreBuilderParameters} with the specified list 53 * the list of key store builders 55 * if the specified list is empty. 58 public KeyStoreBuilderParameters(List parameters) { 61 throw new NullPointerException("Builders list is null"); 64 throw new IllegalArgumentException("Builders list is empty"); 70 * Returns the unmodifiable list of {@code KeyStore.Builder}s associate [all...] |
/external/e2fsprogs/lib/ss/ |
std_rqs.ct | 12 "List topics for which help is available.", 15 request ss_list_requests, "List available commands.", 33 "Produce a list of the most commonly used requests.",
|
/external/icu4c/common/ |
ulocimp.h | 14 * Create an iterator over the specified keywords list 15 * @param keywordList double-null terminated list. Will be copied. 18 * @return enumeration (owned by caller) of the keyword list.
|
/external/oprofile/libutil/ |
op_list.h | 15 * Simple doubly linked list implementation. 30 * @param ptr the list to init 32 * Init a list head to create an empty list from it 43 * This is only for internal list manipulation where we know 59 * @param head list head to add it after 72 * @param head list head to add it before 83 * Delete a list entry by making the prev/next entries 86 * This is only for internal list manipulation where we know 97 * list_del - deletes entry from list [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListViewHeightTest.java | 56 ListView list = (ListView) mActivity.findViewById(R.id.inner_list); local 57 assertEquals("Unexpected items in adapter", 0, list.getCount()); 58 assertEquals("Unexpected children in list view", 0, list.getChildCount()); 66 assertTrue("List not be visible after clicking button1", list.isShown()); 67 assertTrue("List incorrect height", list.getHeight() == 200); 75 assertTrue("List not be visible after clicking button2", list.isShown()) [all...] |
/external/astl/tests/ |
test_list.cpp | 10 * notice, this list of conditions and the following disclaimer. 12 * notice, this list of conditions and the following disclaimer in 30 #include "../include/list" 38 using std::list; 43 list<int> list1; 44 list<int*> list2; 45 list<string> list3; 46 list<B> list4; 53 list<int> l; 63 list<B> l 76 list<int> list; local [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/choice/ |
der_decode_choice.c | 24 @param list The list of items to decode 25 @param outlen The number of items in the list 29 ltc_asn1_list *list, unsigned long outlen) 36 LTC_ARGCHK(list != NULL); 45 list[x].used = 0; 50 size = list[x].size; 51 data = list[x].data; 53 switch (list[x].type) { 57 list[x].used = 1 [all...] |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
linked_lists_double.sgml | 6 to iterate over the list in both directions 11 doubly-linked list data structure. 14 Each element in the list contains a piece of data, together with pointers 15 which link to the previous and next elements in the list. 16 Using these pointers it is possible to move through the list in both 19 which only allows movement through the list in the forward direction). 28 List elements are allocated from the <link linkend="glib-Memory-Slices">slice 34 the first element in the list. The functions which insert elements return 35 the new start of the list, which may have changed. 39 list so you simply set a #GList* to %NULL [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
DexMethod.java | 19 import java.util.List; 27 * Returns a list of strings representing the types of the parameters of 30 * @return a list of strings representing the types of the parameters of 33 public List<DexParameter> getParameters();
|
/dalvik/tests/062-character-encodings/src/ |
Main.java | 17 ArrayList<String> list = new ArrayList<String>(aliases.size()); local 18 list.addAll(aliases); 19 Collections.sort(list); 20 for (String s : list) {
|
/external/bluetooth/glib/docs/reference/ |
AUTHORS | 7 for a complete list.
|
/external/bluetooth/glib/gio/tests/ |
desktop-app-info.c | 100 GList *list; local 113 list = g_app_info_get_all_for_type ("application/x-test"); 114 g_assert (g_list_length (list) == 2); 116 /* check that both are in the list, info2 before info1 */ 117 info = (GAppInfo *)list->data; 120 info = (GAppInfo *)list->next->data; 123 g_list_foreach (list, (GFunc)g_object_unref, NULL); 124 g_list_free (list); 130 list = g_app_info_get_all_for_type ("application/x-test"); 131 g_assert (g_list_length (list) == 3) [all...] |
/external/e2fsprogs/lib/et/test_cases/ |
heimdal3.c | 29 void initialize_h3test_error_table_r(struct et_list **list); 37 void initialize_h3test_error_table_r(struct et_list **list) 41 for (end = list, et = *list; et; end = &et->next, et = et->next)
|
/external/stlport/etc/ |
std_headers.txt | 16 list
|
/external/webkit/WebKit/mac/Resources/ |
IDNScriptWhiteList.txt | 1 # Default Web Kit International Domain Name Script White List.
|
/frameworks/base/tools/localize/ |
XMLNode.h | 14 static string Find(const vector<XMLAttribute>& list,
|
/system/core/adb/ |
mutex_list.h | 1 /* the list of mutexes used by addb */
|
/system/core/toolbox/ |
id.c | 31 gid_t list[64]; local 34 max = getgroups(64, list); 43 print_gid(list[0]); 46 print_gid(list[n]);
|
/external/elfutils/libelf/ |
elf_nextscn.c | 59 Elf_ScnList *list = scn->list; local 61 if (scn + 1 < &list->data[list->cnt]) 63 else if (scn + 1 == &list->data[list->max] 64 && (list = list->next) != NULL) 66 /* If there is another element in the section list it must 68 assert (list->cnt > 0) [all...] |
/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/bluetooth/glib/gio/xdgmime/ |
xdgmime.c | 103 XdgDirTimeList *list; local 105 for (list = dir_time_list; list; list = list->next) 107 if (strcmp (list->directory_name, file_name) == 0) 114 list = calloc (1, sizeof (XdgDirTimeList)); 115 list->checked = XDG_CHECKED_UNCHECKED; 116 list->directory_name = file_name; 117 list->mtime = mtime 313 XdgDirTimeList *list; local 393 XdgDirTimeList *list; local 602 XdgCallbackList *list; local 884 XdgCallbackList *list; local [all...] |