Home
last modified time | relevance | path

Searched full:link (Results 1 – 25 of 9473) sorted by relevance

12345678910>>...379

/external/libxml2/doc/devhelp/
Dlibxml2.devhelp2 <book xmlns="http://www.devhelp.net/book" title="libxml2 Reference Manual" link="index.html" author…
4 <sub name="API" link="general.html">
5 <sub name="DOCBparser" link="libxml2-DOCBparser.html"/>
6 <sub name="HTMLparser" link="libxml2-HTMLparser.html"/>
7 <sub name="HTMLtree" link="libxml2-HTMLtree.html"/>
8 <sub name="SAX" link="libxml2-SAX.html"/>
9 <sub name="SAX2" link="libxml2-SAX2.html"/>
10 <sub name="c14n" link="libxml2-c14n.html"/>
11 <sub name="catalog" link="libxml2-catalog.html"/>
12 <sub name="chvalid" link="libxml2-chvalid.html"/>
[all …]
/external/libxml2/doc/html/
Dlibxml.devhelp2 <book xmlns="http://www.devhelp.net/book" title="Gnome XML Library Reference Manual " link="index.h…
4 <sub name="Libxml Programming Notes" link="ch01.html">
5 <sub name="testOOMlib" link="libxml-testOOMlib.html"/>
6 <sub name="wincecompat" link="libxml-wincecompat.html"/>
7 <sub name="wsockcompat" link="libxml-wsockcompat.html"/>
8 <sub name="encoding" link="libxml-encoding.html"/>
9 <sub name="xmlregexp" link="libxml-xmlregexp.html"/>
10 <sub name="xmlmemory" link="libxml-xmlmemory.html"/>
11 <sub name="xmlIO" link="libxml-xmlIO.html"/>
12 <sub name="xpath" link="libxml-xpath.html"/>
[all …]
/external/timezonepicker-support/
Dbackward8 Link Africa/Asmara Africa/Asmera
9 Link Africa/Bamako Africa/Timbuktu
10 Link America/Argentina/Catamarca America/Argentina/ComodRivadavia
11 Link America/Adak America/Atka
12 Link America/Argentina/Buenos_Aires America/Buenos_Aires
13 Link America/Argentina/Catamarca America/Catamarca
14 Link America/Atikokan America/Coral_Harbour
15 Link America/Argentina/Cordoba America/Cordoba
16 Link America/Tijuana America/Ensenada
17 Link America/Indiana/Indianapolis America/Fort_Wayne
[all …]
/external/libnl/lib/route/
Dlink.c2 * lib/route/link.c Links (Interfaces)
14 * @defgroup link Links (Interfaces)
17 * @par Link Identification
18 * A link can be identified by either its interface index or by its
26 * - Link layer address
27 * - Link layer broadcast address
32 * - Link name (only via access through interface index) (>= 2.6.9)
45 * @par Link Flags (linux/if.h)
48 * IFF_UP Status of link (up|down)
49 * IFF_BROADCAST Indicates this link allows broadcasting
[all …]
/external/dbus/dbus/
Ddbus-list.c57 DBusList *link; in alloc_link() local
71 link = _dbus_mem_pool_alloc (list_pool); in alloc_link()
72 if (link == NULL) in alloc_link()
82 link = _dbus_mem_pool_alloc (list_pool); in alloc_link()
85 if (link) in alloc_link()
86 link->data = data; in alloc_link()
90 return link; in alloc_link()
94 free_link (DBusList *link) in free_link() argument
97 if (_dbus_mem_pool_dealloc (list_pool, link)) in free_link()
109 DBusList *link) in link_before() argument
[all …]
/external/guava/guava/src/com/google/common/collect/
Dpackage-info.java25 * <dt>{@link com.google.common.collect.BiMap}
26 * <dd>An extension of {@link java.util.Map} that guarantees the uniqueness of
32 * <dt>{@link com.google.common.collect.Multiset}
33 * <dd>An extension of {@link java.util.Collection} that may contain duplicate
34 * values like a {@link java.util.List}, yet has order-independent equality
35 * like a {@link java.util.Set}. One typical use for a multiset is to
38 * <dt>{@link com.google.common.collect.Multimap}
39 * <dd>A new type, which is similar to {@link java.util.Map}, but may contain
41 * {@link com.google.common.collect.Multimap} are left unspecified and are
44 * <dt>{@link com.google.common.collect.ListMultimap}
[all …]
DForwardingMultiset.java37 * overriding {@link #add(Object, int)} alone <b>will not</b> change the
38 * behavior of {@link #add(Object)}, which can lead to unexpected behavior. In
104 * A sensible definition of {@link #contains} in terms of {@link #count}. If
105 * you override {@link #count}, you may wish to override {@link #contains} to
115 * A sensible definition of {@link #clear} in terms of the {@code iterator}
116 * method of {@link #entrySet}. If you override {@link #entrySet}, you may
117 * wish to override {@link #clear} to forward to this implementation.
126 * A sensible, albeit inefficient, definition of {@link #count} in terms of
127 * {@link #entrySet}. If you override {@link #entrySet}, you may wish to
128 * override {@link #count} to forward to this implementation.
[all …]
DForwardingMap.java38 * overriding {@link #put} alone <i>will not</i> change the behavior of {@link
43 * <p>Each of the {@code standard} methods, where appropriate, use {@link
137 * A sensible definition of {@link #putAll(Map)} in terms of {@link
138 * #put(Object, Object)}. If you override {@link #put(Object, Object)}, you
139 * may wish to override {@link #putAll(Map)} to forward to this
149 * A sensible, albeit inefficient, definition of {@link #remove} in terms of
150 * the {@code iterator} method of {@link #entrySet}. If you override {@link
151 * #entrySet}, you may wish to override {@link #remove} to forward to this
154 * <p>Alternately, you may wish to override {@link #remove} with {@code
174 * A sensible definition of {@link #clear} in terms of the {@code iterator}
[all …]
DForwardingCollection.java35 * overriding {@link #add} alone <b>will not</b> change the behavior of {@link
123 * A sensible definition of {@link #contains} in terms of {@link #iterator}.
124 * If you override {@link #iterator}, you may wish to override {@link
134 * A sensible definition of {@link #containsAll} in terms of {@link #contains}
135 * . If you override {@link #contains}, you may wish to override {@link
145 * A sensible definition of {@link #addAll} in terms of {@link #add}. If you
146 * override {@link #add}, you may wish to override {@link #addAll} to forward
156 * A sensible definition of {@link #remove} in terms of {@link #iterator},
157 * using the iterator's {@code remove} method. If you override {@link
158 * #iterator}, you may wish to override {@link #remove} to forward to this
[all …]
DForwardingList.java35 * <p>This class does not implement {@link java.util.RandomAccess}. If the
41 * overriding {@link #add} alone <b>will not</b> change the behavior of {@link
123 * A sensible default implementation of {@link #add(Object)}, in terms of
124 * {@link #add(int, Object)}. If you override {@link #add(int, Object)}, you
125 * may wish to override {@link #add(Object)} to forward to this
136 * A sensible default implementation of {@link #addAll(int, Collection)}, in
137 * terms of the {@code add} method of {@link #listIterator(int)}. If you
138 * override {@link #listIterator(int)}, you may wish to override {@link
149 * A sensible default implementation of {@link #indexOf}, in terms of {@link
150 * #listIterator()}. If you override {@link #listIterator()}, you may wish to
[all …]
DForwardingNavigableSet.java31 * to the methods of the delegate. For example, overriding {@link #add} alone <i>will not</i>
32 * change the behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you
62 * A sensible definition of {@link #lower} in terms of the {@code descendingIterator} method of
63 * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may
64 * wish to override {@link #lower} to forward to this implementation.
76 * A sensible definition of {@link #floor} in terms of the {@code descendingIterator} method of
77 * {@link #headSet(Object, boolean)}. If you override {@link #headSet(Object, boolean)}, you may
78 * wish to override {@link #floor} to forward to this implementation.
90 * A sensible definition of {@link #ceiling} in terms of the {@code iterator} method of
91 * {@link #tailSet(Object, boolean)}. If you override {@link #tailSet(Object, boolean)}, you may
[all …]
DForwardingSortedMultiset.java31 * {@link #add(Object, int)} alone <b>will not</b> change the behavior of {@link #add(Object)},
58 * A sensible implementation of {@link SortedMultiset#elementSet} in terms of the following
59 * methods: {@link SortedMultiset#clear}, {@link SortedMultiset#comparator}, {@link
60 * SortedMultiset#contains}, {@link SortedMultiset#containsAll}, {@link SortedMultiset#count},
61 * {@link SortedMultiset#firstEntry} {@link SortedMultiset#headMultiset}, {@link
62 * SortedMultiset#isEmpty}, {@link SortedMultiset#lastEntry}, {@link SortedMultiset#subMultiset},
63 * {@link SortedMultiset#tailMultiset}, the {@code size()} and {@code iterator()} methods of
64 * {@link SortedMultiset#entrySet}, and {@link SortedMultiset#remove(Object, int)}. In many
65 * situations, you may wish to override {@link SortedMultiset#elementSet} to forward to this
87 * {@link #descendingMultiset()} will not reflect any changes you make to the behavior of methods
[all …]
/external/iproute2/man/man8/
Dtipc-link.81 .TH TIPC-LINK 8 "02 Jun 2015" "iproute2" "Linux"
7 tipc-link \- show links or modify link properties
16 .B tipc link set
23 .BI "link " LINK
26 .B tipc link get
27 .RB "{ " "priority" " | " tolerance " | " window " } " link
28 .I LINK
31 .B tipc link statistics
32 .RB "{ " "show " "[ " link
33 .I LINK
[all …]
Dip-link.8.in1 .TH IP\-LINK 8 "13 Dec 2012" "iproute2" "Linux"
3 ip-link \- network device configuration
11 .B link
28 .BI "ip link add"
29 .RB "[ " link
155 .B link-netnsid ID
160 .B ip link show
171 .B ip link help
175 .SS ip link add - add virtual link
178 .BI link " DEVICE "
[all …]
/external/libxml2/test/relaxng/
Dtutor8_2_2.xml5 <link>link</link>
6 <style>link</style>
8 <link>link</link>
9 <style>link</style>
14 <link>link</link>
15 <style>link</style>
22 <link>link</link>
23 <style>link</style>
25 <link>link</link>
26 <style>link</style>
[all …]
/external/toybox/tests/
Dreadlink.test18 ln -sf notfound link
19 testing "readlink link" "readlink link" "notfound\n" "" ""
20 testing "readlink link->missing" "readlink -f link" "$APWD/notfound\n" "" ""
21 ln -sf ../../ link
22 testing "readlink stays relative" "readlink link" "../../\n" "" ""
23 rm link
24 ln -sf file link
25 testing "readlink -f link->file" "readlink -f link" "$APWD/file\n" "" ""
26 ln -sf . link
27 testing "readlink -f link->dir" "readlink -f link" "$APWD\n" "" ""
[all …]
/external/icu/icu4c/source/tools/tzcode/
Dicuzones41 Link Australia/Darwin ACT
42 Link Australia/Sydney AET
43 Link America/Argentina/Buenos_Aires AGT
44 Link Africa/Cairo ART
45 Link America/Anchorage AST
46 Link America/Sao_Paulo BET
47 Link Asia/Dhaka BST
48 Link Africa/Maputo CAT
49 Link America/St_Johns CNT
50 Link America/Chicago CST
[all …]
/external/libnl/lib/route/link/
Dvlan.c2 * lib/route/link/vlan.c VLAN Link Info
26 #include <netlink/route/link/info-api.h>
27 #include <netlink/route/link/vlan.h>
71 static int vlan_alloc(struct rtnl_link *link) in vlan_alloc() argument
78 link->l_info = vi; in vlan_alloc()
83 static int vlan_parse(struct rtnl_link *link, struct nlattr *data, in vlan_parse() argument
90 NL_DBG(3, "Parsing VLAN link info"); in vlan_parse()
95 if ((err = vlan_alloc(link)) < 0) in vlan_parse()
98 vi = link->l_info; in vlan_parse()
169 static void vlan_free(struct rtnl_link *link) in vlan_free() argument
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/
DRequestManager.java83 * {@link com.bumptech.glide.RequestManager}.
96 …face that can apply some default options to all Requests started using this {@link RequestManager}.
99 …* Note - These options will be retained for the life the of this {@link com.bumptech.glide.Req…
101 …* {@link com.bumptech.glide.GenericRequestBuilder#listener(com.bumptech.glide.request.RequestL…
102 …* starting requests using an {@link android.content.Context} or {@link android.app.Application…
113 * Returns true if loads for this {@link RequestManager} are currently paused.
174 …* Returns a request builder that uses the given {@link com.bumptech.glide.load.model.ModelLoader} …
181 * @param modelLoader The {@link ModelLoader} class to use to load the model.
182 * @param dataClass The type of data the {@link ModelLoader} will load.
191 …* Returns a request builder that uses the given {@link com.bumptech.glide.load.model.stream.Stream…
[all …]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
DBitmapPool.java6 * An interface for a pool that allows users to reuse {@link android.graphics.Bitmap} objects.
21 * {@link Bitmap}s should be evicted until the pool is smaller than the new max size.
29 …* Adds the given {@link android.graphics.Bitmap} and returns {@code true} if the {@link android.gr…
33 …* Note - If the {@link android.graphics.Bitmap} is rejected (this method returns false) then i…
34 * responsibility to call {@link android.graphics.Bitmap#recycle()}.
38 …* Note - This method will return {@code true} if the given {@link android.graphics.Bitmap} is …
40 …* {@link android.graphics.Bitmap} is not eligible to be added to the pool (either it is not mu…
47 * @param bitmap The {@link android.graphics.Bitmap} to attempt to add.
52 …* Returns a {@link android.graphics.Bitmap} of exactly the given width, height, and configuration,…
53 …* only transparent pixels or null if no such {@link android.graphics.Bitmap} could be obtained fro…
[all …]
/external/slf4j/slf4j-jcl/src/main/java/org/slf4j/impl/
DJCLLoggerAdapter.java35 * A wrapper over {@link org.apache.commons.logging.Log
36 * org.apache.commons.logging.Log} in conformance with the {@link Logger}
54 * Delegates to the {@link Log#isTraceEnabled} method of the underlying
55 * {@link Log} instance.
64 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
65 * {@link Log} instance.
74 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
75 * {@link Log} instance.
95 * Delegates to the {@link Log#trace(java.lang.Object)} method of the underlying
96 * {@link Log} instance.
[all …]
/external/junit/src/org/junit/rules/
DTestRule.java8 * is run and reported. A {@link TestRule} may add additional checks that cause
11 * {@link TestRule}s can do everything that could be done previously with
12 * methods annotated with {@link org.junit.Before},
13 * {@link org.junit.After}, {@link org.junit.BeforeClass}, or
14 * {@link org.junit.AfterClass}, but they are more powerful, and more easily
19 * individual test cases recognize {@link TestRule}s introduced in two different
20 * ways. {@link org.junit.Rule} annotates method-level
21 * {@link TestRule}s, and {@link org.junit.ClassRule}
22 * annotates class-level {@link TestRule}s. See Javadoc for those annotations
25 * Multiple {@link TestRule}s can be applied to a test or suite execution. The
[all …]
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.csproj34 <Link>Common\CommandLineParser.cs</Link>
37 <Link>Common\CRC.cs</Link>
40 <Link>ICoder.cs</Link>
43 <Link>LZ\IMatchFinder.cs</Link>
46 <Link>LZ\LzBinTree.cs</Link>
49 <Link>LZ\LzInWindow.cs</Link>
52 <Link>LZ\LzOutWindow.cs</Link>
55 <Link>LZMA\LzmaBase.cs</Link>
58 <Link>LZMA\LzmaDecoder.cs</Link>
61 <Link>LZMA\LzmaEncoder.cs</Link>
[all …]
/external/libxml2/result/noent/
Dslashdot.rdf6 <link>http://slashdot.org/</link>
13 <link>http://slashdot.org</link>
18 <link>http://slashdot.org/articles/99/06/06/1440211.shtml</link>
23 <link>http://slashdot.org/articles/99/06/06/1438246.shtml</link>
28 <link>http://slashdot.org/articles/99/06/06/1432256.shtml</link>
33 <link>http://slashdot.org/askslashdot/99/06/05/1815225.shtml</link>
38 <link>http://slashdot.org/articles/99/06/05/1842218.shtml</link>
43 <link>http://slashdot.org/articles/99/06/05/1558210.shtml</link>
48 <link>http://slashdot.org/articles/99/06/05/1554258.shtml</link>
53 <link>http://slashdot.org/articles/99/06/04/2313200.shtml</link>
[all …]
/external/libxml2/test/
Dslashdot.rdf7 <link>http://slashdot.org/</link>
14 <link>http://slashdot.org</link>
19 <link>http://slashdot.org/articles/99/06/06/1440211.shtml</link>
24 <link>http://slashdot.org/articles/99/06/06/1438246.shtml</link>
29 <link>http://slashdot.org/articles/99/06/06/1432256.shtml</link>
34 <link>http://slashdot.org/askslashdot/99/06/05/1815225.shtml</link>
39 <link>http://slashdot.org/articles/99/06/05/1842218.shtml</link>
44 <link>http://slashdot.org/articles/99/06/05/1558210.shtml</link>
49 <link>http://slashdot.org/articles/99/06/05/1554258.shtml</link>
54 <link>http://slashdot.org/articles/99/06/04/2313200.shtml</link>
[all …]

12345678910>>...379