Searched refs:list (Results 51 - 75 of 1911) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/util/
H A DListUtil.java37 public static String commaSeparatedString(List list) argument
39 if (list == null)
46 for (int index = 0; index < list.size(); index++)
53 buffer.append(quotedString((String)list.get(index)));
70 List list = new ArrayList();
86 list.add(string.substring(index + 1, nextIndex));
100 list.add(substring);
107 return list;
150 List list = commaSeparatedList(args[0]);
152 System.out.println("Resulting list
[all...]
/external/qemu/
H A Dqemu-option.h62 * The following functions take a parameter list as input. This is a pointer to
67 QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list,
69 int set_option_parameter(QEMUOptionParameter *list, const char *name,
71 int set_option_parameter_int(QEMUOptionParameter *list, const char *name,
74 QEMUOptionParameter *list);
76 QEMUOptionParameter *list, QEMUOptionParameter *dest);
77 void free_option_parameters(QEMUOptionParameter *list);
78 void print_option_parameters(QEMUOptionParameter *list);
79 void print_option_help(QEMUOptionParameter *list);
116 QemuOpts *qemu_opts_find(QemuOptsList *list, cons
[all...]
H A Dqemu-option.c156 * Searches an option list for an option with the given name
158 QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list, argument
161 while (list && list->name) {
162 if (!strcmp(list->name, name)) {
163 return list;
165 list++;
242 * Sets the value of a parameter in a given option list. The parsing of the
258 int set_option_parameter(QEMUOptionParameter *list, const char *name, argument
264 list
306 set_option_parameter_int(QEMUOptionParameter *list, const char *name, uint64_t value) argument
334 free_option_parameters(QEMUOptionParameter *list) argument
351 count_option_parameters(QEMUOptionParameter *list) argument
370 append_option_parameters(QEMUOptionParameter *dest, QEMUOptionParameter *list) argument
411 parse_option_parameters(const char *param, QEMUOptionParameter *list, QEMUOptionParameter *dest) argument
466 print_option_parameters(QEMUOptionParameter *list) argument
493 print_option_help(QEMUOptionParameter *list) argument
521 QemuOptsList *list; member in struct:QemuOpts
653 qemu_opts_find(QemuOptsList *list, const char *id) argument
684 qemu_opts_create(QemuOptsList *list, const char *id, int fail_if_exists) argument
715 qemu_opts_reset(QemuOptsList *list) argument
729 qemu_opts_set(QemuOptsList *list, const char *id, const char *name, const char *value) argument
820 qemu_opts_parse(QemuOptsList *list, const char *params, int permit_abbrev) argument
893 qemu_opts_from_qdict(QemuOptsList *list, const QDict *qdict) argument
961 qemu_opts_foreach(QemuOptsList *list, qemu_opts_loopfunc func, void *opaque, int abort_on_failure) argument
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java25 List list = (ArrayList)table.get(sid);
26 if (list == null)
28 list = new ArrayList(1);
29 table.put(sid, list);
32 list.add(signer);
48 Collection list = getSigners(selector);
50 return list.size() == 0 ? null : (SignerInformation) list.iterator().next();
104 List list = (ArrayList)table.get(selector);
106 return list
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListSubListTester.java37 * A generic JUnit test which tests {@code subList()} operations on a list.
84 assertEquals("subList(0, size) should be equal to the original list",
120 assertEquals("A set() call to a list after a sublist has been created "
158 assertEquals("A set() call to a list after a sublist has been created "
165 assertEquals("subList(0, 0).subList(0, 0) should be an empty list",
173 + "should be a single-element list of the element at index 1",
179 List<E> list = getList();
181 assertEquals(list.subList(0, size).size(),
183 assertEquals(list.subList(0, size - 1).size(),
185 assertEquals(list
[all...]
/external/chromium/chrome/common/extensions/docs/js/
H A Dsidebar.js18 function toggleList(list) {
19 if (typeof list.length != 'number') {
20 list = Array(list);
23 for (var i = 0; i < list.length; i++) {
24 var toggle = list[i].parentNode &&
25 list[i].parentNode.firstChild;
28 list[i].style.display = visible ? 'block' : 'none';
50 * Adds toggle controls to the sidebar list.
52 * Controls are inserted as the first children of list item
[all...]
/external/linux-tools-perf/util/
H A Dgenerate-cmdlist.sh14 sed -n -e 's/^perf-\([^ ]*\)[ ].* common.*/\1/p' ${PREFIX}/command-list.txt |
/external/srec/seti/sltsEngine/include/
H A Dlinklist.h46 For now, dynamically allocate a new list node with the data
48 LListResult Insert(LList *list, void *data);
55 For now, dynamically free a new list node
58 LListResult Delete(LList *list);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DOMSettableTokenListCustom.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
38 DOMSettableTokenList* list = V8DOMSettableTokenList::toNative(info.Holder()); local
39 return v8StringOrNull(list->item(index));
/external/webkit/Source/WebCore/css/
H A DMediaQueryListListener.idl27 void queryChanged(in MediaQueryList list);
/external/guava/guava-tests/test/com/google/common/collect/
H A DSortedListsTest.java41 void assertModelAgrees(List<Integer> list, Integer key, int answer, argument
45 if (list.contains(key)) {
46 assertEquals(list.indexOf(key), answer);
51 if (list.contains(key)) {
52 assertEquals(list.lastIndexOf(key), answer);
57 if (list.contains(key)) {
58 assertEquals(key, list.get(answer));
63 if (list.contains(key)) {
64 assertEquals(list.lastIndexOf(key) + 1, answer);
69 if (list
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
H A DDebugMeshCallback.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
45 private ArrayList<Vector3f> list = new ArrayList<Vector3f>(); field in class:DebugMeshCallback
48 list.add(new Vector3f(x, y, z));
52 FloatBuffer buf = BufferUtils.createFloatBuffer(list.size() * 3);
53 for (int i = 0; i < list.size(); i++) {
54 Vector3f vector3f = list.get(i);
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
H A DMaterialExtensionSet.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
74 List<String> list = nameMappings.get(name);
75 if(list==null){
76 list = new ArrayList<String>();
77 nameMappings.put(name, list);
79 list.add(alias);
/external/qemu/android/
H A Dhw-events.c88 eventList_getCount( EventList list )
92 if (list == NULL)
95 for (nn = 0; list[nn].name != NULL; nn++) {
102 eventList_findCodeByName( EventList list, argument
109 for ( ; list->name != NULL; list += 1 ) {
110 if ( !memcmp(name, list->name, namelen) &&
111 list->name[namelen] == 0 )
113 return list->value;
120 eventList_bufprintCode( EventList list, argument
141 EventList list; local
212 EventList list = eventList_findByType(type); local
220 EventList list = eventList_findByType(type); local
[all...]
/external/clang/test/SemaCXX/
H A Dvararg-non-pod.cpp100 __builtin_va_list list; local
101 __builtin_va_start(list, somearg);
105 __builtin_va_list list; local
106 __builtin_va_start(list, n);
107 (void)__builtin_va_arg(list, C); // expected-warning{{second argument to 'va_arg' is of non-POD type 'C'}}
108 __builtin_va_end(list);
116 __builtin_va_list list; local
117 __builtin_va_start(list, n);
118 (void)__builtin_va_arg(list, Abstract); // expected-error{{second argument to 'va_arg' is of abstract type 'Abstract'}}
119 __builtin_va_end(list);
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DExecutionListTest.java39 protected ExecutionList list = new ExecutionList(); field in class:ExecutionListTest
44 list.add(new MockRunnable(countDownLatch), exec);
45 list.add(new MockRunnable(countDownLatch), exec);
46 list.add(new MockRunnable(countDownLatch), exec);
49 list.execute();
61 list.add(new MockRunnable(countDownLatch), exec);
79 ExecutionList list = new ExecutionList();
80 list.add(THROWING_RUNNABLE, sameThreadExecutor());
81 list.execute();
82 list
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DCookieStoreTest.java66 List<HttpCookie> list = cookieStore.get(uri);
67 assertEquals(1, list.size());
68 assertTrue(list.contains(cookie));
72 list = cookieStore.get(uri);
73 assertEquals(1, list.size());
74 assertEquals(" TESTVALUE1 ", list.get(0).getValue());
75 assertTrue(list.contains(cookie2));
82 list = cookieStore.get(uri);
83 assertEquals(2, list.size());
84 assertNull(list
[all...]
/external/chromium/net/spdy/
H A Dspdy_session_pool.cc65 SpdySessionList* list = GetSessionList(host_port_proxy_pair); local
66 if (!list) {
79 list = AddSessionList(host_port_proxy_pair);
82 DCHECK(list);
83 if (list->size() && list->size() == g_max_sessions_per_domain) {
87 spdy_session = GetExistingSession(list, net_log);
100 list->push_back(spdy_session);
105 DCHECK_LE(list->size(), g_max_sessions_per_domain);
122 SpdySessionList* list local
150 SpdySessionList* list = GetSessionList(session->host_port_proxy_pair()); local
164 ListValue* list = new ListValue(); local
186 GetExistingSession( SpdySessionList* list, const BoundNetLog& net_log) const argument
230 SpdySessionList* list = GetSessionList(alias_pair); local
283 SpdySessionPool::SpdySessionList* list = new SpdySessionList(); local
311 SpdySessionList* list = GetSessionList(pair); local
372 SpdySessionList* list = sessions_.begin()->second; local
387 SpdySessionList* list = it->second; local
395 SpdySessionList* list = old_map.begin()->second; local
414 SpdySessionList* list = map_it->second; local
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dfinddev.c43 * This function adds an entry to the directory list
45 static void add_to_dirlist(const char *name, struct dir_list **list) argument
58 dp->next = *list;
59 *list = dp;
63 * This function frees a directory list
65 static void free_dirlist(struct dir_list **list) argument
69 for (dp = *list; dp; dp = next) {
74 *list = 0;
77 static int scan_dir(char *dirname, dev_t device, struct dir_list **list, argument
101 add_to_dirlist(path, list);
127 struct dir_list *list = 0, *new_list = 0; local
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
54 private final JList list = new JList(); field in class:RuleListController
55 private final JScrollPane scroll = new JScrollPane( list,
74 list.setModel(model);
79 if(model.getSize() > 0) list.setSelectedIndex(0);
80 list.updateUI();
94 list.setOpaque(false);
95 list.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
96 list
117 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean hasFocus) argument
[all...]
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest_unittest.cc127 EXPECT_TRUE(parser.results().list.empty());
131 EXPECT_TRUE(parser.results().list.empty());
135 EXPECT_TRUE(parser.results().list.empty());
139 EXPECT_TRUE(parser.results().list.empty());
145 EXPECT_FALSE(parser.results().list.empty());
146 const UpdateManifest::Result* firstResult = &parser.results().list.at(0);
163 EXPECT_FALSE(parser.results().list.empty());
164 firstResult = &parser.results().list.at(0);
170 EXPECT_FALSE(parser.results().list.empty());
176 EXPECT_FALSE(parser.results().list
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractListTest.java61 List list = new ArrayList();
62 list.add(new Integer(3));
63 list.add(new Integer(15));
64 list.add(new Integer(5));
65 list.add(new Integer(1));
66 list.add(new Integer(7));
68 Iterator i = list.iterator();
74 + " got: " + list.hashCode(), hashCode == list.hashCode());
81 SimpleList list
214 ArrayList<E> list = new ArrayList<E>(); field in class:AbstractListTest.MockArrayList
[all...]
/external/chromium/base/
H A Dobserver_list_threadsafe.h24 // A thread-safe container for a list of observers.
33 // * Observers can remove themselves from the observer list inside
36 // removing itself from the observer list, the notifications will
39 // The drawback of the threadsafe observer list is that notifications
86 // Add an observer to the list.
88 ObserverList<ObserverType>* list = NULL; local
99 list = observer_lists_[loop];
101 list->AddObserver(obs);
104 // Remove an observer from the list.
110 ObserverList<ObserverType>* list local
172 ObserverList<ObserverType>* list = (*it).second; local
185 NotifyWrapper(ObserverList<ObserverType>* list, const UnboundMethod<ObserverType, Method, Params>& method) argument
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dpassword_manager_list.css39 #saved-passwords-list .url {
44 #saved-passwords-list .name {
49 #saved-passwords-list .password {
54 #saved-passwords-list .password input[type="password"],
55 #saved-passwords-list .password input[type="text"] {
60 #password-exceptions-list .url {
64 #saved-passwords-list .url,
65 #saved-passwords-list .name,
66 #password-exceptions-list .url {
/external/e2fsprogs/lib/blkid/
H A Ddevno.c60 * This function adds an entry to the directory list
62 static void add_to_dirlist(const char *name, struct dir_list **list) argument
74 dp->next = *list;
75 *list = dp;
79 * This function frees a directory list
81 static void free_dirlist(struct dir_list **list) argument
85 for (dp = *list; dp; dp = next) {
90 *list = NULL;
93 void blkid__scan_dir(char *dirname, dev_t devno, struct dir_list **list, argument
125 if (list
143 struct dir_list *list = NULL, *new_list = NULL; local
[all...]

Completed in 809 milliseconds

1234567891011>>