Searched defs:list (Results 201 - 225 of 895) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DCompoundTransliterator.java103 CompoundTransliterator(List<Transliterator> list) { argument
104 this(list, 0);
107 CompoundTransliterator(List<Transliterator> list, int numAnonymousRBTs) { argument
110 init(list, FORWARD, false);
148 Vector list = new Vector();
152 regenID, list, compoundFilter)) {
156 TransliteratorIDParser.instantiateList(list);
158 init(list, direction, fixReverseID);
169 * @param list a vector of transliterator objects to be adopted. It
170 * should NOT be empty. The list shoul
178 init(List<Transliterator> list, int direction, boolean fixReverseID) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Drsalist.c14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
65 int prsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type);
68 rsa_key_insert(struct genlist *list, struct netaddr *src, argument
86 genlist_append(list, rsa_key);
106 rsa_key_dump(struct genlist *list) argument
108 genlist_foreach(list, rsa_key_dump_one, NULL);
120 rsa_list_count(struct genlist *list) argument
123 genlist_foreach(list, rsa_list_count_one, &count);
158 /* Always traverse the whole list */
165 struct genlist *list; local
189 rsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type) argument
201 rsa_try_check_rsasign(vchar_t *source, vchar_t *sig, struct genlist *list) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DAttributeInfo.java188 static int getLength(ArrayList list) { argument
190 int n = list.size();
192 AttributeInfo attr = (AttributeInfo)list.get(i);
199 static AttributeInfo lookup(ArrayList list, String name) { argument
200 if (list == null)
203 ListIterator iterator = list.listIterator();
213 static synchronized void remove(ArrayList list, String name) { argument
214 if (list == null)
217 ListIterator iterator = list.listIterator();
225 static void writeAll(ArrayList list, DataOutputStrea argument
238 copyAll(ArrayList list, ConstPool cp) argument
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java21 * A linked list.
53 * Returns the car part of the list.
62 * Returns the cdr part of the list.
77 ASTList list = this;
78 while (list != null) {
80 ASTree a = list.left;
82 list = list.right;
90 * Returns the number of the elements in this list.
96 public static int length(ASTList list) { argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DHandlerCollection.java37 * The default implementations calls all handlers in list order,
296 protected Object expandChildren(Object list, Class byClass) argument
300 list=expandHandler(handlers[i], list, byClass);
301 return list;
/external/jetty/src/java/org/eclipse/jetty/util/
H A DLazyList.java40 * LazyList works by passing an opaque representation of the list in
42 * null for an empty list, an Object for a list with a single entry
43 * or an {@link ArrayList} for a list of items.
72 * @param list The list to add to or null if none yet created.
77 public static Object add(Object list, Object item) argument
79 if (list==null)
91 if (list instanceof List)
93 ((List<Object>)list)
111 add(Object list, int index, Object item) argument
142 addCollection(Object list, Collection<?> collection) argument
156 addArray(Object list, Object[] array) argument
167 ensureSize(Object list, int initialSize) argument
186 remove(Object list, Object o) argument
206 remove(Object list, int i) argument
234 getList(Object list) argument
250 getList(Object list, boolean nullForEmpty) argument
266 toStringArray(Object list) argument
293 toArray(Object list,Class<?> clazz) argument
322 size(Object list) argument
338 get(Object list, int i) argument
353 contains(Object list,Object item) argument
366 clone(Object list) argument
376 toString(Object list) argument
387 iterator(Object list) argument
404 listIterator(Object list) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/resource/
H A DFileResource.java327 * Returns a list of resources contained in the given resource
330 public String[] list() method in class:FileResource
332 String[] list =_file.list();
333 if (list==null)
335 for (int i=list.length;i-->0;)
337 if (new File(_file,list[i]).isDirectory() &&
338 !list[i].endsWith("/"))
339 list[i]+="/";
341 return list;
[all...]
H A DJarFileResource.java265 public synchronized String[] list() method in class:JarFileResource
269 List<String> list = null;
272 list = listEntries();
282 LOG.warn("Retrying list:"+e);
285 list = listEntries();
288 if (list != null)
290 _list=new String[list.size()];
291 list.toArray(_list);
303 ArrayList<String> list = new ArrayList<String>(32);
346 if (list
[all...]
H A DResourceCollection.java68 List<Resource> list = new ArrayList<Resource>();
76 list.add(r2);
79 list.add(r);
81 _resources = list.toArray(new Resource[list.size()]);
241 * @return the resource(file) if found, returns a list of resource dirs if its a dir, else null.
415 * @return The list of resource names(merged) contained in the collection of resources.
418 public String[] list() method in class:ResourceCollection
426 for(String s : r.list())
463 * @return the list o
[all...]
H A DURLResource.java263 * Returns a list of resource names contained in the given resource
266 public String[] list() method in class:URLResource
/external/jmdns/src/javax/jmdns/
H A DJmDNS.java338 * <b>Note:</b> Unregistered services will not disappear form the list of services immediately. According to the specification, when unregistering services we send goodbye packets and then wait <b>1s</b> before purging the cache.<br/>
378 * Returns a list of service infos of the specified type.
384 public abstract ServiceInfo[] list(String type); method in class:JmDNS
387 * Returns a list of service infos of the specified type.
395 public abstract ServiceInfo[] list(String type, long timeout); method in class:JmDNS
398 * Returns a list of service infos of the specified type sorted by subtype. Any service that do not register a subtype is listed in the empty subtype section.
407 * Returns a list of service infos of the specified type sorted by subtype. Any service that do not register a subtype is listed in the empty subtype section.
H A DJmmDNS.java114 * @return list of name of the JmDNS
120 * Return the list HostName associated with this JmmDNS instance.
122 * @return list of host names
128 * Return the list of addresses of the interface to which this instance of JmmDNS is bound.
130 * @return list of Internet Address
137 * Return the list of addresses of the interface to which this instance of JmmDNS is bound.
139 * @return list of Internet Address
156 * @return list of service info. If no service info is found the list is empty.
172 * @return list o
348 public abstract ServiceInfo[] list(String type); method in interface:JmmDNS
360 public abstract ServiceInfo[] list(String type, long timeout); method in interface:JmmDNS
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DDNSStateTask.java159 protected void advanceObjectsState(List<DNSStatefulObject> list) { argument
160 if (list != null) {
161 for (DNSStatefulObject object : list) {
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLightList.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
49 private Light[] list, tlist; field in class:LightList
83 list = new Light[DEFAULT_SIZE];
98 Light[] temp = new Light[list.length * 2];
99 float[] temp2 = new float[list.length * 2];
100 System.arraycopy(list, 0, temp, 0, list.length);
101 System.arraycopy(distToOwner, 0, temp2, 0, list.length);
102 list
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
H A DRenderQueue.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
167 * used to sort the accumulated list of geometries before actual rendering
293 private void renderGeometryList(GeometryList list, RenderManager rm, Camera cam, boolean clear) { argument
294 list.setCamera(cam); // select camera for sorting
295 list.sort();
296 for (int i = 0; i < list.size(); i++) {
297 Geometry obj = list.get(i);
303 list.clear();
307 public void renderShadowQueue(GeometryList list, RenderManage argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DADefCommand.java83 public void setMacro(List<TWord> list) argument
86 this._macro_.addAll(list);
87 for(TWord e : list)
103 public void setArguments(List<PVariable> list) argument
106 this._arguments_.addAll(list);
107 for(PVariable e : list)
/external/libdrm/freedreno/kgsl/
H A Dkgsl_pipe.c121 /* add buffer to submit list when it is referenced in cmdstream: */
127 struct list_head *list = &kgsl_bo->list[pipe->id]; local
128 if (LIST_IS_EMPTY(list)) {
131 list_del(list);
133 list_addtail(list, &kgsl_pipe->submit_list);
136 /* prepare buffers on submit list before flush: */
145 LIST_FOR_EACH_ENTRY(kgsl_bo, &kgsl_pipe->submit_list, list[pipe->id]) {
152 /* process buffers on submit list after flush: */
158 LIST_FOR_EACH_ENTRY_SAFE(kgsl_bo, tmp, &kgsl_pipe->submit_list, list[pip
159 struct list_head *list = &kgsl_bo->list[pipe->id]; local
177 struct list_head *list = &kgsl_bo->list[pipe->id]; local
[all...]
/external/libdrm/nouveau/
H A Dbufctx.c54 struct nouveau_bufref_priv *list; member in struct:nouveau_bufbin_priv
115 while ((pref = pbin->list)) {
117 pbin->list = pref->next;
146 pref->next = pbin->list;
147 pbin->list = pref;
/external/libnl/include/
H A Dnetlink-local.h68 struct nl_list_head list; member in struct:trans_list
/external/libxml2/doc/
H A Dsearch.php107 <p> The search service indexes the libxml2 and libxslt APIs and documentation as well as the xml@gnome.org and xslt@gnome.org mailing-list archives. To use it simply provide a set of keywords:
123 <option value="XMLLIST" <?php if ($scope == 'XMLLIST') print "selected"?>>Only the XML list archive</option>
124 <option value="XSLTLIST" <?php if ($scope == 'XSLTLIST') print "selected"?>>Only the XSLT list archive</option>
178 $result = mysql_query ("SELECT wordsArchive.relevance, wordsArchive.name, 'xml-list', archives.resource, archives.title FROM wordsArchive, archives WHERE LCASE(wordsArchive.name) LIKE LCASE('$word') and wordsArchive.ID = archives.ID ORDER BY relevance DESC LIMIT 75");
220 $result = mysql_query ("SELECT XSLTwordsArchive.relevance, XSLTwordsArchive.name, 'xslt-list', archives.resource, archives.title FROM XSLTwordsArchive, archives WHERE LCASE(XSLTwordsArchive.name) LIKE LCASE('$word') and XSLTwordsArchive.ID = archives.ID ORDER BY relevance DESC LIMIT 75");
231 list($ra,$ta,$ma,$na,$da) = $a;
232 list($rb,$tb,$mb,$nb,$db) = $b;
242 $list = explode (" ", $query); variable
245 for ($number = 0;$number < count($list);$number++) {
247 $word = $list[
[all...]
/external/libxml2/
H A DgenUnicode.py152 # reduce the number list into ranges
154 list = Categories[cat] variable
159 for val in list:
H A DtestC14N.c35 "Usage: %s <mode> <xml-file> [<xpath-expr>] [<inclusive-ns-list>]\n",
156 xmlChar **list; local
159 list = (argc > 4) ? parse_list((xmlChar *)argv[4]) : NULL;
160 ret = test_c14n(argv[2], 1, XML_C14N_EXCLUSIVE_1_0, (argc > 3) ? argv[3] : NULL, list);
161 if(list != NULL) xmlFree(list);
163 xmlChar **list; local
166 list = (argc > 4) ? parse_list((xmlChar *)argv[4]) : NULL;
167 ret = test_c14n(argv[2], 0, XML_C14N_EXCLUSIVE_1_0, (argc > 3) ? argv[3] : NULL, list);
168 if(list !
[all...]
H A DtestRegexp.c220 const char *list[40]; local
234 ret = xmlExpGetLanguage(ctxt, expr, (const xmlChar **) &list[0], 40);
236 printf("Failed to get list: %d\n", ret);
242 deriv = xmlExpStringDerive(ctxt, expr, BAD_CAST list[i], -1);
244 printf(" %s -> derivation failed\n", list[i]);
248 printf(" %s -> %s\n", list[i],
/external/linux-tools-perf/src/tools/perf/util/
H A Dstrlist.c135 struct strlist *strlist__new(bool dupstr, const char *list) argument
146 if (list && strlist__parse_list(slist, list) != 0)
/external/lldb/source/API/
H A DSBValueList.cpp57 Append (const ValueListImpl& list) argument
59 for (auto val : list.m_values)

Completed in 547 milliseconds

1234567891011>>